blob: cc409fb3c5194a9ffec5efb80bd699889fbd92be [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
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Craig Topper1bf724b2012-02-19 07:15:48 +000016#include "X86ISelLowering.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000019#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/ADT/SmallSet.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/ADT/StringExtras.h"
25#include "llvm/ADT/VariadicFunction.h"
Evan Cheng55d42002011-01-08 01:24:27 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000031#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000033#include "llvm/IR/CallingConv.h"
34#include "llvm/IR/Constants.h"
35#include "llvm/IR/DerivedTypes.h"
36#include "llvm/IR/Function.h"
37#include "llvm/IR/GlobalAlias.h"
38#include "llvm/IR/GlobalVariable.h"
39#include "llvm/IR/Instructions.h"
40#include "llvm/IR/Intrinsics.h"
41#include "llvm/IR/LLVMContext.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000042#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000044#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000045#include "llvm/MC/MCSymbol.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000046#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/Support/Debug.h"
48#include "llvm/Support/ErrorHandling.h"
49#include "llvm/Support/MathExtras.h"
Rafael Espindola151ab3e2011-08-30 19:47:04 +000050#include "llvm/Target/TargetOptions.h"
Benjamin Kramer9c683542012-01-30 15:16:21 +000051#include <bitset>
Joerg Sonnenberger78cab942012-08-10 10:53:56 +000052#include <cctype>
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000053using namespace llvm;
54
Evan Chengb1712452010-01-27 06:25:16 +000055STATISTIC(NumTailCalls, "Number of tail calls");
56
Evan Cheng10e86422008-04-25 19:11:04 +000057// Forward declarations.
Andrew Trickac6d9be2013-05-25 02:42:55 +000058static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000059 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000060
Elena Demikhovsky83952512013-07-31 11:35:14 +000061static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62 SelectionDAG &DAG, SDLoc dl,
63 unsigned vectorWidth) {
64 assert((vectorWidth == 128 || vectorWidth == 256) &&
65 "Unsupported vector width");
David Greenea5f26012011-02-07 19:36:54 +000066 EVT VT = Vec.getValueType();
David Greenea5f26012011-02-07 19:36:54 +000067 EVT ElVT = VT.getVectorElementType();
Elena Demikhovsky83952512013-07-31 11:35:14 +000068 unsigned Factor = VT.getSizeInBits()/vectorWidth;
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000069 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000071
72 // Extract from UNDEF is UNDEF.
73 if (Vec.getOpcode() == ISD::UNDEF)
Craig Topper767b4f62012-04-22 19:29:34 +000074 return DAG.getUNDEF(ResultVT);
David Greenea5f26012011-02-07 19:36:54 +000075
Elena Demikhovsky83952512013-07-31 11:35:14 +000076 // Extract the relevant vectorWidth bits. Generate an EXTRACT_SUBVECTOR
77 unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +000078
Elena Demikhovsky83952512013-07-31 11:35:14 +000079 // This is the index of the first element of the vectorWidth-bit chunk
Craig Topperb14940a2012-04-22 20:55:18 +000080 // we want.
Elena Demikhovsky83952512013-07-31 11:35:14 +000081 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
Craig Topperb14940a2012-04-22 20:55:18 +000082 * ElemsPerChunk);
David Greenea5f26012011-02-07 19:36:54 +000083
Benjamin Kramer02c2ecf2013-03-07 18:48:40 +000084 // If the input is a buildvector just emit a smaller one.
85 if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86 return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87 Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
Craig Topperb8d9da12012-09-06 06:09:01 +000089 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
Craig Topperb14940a2012-04-22 20:55:18 +000090 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91 VecIdx);
David Greenea5f26012011-02-07 19:36:54 +000092
Craig Topperb14940a2012-04-22 20:55:18 +000093 return Result;
Elena Demikhovsky83952512013-07-31 11:35:14 +000094
95}
96/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
97/// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98/// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99/// instructions or a simple subregister reference. Idx is an index in the
100/// 128 bits we want. It need not be aligned to a 128-bit bounday. That makes
101/// lowering EXTRACT_VECTOR_ELT operations easier.
102static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103 SelectionDAG &DAG, SDLoc dl) {
Elena Demikhovsky093043c2013-07-31 12:03:08 +0000104 assert((Vec.getValueType().is256BitVector() ||
105 Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
Elena Demikhovsky83952512013-07-31 11:35:14 +0000106 return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
David Greenea5f26012011-02-07 19:36:54 +0000107}
108
Elena Demikhovsky83952512013-07-31 11:35:14 +0000109/// Generate a DAG to grab 256-bits from a 512-bit vector.
110static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111 SelectionDAG &DAG, SDLoc dl) {
112 assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113 return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114}
115
116static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117 unsigned IdxVal, SelectionDAG &DAG,
118 SDLoc dl, unsigned vectorWidth) {
119 assert((vectorWidth == 128 || vectorWidth == 256) &&
120 "Unsupported vector width");
121 // Inserting UNDEF is Result
122 if (Vec.getOpcode() == ISD::UNDEF)
123 return Result;
124 EVT VT = Vec.getValueType();
125 EVT ElVT = VT.getVectorElementType();
126 EVT ResultVT = Result.getValueType();
127
128 // Insert the relevant vectorWidth bits.
129 unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131 // This is the index of the first element of the vectorWidth-bit chunk
132 // we want.
133 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134 * ElemsPerChunk);
135
136 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137 return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138 VecIdx);
139}
David Greenea5f26012011-02-07 19:36:54 +0000140/// Generate a DAG to put 128-bits into a vector > 128 bits. This
Elena Demikhovsky83952512013-07-31 11:35:14 +0000141/// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142/// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
David Greene6b381262011-02-09 15:32:06 +0000143/// simple superregister reference. Idx is an index in the 128 bits
144/// we want. It need not be aligned to a 128-bit bounday. That makes
145/// lowering INSERT_VECTOR_ELT operations easier.
Craig Topperb14940a2012-04-22 20:55:18 +0000146static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147 unsigned IdxVal, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000148 SDLoc dl) {
Elena Demikhovsky83952512013-07-31 11:35:14 +0000149 assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151}
Craig Topper703c38b2012-06-20 05:39:26 +0000152
Elena Demikhovsky83952512013-07-31 11:35:14 +0000153static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154 unsigned IdxVal, SelectionDAG &DAG,
155 SDLoc dl) {
156 assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
David Greenea5f26012011-02-07 19:36:54 +0000158}
159
Craig Topper4c7972d2012-04-22 18:15:59 +0000160/// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161/// instructions. This is used because creating CONCAT_VECTOR nodes of
162/// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163/// large BUILD_VECTORS.
164static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165 unsigned NumElems, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000166 SDLoc dl) {
Craig Topperb14940a2012-04-22 20:55:18 +0000167 SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168 return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
Craig Topper4c7972d2012-04-22 18:15:59 +0000169}
170
Elena Demikhovsky83952512013-07-31 11:35:14 +0000171static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172 unsigned NumElems, SelectionDAG &DAG,
173 SDLoc dl) {
174 SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175 return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176}
177
Chris Lattnerf0144122009-07-28 03:13:23 +0000178static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000179 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000181
Evan Cheng2bffee22011-02-01 01:14:13 +0000182 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000183 if (is64Bit)
Bill Wendlinga44489d2012-06-26 10:05:06 +0000184 return new X86_64MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000185 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000186 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000187
Rafael Espindolad6b43a32012-06-19 00:48:28 +0000188 if (Subtarget->isTargetLinux())
189 return new X86LinuxTargetObjectFile();
Evan Cheng203576a2011-07-20 19:50:42 +0000190 if (Subtarget->isTargetELF())
191 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000192 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000193 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000194 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000195}
196
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000197X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000198 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000199 Subtarget = &TM.getSubtarget<X86Subtarget>();
Craig Topper1accb7e2012-01-10 06:54:16 +0000200 X86ScalarSSEf64 = Subtarget->hasSSE2();
201 X86ScalarSSEf32 = Subtarget->hasSSE1();
Micah Villmow3574eca2012-10-08 16:38:25 +0000202 TD = getDataLayout();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000203
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000204 resetOperationActions();
205}
206
207void X86TargetLowering::resetOperationActions() {
208 const TargetMachine &TM = getTargetMachine();
209 static bool FirstTimeThrough = true;
210
211 // If none of the target options have changed, then we don't need to reset the
212 // operation actions.
213 if (!FirstTimeThrough && TO == TM.Options) return;
214
215 if (!FirstTimeThrough) {
216 // Reinitialize the actions.
217 initActions();
218 FirstTimeThrough = false;
219 }
220
221 TO = TM.Options;
222
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000223 // Set up the TargetLowering object.
Craig Topper9e401f22012-04-21 18:58:38 +0000224 static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000225
226 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000227 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000228 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000230
Eric Christopherde5e1012011-03-11 01:05:58 +0000231 // For 64-bit since we have so many registers use the ILP scheduler, for
232 // 32-bit code use the register pressure specific scheduling.
Preston Gurdc0f0a932012-05-02 22:02:02 +0000233 // For Atom, always use ILP scheduling.
Chad Rosiera20e1e72012-08-01 18:39:17 +0000234 if (Subtarget->isAtom())
Eric Christopherde5e1012011-03-11 01:05:58 +0000235 setSchedulingPreference(Sched::ILP);
Preston Gurdc0f0a932012-05-02 22:02:02 +0000236 else if (Subtarget->is64Bit())
237 setSchedulingPreference(Sched::ILP);
Eric Christopherde5e1012011-03-11 01:05:58 +0000238 else
239 setSchedulingPreference(Sched::RegPressure);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +0000240 const X86RegisterInfo *RegInfo =
241 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Michael Liaoc5c970e2012-10-31 04:14:09 +0000242 setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
Evan Cheng714554d2006-03-16 21:47:42 +0000243
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000244 // Bypass expensive divides on Atom when compiling with O2
245 if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
Preston Gurd8d662b52012-10-04 21:33:40 +0000246 addBypassSlowDiv(32, 8);
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000247 if (Subtarget->is64Bit())
248 addBypassSlowDiv(64, 16);
249 }
Preston Gurd2e2efd92012-09-04 18:22:17 +0000250
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000251 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000252 // Setup Windows compiler runtime calls.
253 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000254 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000255 setLibcallName(RTLIB::SREM_I64, "_allrem");
256 setLibcallName(RTLIB::UREM_I64, "_aullrem");
257 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000258 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000259 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000260 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000263
264 // The _ftol2 runtime function has an unusual calling conv, which
265 // is modeled by a special pseudo-instruction.
266 setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267 setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268 setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269 setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000270 }
271
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000272 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000273 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000274 setUseUnderscoreSetJmp(false);
275 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000276 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000277 // MS runtime is weird: it exports _setjmp, but longjmp!
278 setUseUnderscoreSetJmp(true);
279 setUseUnderscoreLongJmp(false);
280 } else {
281 setUseUnderscoreSetJmp(true);
282 setUseUnderscoreLongJmp(true);
283 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000284
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000285 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000286 addRegisterClass(MVT::i8, &X86::GR8RegClass);
287 addRegisterClass(MVT::i16, &X86::GR16RegClass);
288 addRegisterClass(MVT::i32, &X86::GR32RegClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000289 if (Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +0000290 addRegisterClass(MVT::i64, &X86::GR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000291
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000293
Scott Michelfdc40a02009-02-17 22:15:04 +0000294 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000296 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000298 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000301
302 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000309
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000310 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
313 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
314 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000315
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling397ae212012-01-05 02:13:20 +0000318 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000319 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000320 // We have an algorithm for SSE2->double, and we turn this into a
321 // 64-bit FILD followed by conditional FADD for other targets.
322 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000323 // We have an algorithm for SSE2, and we turn this into a 64-bit
324 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000325 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000327
328 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000330 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
331 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000332
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000333 if (!TM.Options.UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000334 // SSE has no i16 to fp conversion, only i32
335 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000336 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000337 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000338 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000339 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000340 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
341 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000342 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000343 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
345 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000346 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000347
Dale Johannesen73328d12007-09-19 23:55:34 +0000348 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
349 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
351 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000352
Evan Cheng02568ff2006-01-30 22:13:22 +0000353 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000355 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
356 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000357
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000358 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000359 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000360 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000361 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000362 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000363 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
364 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000365 }
366
367 // Handle FP_TO_UINT by promoting the destination to a larger signed
368 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
370 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
371 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000372
Evan Cheng25ab6902006-09-08 06:48:29 +0000373 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000374 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
375 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000376 } else if (!TM.Options.UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000377 // Since AVX is a superset of SSE3, only check for SSE here.
378 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000379 // Expand FP_TO_UINT into a select.
380 // FIXME: We would like to use a Custom expander here eventually to do
381 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000383 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000384 // With SSE3 we can use fisttpll to convert to a signed i64; without
385 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000388
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000389 if (isTargetFTOL()) {
390 // Use the _ftol2 runtime function, which has a pseudo-instruction
391 // to handle its weird calling convention.
392 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Custom);
393 }
394
Chris Lattner399610a2006-12-05 18:22:22 +0000395 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000396 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000397 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
398 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000399 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000400 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000401 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000402 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000403 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000404 }
Chris Lattner21f66852005-12-23 05:15:23 +0000405
Dan Gohmanb00ee212008-02-18 19:34:53 +0000406 // Scalar integer divide and remainder are lowered to use operations that
407 // produce two results, to match the available instructions. This exposes
408 // the two-result form to trivial CSE, which is able to combine x/y and x%y
409 // into a single instruction.
410 //
411 // Scalar integer multiply-high is also lowered to use two-result
412 // operations, to match the available instructions. However, plain multiply
413 // (low) operations are left as Legal, as there are single-result
414 // instructions for this in x86. Using the two-result multiply instructions
415 // when both high and low results are needed must be arranged by dagcombine.
Craig Topper9e401f22012-04-21 18:58:38 +0000416 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000417 MVT VT = IntVTs[i];
418 setOperationAction(ISD::MULHS, VT, Expand);
419 setOperationAction(ISD::MULHU, VT, Expand);
420 setOperationAction(ISD::SDIV, VT, Expand);
421 setOperationAction(ISD::UDIV, VT, Expand);
422 setOperationAction(ISD::SREM, VT, Expand);
423 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000424
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000425 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000426 setOperationAction(ISD::ADDC, VT, Custom);
427 setOperationAction(ISD::ADDE, VT, Custom);
428 setOperationAction(ISD::SUBC, VT, Custom);
429 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000430 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000431
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
433 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Tom Stellard3ef53832013-03-08 15:36:57 +0000434 setOperationAction(ISD::BR_CC , MVT::f32, Expand);
435 setOperationAction(ISD::BR_CC , MVT::f64, Expand);
436 setOperationAction(ISD::BR_CC , MVT::f80, Expand);
437 setOperationAction(ISD::BR_CC , MVT::i8, Expand);
438 setOperationAction(ISD::BR_CC , MVT::i16, Expand);
439 setOperationAction(ISD::BR_CC , MVT::i32, Expand);
440 setOperationAction(ISD::BR_CC , MVT::i64, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000441 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000442 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
445 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
446 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
447 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
448 setOperationAction(ISD::FREM , MVT::f32 , Expand);
449 setOperationAction(ISD::FREM , MVT::f64 , Expand);
450 setOperationAction(ISD::FREM , MVT::f80 , Expand);
451 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Chandler Carruth77821022011-12-24 12:12:34 +0000453 // Promote the i8 variants and force them on up to i32 which has a shorter
454 // encoding.
455 setOperationAction(ISD::CTTZ , MVT::i8 , Promote);
456 AddPromotedToType (ISD::CTTZ , MVT::i8 , MVT::i32);
457 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i8 , Promote);
458 AddPromotedToType (ISD::CTTZ_ZERO_UNDEF , MVT::i8 , MVT::i32);
Craig Topper909652f2011-10-14 03:21:46 +0000459 if (Subtarget->hasBMI()) {
Chandler Carruthd873a4b2011-12-24 11:11:38 +0000460 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16 , Expand);
461 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32 , Expand);
462 if (Subtarget->is64Bit())
463 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper909652f2011-10-14 03:21:46 +0000464 } else {
Craig Topper909652f2011-10-14 03:21:46 +0000465 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
466 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
467 if (Subtarget->is64Bit())
468 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
469 }
Craig Topper37f21672011-10-11 06:44:02 +0000470
471 if (Subtarget->hasLZCNT()) {
Chandler Carruth77821022011-12-24 12:12:34 +0000472 // When promoting the i8 variants, force them to i32 for a shorter
473 // encoding.
Craig Topper37f21672011-10-11 06:44:02 +0000474 setOperationAction(ISD::CTLZ , MVT::i8 , Promote);
Chandler Carruth77821022011-12-24 12:12:34 +0000475 AddPromotedToType (ISD::CTLZ , MVT::i8 , MVT::i32);
476 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Promote);
477 AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8 , MVT::i32);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000478 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Expand);
479 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Expand);
480 if (Subtarget->is64Bit())
481 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper37f21672011-10-11 06:44:02 +0000482 } else {
483 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
484 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
485 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000486 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Custom);
487 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Custom);
488 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Custom);
489 if (Subtarget->is64Bit()) {
Craig Topper37f21672011-10-11 06:44:02 +0000490 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000491 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000493 }
494
Benjamin Kramer1292c222010-12-04 20:32:23 +0000495 if (Subtarget->hasPOPCNT()) {
496 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
497 } else {
498 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
499 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
500 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
501 if (Subtarget->is64Bit())
502 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
503 }
504
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
506 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000507
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000508 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000509 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000510 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000511 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000512 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000513 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
514 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
515 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
516 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
517 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000518 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000519 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
520 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
521 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
522 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000523 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000524 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000525 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000526 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000527 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Hal Finkele9150472013-03-27 19:10:42 +0000528 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Michael Liao6c0e04c2012-10-15 22:39:43 +0000529 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
Michael Liao281ae5a2012-10-17 02:22:27 +0000530 // support continuation, user-level threading, and etc.. As a result, no
Michael Liao6c0e04c2012-10-15 22:39:43 +0000531 // other SjLj exception interfaces are implemented and please don't build
532 // your own exception handling based on them.
533 // LLVM/Clang supports zero-cost DWARF exception handling.
534 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000536
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000537 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
539 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
540 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
541 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000542 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000543 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000545 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000546 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000547 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
548 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
549 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
550 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000551 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000552 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000553 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000554 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
555 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
556 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000557 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
559 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
560 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000561 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000562
Craig Topper1accb7e2012-01-10 06:54:16 +0000563 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000565
Eli Friedman14648462011-07-27 22:21:52 +0000566 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000567
Mon P Wang63307c32008-05-05 19:05:59 +0000568 // Expand certain atomics
Craig Topper9e401f22012-04-21 18:58:38 +0000569 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000570 MVT VT = IntVTs[i];
571 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000573 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000574 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000575
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000576 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000577 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Michael Liaoe5e8f762012-09-25 18:08:13 +0000585 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000589 }
590
Eli Friedman43f51ae2011-08-26 21:21:21 +0000591 if (Subtarget->hasCmpxchg16b()) {
592 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593 }
594
Evan Cheng3c992d22006-03-07 02:02:57 +0000595 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000596 if (!Subtarget->isTargetDarwin() &&
597 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000598 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000599 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000600 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000601
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000602 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000603 setExceptionPointerRegister(X86::RAX);
604 setExceptionSelectorRegister(X86::RDX);
605 } else {
606 setExceptionPointerRegister(X86::EAX);
607 setExceptionSelectorRegister(X86::EDX);
608 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000609 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000611
Duncan Sands4a544a72011-09-06 13:37:06 +0000612 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000614
Owen Anderson825b72b2009-08-11 20:47:22 +0000615 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Shuxin Yang970755e2012-10-19 20:11:16 +0000616 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000617
Nate Begemanacc398c2006-01-25 18:21:52 +0000618 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 setOperationAction(ISD::VASTART , MVT::Other, Custom);
620 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Nico Rieck944061c2013-07-29 13:07:06 +0000621 if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622 // TargetInfo::X86_64ABIBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 setOperationAction(ISD::VAARG , MVT::Other, Custom);
624 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000625 } else {
Nico Rieck944061c2013-07-29 13:07:06 +0000626 // TargetInfo::CharPtrBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 setOperationAction(ISD::VAARG , MVT::Other, Expand);
628 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000629 }
Evan Chengae642192007-03-02 23:16:35 +0000630
Owen Anderson825b72b2009-08-11 20:47:22 +0000631 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
632 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000633
Rafael Espindola615f5612013-10-23 21:45:09 +0000634 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Eric Christopherc967ad82011-08-31 04:17:21 +0000635 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000637 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000638 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639 MVT::i64 : MVT::i32, Custom);
640 else
641 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000643
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000644 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000645 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000646 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000647 addRegisterClass(MVT::f32, &X86::FR32RegClass);
648 addRegisterClass(MVT::f64, &X86::FR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000649
Evan Cheng223547a2006-01-31 22:28:30 +0000650 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000651 setOperationAction(ISD::FABS , MVT::f64, Custom);
652 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000653
654 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000655 setOperationAction(ISD::FNEG , MVT::f64, Custom);
656 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000657
Evan Cheng68c47cb2007-01-05 07:55:56 +0000658 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000661
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000662 // Lower this to FGETSIGNx86 plus an AND.
663 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
Evan Chengd25e9e82006-02-02 00:28:23 +0000666 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000667 setOperationAction(ISD::FSIN , MVT::f64, Expand);
668 setOperationAction(ISD::FCOS , MVT::f64, Expand);
669 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670 setOperationAction(ISD::FSIN , MVT::f32, Expand);
671 setOperationAction(ISD::FCOS , MVT::f32, Expand);
672 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000673
Chris Lattnera54aa942006-01-29 06:26:08 +0000674 // Expand FP immediates into loads from the stack, except for the special
675 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000676 addLegalFPImmediate(APFloat(+0.0)); // xorpd
677 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000678 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000679 // Use SSE for f32, x87 for f64.
680 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000681 addRegisterClass(MVT::f32, &X86::FR32RegClass);
682 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000683
684 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000686
687 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000689
Owen Anderson825b72b2009-08-11 20:47:22 +0000690 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000691
692 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000693 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000695
696 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000697 setOperationAction(ISD::FSIN , MVT::f32, Expand);
698 setOperationAction(ISD::FCOS , MVT::f32, Expand);
699 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000700
Nate Begemane1795842008-02-14 08:57:00 +0000701 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000702 addLegalFPImmediate(APFloat(+0.0f)); // xorps
703 addLegalFPImmediate(APFloat(+0.0)); // FLD0
704 addLegalFPImmediate(APFloat(+1.0)); // FLD1
705 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000708 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000709 setOperationAction(ISD::FSIN , MVT::f64, Expand);
710 setOperationAction(ISD::FCOS , MVT::f64, Expand);
711 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000712 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000713 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000714 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000715 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000716 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717 addRegisterClass(MVT::f32, &X86::RFP32RegClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
720 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
721 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000723
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000724 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000725 setOperationAction(ISD::FSIN , MVT::f64, Expand);
726 setOperationAction(ISD::FSIN , MVT::f32, Expand);
727 setOperationAction(ISD::FCOS , MVT::f64, Expand);
728 setOperationAction(ISD::FCOS , MVT::f32, Expand);
729 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000731 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000732 addLegalFPImmediate(APFloat(+0.0)); // FLD0
733 addLegalFPImmediate(APFloat(+1.0)); // FLD1
734 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000736 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000740 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000741
Cameron Zwarich33390842011-07-08 21:39:21 +0000742 // We don't support FMA.
743 setOperationAction(ISD::FMA, MVT::f64, Expand);
744 setOperationAction(ISD::FMA, MVT::f32, Expand);
745
Dale Johannesen59a58732007-08-05 18:49:15 +0000746 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000747 if (!TM.Options.UseSoftFloat) {
Craig Topperc9099502012-04-20 06:31:50 +0000748 addRegisterClass(MVT::f80, &X86::RFP80RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000749 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
750 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000751 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000752 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000753 addLegalFPImmediate(TmpFlt); // FLD0
754 TmpFlt.changeSign();
755 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000756
757 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000758 APFloat TmpFlt2(+1.0);
759 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760 &ignored);
761 addLegalFPImmediate(TmpFlt2); // FLD1
762 TmpFlt2.changeSign();
763 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
764 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000765
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000766 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000767 setOperationAction(ISD::FSIN , MVT::f80, Expand);
768 setOperationAction(ISD::FCOS , MVT::f80, Expand);
769 setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000770 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000771
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000772 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
774 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775 setOperationAction(ISD::FRINT, MVT::f80, Expand);
776 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000777 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000778 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000779
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000780 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
782 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
783 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000784
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 setOperationAction(ISD::FLOG, MVT::f80, Expand);
786 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788 setOperationAction(ISD::FEXP, MVT::f80, Expand);
789 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000790
Mon P Wangf007a8b2008-11-06 05:31:54 +0000791 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000792 // (for widening) or expand (for scalarization). Then we will selectively
793 // turn on ones that can be effectively codegen'd.
Craig Topper55de3392012-11-14 06:41:09 +0000794 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper49010472012-11-15 06:51:10 +0000796 MVT VT = (MVT::SimpleValueType)i;
Craig Topper55de3392012-11-14 06:41:09 +0000797 setOperationAction(ISD::ADD , VT, Expand);
798 setOperationAction(ISD::SUB , VT, Expand);
799 setOperationAction(ISD::FADD, VT, Expand);
800 setOperationAction(ISD::FNEG, VT, Expand);
801 setOperationAction(ISD::FSUB, VT, Expand);
802 setOperationAction(ISD::MUL , VT, Expand);
803 setOperationAction(ISD::FMUL, VT, Expand);
804 setOperationAction(ISD::SDIV, VT, Expand);
805 setOperationAction(ISD::UDIV, VT, Expand);
806 setOperationAction(ISD::FDIV, VT, Expand);
807 setOperationAction(ISD::SREM, VT, Expand);
808 setOperationAction(ISD::UREM, VT, Expand);
809 setOperationAction(ISD::LOAD, VT, Expand);
810 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814 setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815 setOperationAction(ISD::FABS, VT, Expand);
816 setOperationAction(ISD::FSIN, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000817 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000818 setOperationAction(ISD::FCOS, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000819 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000820 setOperationAction(ISD::FREM, VT, Expand);
821 setOperationAction(ISD::FMA, VT, Expand);
822 setOperationAction(ISD::FPOWI, VT, Expand);
823 setOperationAction(ISD::FSQRT, VT, Expand);
824 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000826 setOperationAction(ISD::FCEIL, VT, Expand);
827 setOperationAction(ISD::FTRUNC, VT, Expand);
828 setOperationAction(ISD::FRINT, VT, Expand);
829 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000830 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832 setOperationAction(ISD::SDIVREM, VT, Expand);
833 setOperationAction(ISD::UDIVREM, VT, Expand);
834 setOperationAction(ISD::FPOW, VT, Expand);
835 setOperationAction(ISD::CTPOP, VT, Expand);
836 setOperationAction(ISD::CTTZ, VT, Expand);
837 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838 setOperationAction(ISD::CTLZ, VT, Expand);
839 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840 setOperationAction(ISD::SHL, VT, Expand);
841 setOperationAction(ISD::SRA, VT, Expand);
842 setOperationAction(ISD::SRL, VT, Expand);
843 setOperationAction(ISD::ROTL, VT, Expand);
844 setOperationAction(ISD::ROTR, VT, Expand);
845 setOperationAction(ISD::BSWAP, VT, Expand);
846 setOperationAction(ISD::SETCC, VT, Expand);
847 setOperationAction(ISD::FLOG, VT, Expand);
848 setOperationAction(ISD::FLOG2, VT, Expand);
849 setOperationAction(ISD::FLOG10, VT, Expand);
850 setOperationAction(ISD::FEXP, VT, Expand);
851 setOperationAction(ISD::FEXP2, VT, Expand);
852 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856 setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857 setOperationAction(ISD::TRUNCATE, VT, Expand);
858 setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859 setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860 setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861 setOperationAction(ISD::VSELECT, VT, Expand);
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000862 for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863 InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
Craig Topper55de3392012-11-14 06:41:09 +0000864 setTruncStoreAction(VT,
Dan Gohman2e141d72009-12-14 23:40:38 +0000865 (MVT::SimpleValueType)InnerVT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000866 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000869 }
870
Evan Chengc7ce29b2009-02-13 22:36:38 +0000871 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000873 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Craig Topperc9099502012-04-20 06:31:50 +0000874 addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000875 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000876 }
877
Dale Johannesen0488fb62010-09-30 23:57:10 +0000878 // MMX-sized vectors (other than x86mmx) are expected to be expanded
879 // into smaller operations.
880 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
881 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
882 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
883 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
884 setOperationAction(ISD::AND, MVT::v8i8, Expand);
885 setOperationAction(ISD::AND, MVT::v4i16, Expand);
886 setOperationAction(ISD::AND, MVT::v2i32, Expand);
887 setOperationAction(ISD::AND, MVT::v1i64, Expand);
888 setOperationAction(ISD::OR, MVT::v8i8, Expand);
889 setOperationAction(ISD::OR, MVT::v4i16, Expand);
890 setOperationAction(ISD::OR, MVT::v2i32, Expand);
891 setOperationAction(ISD::OR, MVT::v1i64, Expand);
892 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
893 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
894 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
895 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
896 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
897 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
898 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
899 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
900 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
901 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
902 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
903 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
904 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000905 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
906 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
907 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
908 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000909
Craig Topper1accb7e2012-01-10 06:54:16 +0000910 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
Craig Topperc9099502012-04-20 06:31:50 +0000911 addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000912
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
914 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
915 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
916 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
917 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
918 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000919 setOperationAction(ISD::FABS, MVT::v4f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
921 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
922 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
923 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000925 }
926
Craig Topper1accb7e2012-01-10 06:54:16 +0000927 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
Craig Topperc9099502012-04-20 06:31:50 +0000928 addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000929
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000930 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931 // registers cannot be used even for integer operations.
Craig Topperc9099502012-04-20 06:31:50 +0000932 addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933 addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934 addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935 addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000936
Owen Anderson825b72b2009-08-11 20:47:22 +0000937 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
938 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
939 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
940 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +0000941 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
943 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
944 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
945 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
946 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
947 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
948 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
949 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
950 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
951 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
952 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
953 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000954 setOperationAction(ISD::FABS, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000955
Nadav Rotem354efd82011-09-18 14:57:03 +0000956 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000957 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
958 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
959 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
962 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
963 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
964 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
965 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000966
Evan Cheng2c3ae372006-04-12 21:21:57 +0000967 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000968 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000969 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000970 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000971 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000972 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000973 // Do not attempt to custom lower non-128-bit vectors
974 if (!VT.is128BitVector())
975 continue;
Craig Topper0d1f1762012-08-12 00:34:56 +0000976 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
977 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
978 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000979 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000980
Owen Anderson825b72b2009-08-11 20:47:22 +0000981 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
982 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
983 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
984 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
985 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
986 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000987
Nate Begemancdd1eec2008-02-12 22:51:28 +0000988 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000989 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
990 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000991 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000992
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000993 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Craig Topper31a207a2012-05-04 06:39:13 +0000994 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000995 MVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000996
997 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000998 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000999 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001000
Craig Topper0d1f1762012-08-12 00:34:56 +00001001 setOperationAction(ISD::AND, VT, Promote);
1002 AddPromotedToType (ISD::AND, VT, MVT::v2i64);
1003 setOperationAction(ISD::OR, VT, Promote);
1004 AddPromotedToType (ISD::OR, VT, MVT::v2i64);
1005 setOperationAction(ISD::XOR, VT, Promote);
1006 AddPromotedToType (ISD::XOR, VT, MVT::v2i64);
1007 setOperationAction(ISD::LOAD, VT, Promote);
1008 AddPromotedToType (ISD::LOAD, VT, MVT::v2i64);
1009 setOperationAction(ISD::SELECT, VT, Promote);
1010 AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +00001011 }
Evan Cheng2c3ae372006-04-12 21:21:57 +00001012
Owen Anderson825b72b2009-08-11 20:47:22 +00001013 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +00001014
Evan Cheng2c3ae372006-04-12 21:21:57 +00001015 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +00001016 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
1017 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
1018 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
1019 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +00001020
Owen Anderson825b72b2009-08-11 20:47:22 +00001021 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
1022 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Michael Liaob8150d82012-09-10 18:33:51 +00001023
Michael Liaoa7554632012-10-23 17:36:08 +00001024 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom);
1025 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Michael Liao991b6a22012-10-24 04:09:32 +00001026 // As there is no 64-bit GPR available, we need build a special custom
1027 // sequence to convert from v2i32 to v2f32.
1028 if (!Subtarget->is64Bit())
1029 setOperationAction(ISD::UINT_TO_FP, MVT::v2f32, Custom);
Michael Liaoa7554632012-10-23 17:36:08 +00001030
Michael Liao9d796db2012-10-10 16:32:15 +00001031 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom);
Michael Liao44c2d612012-10-10 16:53:28 +00001032 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Custom);
Michael Liao9d796db2012-10-10 16:32:15 +00001033
Michael Liaob8150d82012-09-10 18:33:51 +00001034 setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +00001035 }
Evan Chengc7ce29b2009-02-13 22:36:38 +00001036
Justin Holewinski320185f2013-07-26 13:28:29 +00001037 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +00001038 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
1039 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
1040 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
1041 setOperationAction(ISD::FRINT, MVT::f32, Legal);
1042 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
1043 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
1044 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
1045 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
1046 setOperationAction(ISD::FRINT, MVT::f64, Legal);
1047 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
1048
Craig Topper12fb5c62012-09-08 17:42:27 +00001049 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001050 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
1051 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
1052 setOperationAction(ISD::FRINT, MVT::v4f32, Legal);
1053 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001054 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001055 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
1056 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
1057 setOperationAction(ISD::FRINT, MVT::v2f64, Legal);
1058 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001059
Nate Begeman14d12ca2008-02-11 04:19:36 +00001060 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +00001061 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001062
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001063 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
1064 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
1065 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
1066 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
1067 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +00001068
Nate Begeman14d12ca2008-02-11 04:19:36 +00001069 // i8 and i16 vectors are custom , because the source register and source
1070 // source memory operand types are not the same width. f32 vectors are
1071 // custom since the immediate controlling the insert encodes additional
1072 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +00001073 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
1074 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
1075 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
1076 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001077
Owen Anderson825b72b2009-08-11 20:47:22 +00001078 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001082
Pete Coopera77214a2011-11-14 19:38:42 +00001083 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +00001084 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +00001085 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +00001086 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
1087 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001088 }
1089 }
Evan Cheng470a6ad2006-02-22 02:26:30 +00001090
Craig Topper1accb7e2012-01-10 06:54:16 +00001091 if (Subtarget->hasSSE2()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001092 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001093 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001094
Nadav Rotem43012222011-05-11 08:12:09 +00001095 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001096 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001097
Nadav Rotem43012222011-05-11 08:12:09 +00001098 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +00001099 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001100
Michael Liao5c5f1902013-03-20 02:28:20 +00001101 // In the customized shift lowering, the legal cases in AVX2 will be
1102 // recognized.
1103 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
1104 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001105
Michael Liao5c5f1902013-03-20 02:28:20 +00001106 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
1107 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001108
Michael Liao5c5f1902013-03-20 02:28:20 +00001109 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001110
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001111 setOperationAction(ISD::SDIV, MVT::v8i16, Custom);
1112 setOperationAction(ISD::SDIV, MVT::v4i32, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001113 }
1114
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001115 if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
Craig Topperc9099502012-04-20 06:31:50 +00001116 addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
1117 addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118 addRegisterClass(MVT::v8i32, &X86::VR256RegClass);
1119 addRegisterClass(MVT::v8f32, &X86::VR256RegClass);
1120 addRegisterClass(MVT::v4i64, &X86::VR256RegClass);
1121 addRegisterClass(MVT::v4f64, &X86::VR256RegClass);
David Greened94c1012009-06-29 22:50:51 +00001122
Owen Anderson825b72b2009-08-11 20:47:22 +00001123 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001124 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1125 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001126
Owen Anderson825b72b2009-08-11 20:47:22 +00001127 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1128 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1129 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1130 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1131 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001132 setOperationAction(ISD::FFLOOR, MVT::v8f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001133 setOperationAction(ISD::FCEIL, MVT::v8f32, Legal);
1134 setOperationAction(ISD::FTRUNC, MVT::v8f32, Legal);
1135 setOperationAction(ISD::FRINT, MVT::v8f32, Legal);
1136 setOperationAction(ISD::FNEARBYINT, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001137 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001138 setOperationAction(ISD::FABS, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001139
Owen Anderson825b72b2009-08-11 20:47:22 +00001140 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1141 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1142 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1143 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1144 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001145 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001146 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
1147 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
1148 setOperationAction(ISD::FRINT, MVT::v4f64, Legal);
1149 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001150 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001151 setOperationAction(ISD::FABS, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001152
Michael Liaobedcbd42012-10-16 18:14:11 +00001153 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1154
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001155 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
Benjamin Kramerb8f0d892013-03-31 12:49:15 +00001156 setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001157 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001158 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001159
Michael Liaoa7554632012-10-23 17:36:08 +00001160 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1161 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1162
Michael Liaob8150d82012-09-10 18:33:51 +00001163 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1164
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001165 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1166 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1167
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001168 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1169 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1170
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001171 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001172 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001173
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001174 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1175
Duncan Sands28b77e92011-09-06 19:07:46 +00001176 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1177 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1178 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1179 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001180
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001181 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1182 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1183 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1184
Craig Topperaaa643c2011-11-09 07:28:55 +00001185 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1186 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1187 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1188 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001189
Nadav Rotem0509db22012-12-28 05:45:24 +00001190 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1191 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001192 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001193 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1194 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001195 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001196 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1197 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001198 setOperationAction(ISD::ANY_EXTEND, MVT::v16i16, Custom);
1199 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1200 setOperationAction(ISD::TRUNCATE, MVT::v8i16, Custom);
1201 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001202
Craig Topperbf404372012-08-31 15:40:30 +00001203 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001204 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1205 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1206 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1207 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1208 setOperationAction(ISD::FMA, MVT::f32, Legal);
1209 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001210 }
Craig Topper880ef452012-08-11 22:34:26 +00001211
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001212 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001213 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1214 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1215 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1216 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001217
Craig Topperaaa643c2011-11-09 07:28:55 +00001218 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1219 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1220 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1221 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001222
Craig Topperaaa643c2011-11-09 07:28:55 +00001223 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1224 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1225 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001226 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001227
1228 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001229
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001230 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001231 } else {
1232 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1233 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1234 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1235 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1236
1237 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1238 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1239 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1240 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1241
1242 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1243 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1244 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1245 // Don't lower v32i8 because there is no 128-bit byte mul
1246 }
Craig Topper13894fa2011-08-24 06:14:18 +00001247
Michael Liao5c5f1902013-03-20 02:28:20 +00001248 // In the customized shift lowering, the legal cases in AVX2 will be
1249 // recognized.
1250 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1251 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1252
1253 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1254 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1255
1256 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1257
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001258 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001259 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1260 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001261 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001262
1263 // Extract subvector is special because the value type
1264 // (result) is 128-bit but the source is 256-bit wide.
1265 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001266 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001267
1268 // Do not attempt to custom lower other non-256-bit vectors
1269 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001270 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001271
Craig Topper0d1f1762012-08-12 00:34:56 +00001272 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1273 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1274 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1275 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1276 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1277 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1278 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001279 }
1280
David Greene54d8eba2011-01-27 22:38:56 +00001281 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001282 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001283 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001284
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001285 // Do not attempt to promote non-256-bit vectors
1286 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001287 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001288
Craig Topper0d1f1762012-08-12 00:34:56 +00001289 setOperationAction(ISD::AND, VT, Promote);
1290 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1291 setOperationAction(ISD::OR, VT, Promote);
1292 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1293 setOperationAction(ISD::XOR, VT, Promote);
1294 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1295 setOperationAction(ISD::LOAD, VT, Promote);
1296 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1297 setOperationAction(ISD::SELECT, VT, Promote);
1298 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001299 }
David Greene9b9838d2009-06-29 16:47:10 +00001300 }
1301
Elena Demikhovsky83952512013-07-31 11:35:14 +00001302 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1303 addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1304 addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1305 addRegisterClass(MVT::v8i64, &X86::VR512RegClass);
1306 addRegisterClass(MVT::v8f64, &X86::VR512RegClass);
1307
1308 addRegisterClass(MVT::v8i1, &X86::VK8RegClass);
1309 addRegisterClass(MVT::v16i1, &X86::VK16RegClass);
1310
1311 setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, Legal);
1312 setOperationAction(ISD::LOAD, MVT::v16f32, Legal);
1313 setOperationAction(ISD::LOAD, MVT::v8f64, Legal);
1314 setOperationAction(ISD::LOAD, MVT::v8i64, Legal);
1315 setOperationAction(ISD::LOAD, MVT::v16i32, Legal);
1316 setOperationAction(ISD::LOAD, MVT::v16i1, Legal);
1317
1318 setOperationAction(ISD::FADD, MVT::v16f32, Legal);
1319 setOperationAction(ISD::FSUB, MVT::v16f32, Legal);
1320 setOperationAction(ISD::FMUL, MVT::v16f32, Legal);
1321 setOperationAction(ISD::FDIV, MVT::v16f32, Legal);
1322 setOperationAction(ISD::FSQRT, MVT::v16f32, Legal);
1323 setOperationAction(ISD::FNEG, MVT::v16f32, Custom);
1324
1325 setOperationAction(ISD::FADD, MVT::v8f64, Legal);
1326 setOperationAction(ISD::FSUB, MVT::v8f64, Legal);
1327 setOperationAction(ISD::FMUL, MVT::v8f64, Legal);
1328 setOperationAction(ISD::FDIV, MVT::v8f64, Legal);
1329 setOperationAction(ISD::FSQRT, MVT::v8f64, Legal);
1330 setOperationAction(ISD::FNEG, MVT::v8f64, Custom);
1331 setOperationAction(ISD::FMA, MVT::v8f64, Legal);
1332 setOperationAction(ISD::FMA, MVT::v16f32, Legal);
1333 setOperationAction(ISD::SDIV, MVT::v16i32, Custom);
1334
Elena Demikhovsky714319a2013-10-06 13:11:09 +00001335 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal);
1336 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal);
1337 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal);
1338 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal);
1339 if (Subtarget->is64Bit()) {
1340 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Legal);
1341 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Legal);
1342 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Legal);
1343 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Legal);
1344 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001345 setOperationAction(ISD::FP_TO_SINT, MVT::v16i32, Legal);
1346 setOperationAction(ISD::FP_TO_UINT, MVT::v16i32, Legal);
1347 setOperationAction(ISD::FP_TO_UINT, MVT::v8i32, Legal);
1348 setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal);
1349 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1350 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1351 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1352 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1353
1354 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1355 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1356 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1357 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1358 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1359 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1360 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1361 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1362 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1363 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1364 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1365 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1366
1367 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1368 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1369 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1370 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1371 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1372
1373 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1374 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1375
1376 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1377
1378 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1379 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1380 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1381 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1382 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1383
1384 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1385 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1386
1387 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1388 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1389
1390 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1391
1392 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1393 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1394
1395 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1396 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1397
1398 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1399 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1400
1401 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1402 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1403 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001404 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1405 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1406 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001407
1408 // Custom lower several nodes.
1409 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1410 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1411 MVT VT = (MVT::SimpleValueType)i;
1412
Elena Demikhovsky07801792013-08-01 13:34:06 +00001413 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001414 // Extract subvector is special because the value type
1415 // (result) is 256/128-bit but the source is 512-bit wide.
1416 if (VT.is128BitVector() || VT.is256BitVector())
1417 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1418
1419 if (VT.getVectorElementType() == MVT::i1)
1420 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1421
1422 // Do not attempt to custom lower other non-512-bit vectors
1423 if (!VT.is512BitVector())
1424 continue;
1425
Elena Demikhovsky07801792013-08-01 13:34:06 +00001426 if ( EltSize >= 32) {
1427 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1428 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1429 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1430 setOperationAction(ISD::VSELECT, VT, Legal);
1431 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1432 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1433 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1434 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001435 }
1436 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1437 MVT VT = (MVT::SimpleValueType)i;
1438
1439 // Do not attempt to promote non-256-bit vectors
1440 if (!VT.is512BitVector())
1441 continue;
1442
Elena Demikhovsky83952512013-07-31 11:35:14 +00001443 setOperationAction(ISD::SELECT, VT, Promote);
1444 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1445 }
1446 }// has AVX-512
1447
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001448 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1449 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001450 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1451 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001452 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1453 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001454 }
1455
Evan Cheng6be2c582006-04-05 23:38:46 +00001456 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001457 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001458 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001459 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001460
Eli Friedman962f5492010-06-02 19:35:46 +00001461 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1462 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001463 //
Eli Friedman962f5492010-06-02 19:35:46 +00001464 // FIXME: We really should do custom legalization for addition and
1465 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1466 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001467 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1468 // Add/Sub/Mul with overflow operations are custom lowered.
1469 MVT VT = IntVTs[i];
1470 setOperationAction(ISD::SADDO, VT, Custom);
1471 setOperationAction(ISD::UADDO, VT, Custom);
1472 setOperationAction(ISD::SSUBO, VT, Custom);
1473 setOperationAction(ISD::USUBO, VT, Custom);
1474 setOperationAction(ISD::SMULO, VT, Custom);
1475 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001476 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001477
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001478 // There are no 8-bit 3-address imul/mul instructions
1479 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1480 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001481
Evan Chengd54f2d52009-03-31 19:38:51 +00001482 if (!Subtarget->is64Bit()) {
1483 // These libcalls are not available in 32-bit.
1484 setLibcallName(RTLIB::SHL_I128, 0);
1485 setLibcallName(RTLIB::SRL_I128, 0);
1486 setLibcallName(RTLIB::SRA_I128, 0);
1487 }
1488
Evan Cheng8688a582013-01-29 02:32:37 +00001489 // Combine sin / cos into one node or libcall if possible.
1490 if (Subtarget->hasSinCos()) {
1491 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1492 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001493 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001494 // For MacOSX, we don't want to the normal expansion of a libcall to
1495 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1496 // traffic.
1497 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1498 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1499 }
1500 }
1501
Evan Cheng206ee9d2006-07-07 08:33:52 +00001502 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbach49af3802013-10-17 02:58:06 +00001503 setTargetDAGCombine(ISD::CONCAT_VECTORS);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001504 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001505 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001506 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001507 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001508 setTargetDAGCombine(ISD::SHL);
1509 setTargetDAGCombine(ISD::SRA);
1510 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001511 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001512 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001513 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001514 setTargetDAGCombine(ISD::FADD);
1515 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001516 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001517 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001518 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001519 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001520 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001521 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001522 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001523 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001524 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001525 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001526 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001527 if (Subtarget->is64Bit())
1528 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001529 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001530
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001531 computeRegisterProperties();
1532
Evan Cheng05219282011-01-06 06:52:41 +00001533 // On Darwin, -Os means optimize for size without hurting performance,
1534 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001535 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1536 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1537 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1538 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1539 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1540 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001541 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001542
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001543 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001544 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001545
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001546 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001547}
1548
Matt Arsenault225ed702013-05-18 00:21:46 +00001549EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Juergen Ributzka189c6232013-09-21 15:09:46 +00001550 if (!VT.isVector()) return MVT::i8;
Duncan Sands28b77e92011-09-06 19:07:46 +00001551 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001552}
1553
Evan Cheng29286502008-01-23 23:17:41 +00001554/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1555/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001556static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001557 if (MaxAlign == 16)
1558 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001559 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001560 if (VTy->getBitWidth() == 128)
1561 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001562 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001563 unsigned EltAlign = 0;
1564 getMaxByValAlign(ATy->getElementType(), EltAlign);
1565 if (EltAlign > MaxAlign)
1566 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001567 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001568 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1569 unsigned EltAlign = 0;
1570 getMaxByValAlign(STy->getElementType(i), EltAlign);
1571 if (EltAlign > MaxAlign)
1572 MaxAlign = EltAlign;
1573 if (MaxAlign == 16)
1574 break;
1575 }
1576 }
Evan Cheng29286502008-01-23 23:17:41 +00001577}
1578
1579/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1580/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001581/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1582/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001583unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001584 if (Subtarget->is64Bit()) {
1585 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001586 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001587 if (TyAlign > 8)
1588 return TyAlign;
1589 return 8;
1590 }
1591
Evan Cheng29286502008-01-23 23:17:41 +00001592 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001593 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001594 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001595 return Align;
1596}
Chris Lattner2b02a442007-02-25 08:29:00 +00001597
Evan Chengf0df0312008-05-15 08:39:06 +00001598/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001599/// and store operations as a result of memset, memcpy, and memmove
1600/// lowering. If DstAlign is zero that means it's safe to destination
1601/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1602/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001603/// probably because the source does not need to be loaded. If 'IsMemset' is
1604/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1605/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1606/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001607/// It returns EVT::Other if the type should be determined using generic
1608/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001609EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001610X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1611 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001612 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001613 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001614 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001615 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001616 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001617 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1618 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001619 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001620 (Subtarget->isUnalignedMemAccessFast() ||
1621 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001622 (SrcAlign == 0 || SrcAlign >= 16)))) {
1623 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001624 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001625 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001626 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001627 return MVT::v8f32;
1628 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001629 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001630 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001631 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001632 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001633 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001634 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001635 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001636 // Do not use f64 to lower memcpy if source is string constant. It's
1637 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001638 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001639 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001640 }
Evan Chengf0df0312008-05-15 08:39:06 +00001641 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001642 return MVT::i64;
1643 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001644}
1645
Evan Cheng7d342672012-12-12 01:32:07 +00001646bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001647 if (VT == MVT::f32)
1648 return X86ScalarSSEf32;
1649 else if (VT == MVT::f64)
1650 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001651 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001652}
1653
Evan Cheng376642e2012-12-10 23:21:26 +00001654bool
1655X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1656 if (Fast)
1657 *Fast = Subtarget->isUnalignedMemAccessFast();
1658 return true;
1659}
1660
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001661/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1662/// current function. The returned value is a member of the
1663/// MachineJumpTableInfo::JTEntryKind enum.
1664unsigned X86TargetLowering::getJumpTableEncoding() const {
1665 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1666 // symbol.
1667 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1668 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001669 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001670
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001671 // Otherwise, use the normal jump table encoding heuristics.
1672 return TargetLowering::getJumpTableEncoding();
1673}
1674
Chris Lattnerc64daab2010-01-26 05:02:42 +00001675const MCExpr *
1676X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1677 const MachineBasicBlock *MBB,
1678 unsigned uid,MCContext &Ctx) const{
1679 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1680 Subtarget->isPICStyleGOT());
1681 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1682 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001683 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1684 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001685}
1686
Evan Chengcc415862007-11-09 01:32:10 +00001687/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1688/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001689SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001690 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001691 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001692 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001693 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001694 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001695 return Table;
1696}
1697
Chris Lattner589c6f62010-01-26 06:28:43 +00001698/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1699/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1700/// MCExpr.
1701const MCExpr *X86TargetLowering::
1702getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1703 MCContext &Ctx) const {
1704 // X86-64 uses RIP relative addressing based on the jump table label.
1705 if (Subtarget->isPICStyleRIPRel())
1706 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1707
1708 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001709 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001710}
1711
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001712// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001713std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001714X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001715 const TargetRegisterClass *RRC = 0;
1716 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001717 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001718 default:
1719 return TargetLowering::findRepresentativeClass(VT);
1720 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001721 RRC = Subtarget->is64Bit() ?
1722 (const TargetRegisterClass*)&X86::GR64RegClass :
1723 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001724 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001725 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001726 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001727 break;
1728 case MVT::f32: case MVT::f64:
1729 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1730 case MVT::v4f32: case MVT::v2f64:
1731 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1732 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001733 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001734 break;
1735 }
1736 return std::make_pair(RRC, Cost);
1737}
1738
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001739bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1740 unsigned &Offset) const {
1741 if (!Subtarget->isTargetLinux())
1742 return false;
1743
1744 if (Subtarget->is64Bit()) {
1745 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1746 Offset = 0x28;
1747 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1748 AddressSpace = 256;
1749 else
1750 AddressSpace = 257;
1751 } else {
1752 // %gs:0x14 on i386
1753 Offset = 0x14;
1754 AddressSpace = 256;
1755 }
1756 return true;
1757}
1758
Chris Lattner2b02a442007-02-25 08:29:00 +00001759//===----------------------------------------------------------------------===//
1760// Return Value Calling Convention Implementation
1761//===----------------------------------------------------------------------===//
1762
Chris Lattner59ed56b2007-02-28 04:55:35 +00001763#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001764
Michael J. Spencerec38de22010-10-10 22:04:20 +00001765bool
Eric Christopher471e4222011-06-08 23:55:35 +00001766X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001767 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001768 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001769 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001770 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001771 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001772 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001773 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001774}
1775
Dan Gohman98ca4f22009-08-05 01:29:28 +00001776SDValue
1777X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001778 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001779 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001780 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001781 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001782 MachineFunction &MF = DAG.getMachineFunction();
1783 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Chris Lattner9774c912007-02-27 05:28:59 +00001785 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001786 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001787 RVLocs, *DAG.getContext());
1788 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001789
Dan Gohman475871a2008-07-27 21:46:04 +00001790 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001791 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001792 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1793 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001794 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1795 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001796
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001797 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001798 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1799 CCValAssign &VA = RVLocs[i];
1800 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001801 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001802 EVT ValVT = ValToCopy.getValueType();
1803
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001804 // Promote values to the appropriate types
1805 if (VA.getLocInfo() == CCValAssign::SExt)
1806 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1807 else if (VA.getLocInfo() == CCValAssign::ZExt)
1808 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1809 else if (VA.getLocInfo() == CCValAssign::AExt)
1810 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1811 else if (VA.getLocInfo() == CCValAssign::BCvt)
1812 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1813
Dale Johannesenc4510512010-09-24 19:05:48 +00001814 // If this is x86-64, and we disabled SSE, we can't return FP values,
1815 // or SSE or MMX vectors.
1816 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1817 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001818 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001819 report_fatal_error("SSE register return with SSE disabled");
1820 }
1821 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1822 // llvm-gcc has never done it right and no one has noticed, so this
1823 // should be OK for now.
1824 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001825 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001826 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001827
Chris Lattner447ff682008-03-11 03:23:40 +00001828 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1829 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001830 if (VA.getLocReg() == X86::ST0 ||
1831 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001832 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1833 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001834 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001835 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001836 RetOps.push_back(ValToCopy);
1837 // Don't emit a copytoreg.
1838 continue;
1839 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001840
Evan Cheng242b38b2009-02-23 09:03:22 +00001841 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1842 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001843 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001844 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001845 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001846 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001847 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1848 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001849 // If we don't have SSE2 available, convert to v4f32 so the generated
1850 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001851 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001852 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001853 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001854 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001855 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001856
Dale Johannesendd64c412009-02-04 00:33:20 +00001857 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001858 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001859 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001860 }
Dan Gohman61a92132008-04-21 23:59:07 +00001861
Eli Benderskya5597f02013-01-25 22:07:43 +00001862 // The x86-64 ABIs require that for returning structs by value we copy
1863 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001864 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001865 // We saved the argument into a virtual register in the entry block,
1866 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001867 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1868 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001869 MachineFunction &MF = DAG.getMachineFunction();
1870 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1871 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001872 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001873 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001874 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001875
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001876 unsigned RetValReg
1877 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1878 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001879 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001880 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001881
Eli Benderskya5597f02013-01-25 22:07:43 +00001882 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001883 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001885
Chris Lattner447ff682008-03-11 03:23:40 +00001886 RetOps[0] = Chain; // Update chain.
1887
1888 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001889 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001890 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001891
1892 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001893 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001894}
1895
Evan Chengbf010eb2012-04-10 01:51:00 +00001896bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001897 if (N->getNumValues() != 1)
1898 return false;
1899 if (!N->hasNUsesOfValue(1, 0))
1900 return false;
1901
Evan Chengbf010eb2012-04-10 01:51:00 +00001902 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001903 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001904 if (Copy->getOpcode() == ISD::CopyToReg) {
1905 // If the copy has a glue operand, we conservatively assume it isn't safe to
1906 // perform a tail call.
1907 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1908 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001909 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001910 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001911 return false;
1912
Evan Cheng1bf891a2010-12-01 22:59:46 +00001913 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001914 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001915 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001916 if (UI->getOpcode() != X86ISD::RET_FLAG)
1917 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001918 HasRet = true;
1919 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001920
Evan Chengbf010eb2012-04-10 01:51:00 +00001921 if (!HasRet)
1922 return false;
1923
1924 Chain = TCChain;
1925 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001926}
1927
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001928MVT
1929X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001930 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001931 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001932 // TODO: Is this also valid on 32-bit?
1933 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001934 ReturnMVT = MVT::i8;
1935 else
1936 ReturnMVT = MVT::i32;
1937
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001938 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001939 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001940}
1941
Dan Gohman98ca4f22009-08-05 01:29:28 +00001942/// LowerCallResult - Lower the result values of a call into the
1943/// appropriate copies out of appropriate physical registers.
1944///
1945SDValue
1946X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001947 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001948 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001949 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001950 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001951
Chris Lattnere32bbf62007-02-28 07:09:55 +00001952 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001953 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001954 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001955 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001956 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001957 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001958
Chris Lattner3085e152007-02-25 08:59:22 +00001959 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001960 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001961 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001962 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001963
Torok Edwin3f142c32009-02-01 18:15:56 +00001964 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001965 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001966 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001967 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001968 }
1969
Evan Cheng79fb3b42009-02-20 20:43:02 +00001970 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001971
1972 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001973 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001974 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001975 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001976 // instead.
1977 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1978 // If we prefer to use the value in xmm registers, copy it out as f80 and
1979 // use a truncate to move it from fp stack reg to xmm reg.
1980 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001981 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001982 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001983 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001984 Val = Chain.getValue(0);
1985
1986 // Round the f80 to the right size, which also moves it to the appropriate
1987 // xmm register.
1988 if (CopyVT != VA.getValVT())
1989 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1990 // This truncation won't change the value.
1991 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001992 } else {
1993 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1994 CopyVT, InFlag).getValue(1);
1995 Val = Chain.getValue(0);
1996 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001997 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001998 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001999 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00002000
Dan Gohman98ca4f22009-08-05 01:29:28 +00002001 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002002}
2003
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002004//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002005// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002006//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002007// StdCall calling convention seems to be standard for many Windows' API
2008// routines and around. It differs from C calling convention just a little:
2009// callee should clean up the stack, not caller. Symbols should be also
2010// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002011// For info on fast calling convention see Fast Calling Convention (tail call)
2012// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002013
Dan Gohman98ca4f22009-08-05 01:29:28 +00002014/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002015/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002016enum StructReturnType {
2017 NotStructReturn,
2018 RegStructReturn,
2019 StackStructReturn
2020};
2021static StructReturnType
2022callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002023 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002024 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002025
Rafael Espindola1cee7102012-07-25 13:41:10 +00002026 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2027 if (!Flags.isSRet())
2028 return NotStructReturn;
2029 if (Flags.isInReg())
2030 return RegStructReturn;
2031 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002032}
2033
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002034/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002035/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002036static StructReturnType
2037argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002038 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002039 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002040
Rafael Espindola1cee7102012-07-25 13:41:10 +00002041 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2042 if (!Flags.isSRet())
2043 return NotStructReturn;
2044 if (Flags.isInReg())
2045 return RegStructReturn;
2046 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002047}
2048
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002049/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2050/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002051/// the specific parameter attribute. The copy will be passed as a byval
2052/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002053static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002054CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002055 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002056 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002057 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002058
Dale Johannesendd64c412009-02-04 00:33:20 +00002059 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002060 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002061 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002062}
2063
Chris Lattner29689432010-03-11 00:22:57 +00002064/// IsTailCallConvention - Return true if the calling convention is one that
2065/// supports tail call optimization.
2066static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002067 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2068 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002069}
2070
Charles Davisac226bb2013-07-12 06:02:35 +00002071/// \brief Return true if the calling convention is a C calling convention.
2072static bool IsCCallConvention(CallingConv::ID CC) {
2073 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2074 CC == CallingConv::X86_64_SysV);
2075}
2076
Evan Cheng485fafc2011-03-21 01:19:09 +00002077bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002078 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002079 return false;
2080
2081 CallSite CS(CI);
2082 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002083 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002084 return false;
2085
2086 return true;
2087}
2088
Evan Cheng0c439eb2010-01-27 00:07:07 +00002089/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2090/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002091static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2092 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002093 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002094}
2095
Dan Gohman98ca4f22009-08-05 01:29:28 +00002096SDValue
2097X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002098 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002099 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002100 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002101 const CCValAssign &VA,
2102 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002103 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002104 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002105 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002106 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2107 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002108 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002109 EVT ValVT;
2110
2111 // If value is passed by pointer we have address passed instead of the value
2112 // itself.
2113 if (VA.getLocInfo() == CCValAssign::Indirect)
2114 ValVT = VA.getLocVT();
2115 else
2116 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002117
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002118 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002119 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002120 // In case of tail call optimization mark all arguments mutable. Since they
2121 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002122 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002123 unsigned Bytes = Flags.getByValSize();
2124 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2125 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002126 return DAG.getFrameIndex(FI, getPointerTy());
2127 } else {
2128 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002129 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002130 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2131 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002132 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002133 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002134 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002135}
2136
Dan Gohman475871a2008-07-27 21:46:04 +00002137SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002138X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002139 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002140 bool isVarArg,
2141 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002142 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002143 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002144 SmallVectorImpl<SDValue> &InVals)
2145 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002146 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002147 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002148
Gordon Henriksen86737662008-01-05 16:56:59 +00002149 const Function* Fn = MF.getFunction();
2150 if (Fn->hasExternalLinkage() &&
2151 Subtarget->isTargetCygMing() &&
2152 Fn->getName() == "main")
2153 FuncInfo->setForceFramePointer(true);
2154
Evan Cheng1bc78042006-04-26 01:20:17 +00002155 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002156 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002157 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002158 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002159
Chris Lattner29689432010-03-11 00:22:57 +00002160 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002161 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002162
Chris Lattner638402b2007-02-28 07:00:42 +00002163 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002164 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002165 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002166 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002167
2168 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002169 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002170 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002171
Duncan Sands45907662010-10-31 13:21:44 +00002172 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002173
Chris Lattnerf39f7712007-02-28 05:46:49 +00002174 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002175 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002176 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2177 CCValAssign &VA = ArgLocs[i];
2178 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2179 // places.
2180 assert(VA.getValNo() != LastVal &&
2181 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002182 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002183 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002184
Chris Lattnerf39f7712007-02-28 05:46:49 +00002185 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002186 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002187 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002188 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002189 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002190 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002191 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002192 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002193 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002194 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002195 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002196 else if (RegVT.is512BitVector())
2197 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002198 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002199 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002200 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002201 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002202 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002203 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002204 else if (RegVT == MVT::v8i1)
2205 RC = &X86::VK8RegClass;
2206 else if (RegVT == MVT::v16i1)
2207 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002208 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002209 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002210
Devang Patel68e6bee2011-02-21 23:21:26 +00002211 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002212 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002213
Chris Lattnerf39f7712007-02-28 05:46:49 +00002214 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2215 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2216 // right size.
2217 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002218 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002219 DAG.getValueType(VA.getValVT()));
2220 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002221 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002222 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002223 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002224 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002225
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002226 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002227 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002228 if (RegVT.isVector())
2229 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2230 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002231 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002232 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002233 } else {
2234 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002235 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002236 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002237
2238 // If value is passed via pointer - do a load.
2239 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002240 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002241 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002242
Dan Gohman98ca4f22009-08-05 01:29:28 +00002243 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002244 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002245
Eli Benderskya5597f02013-01-25 22:07:43 +00002246 // The x86-64 ABIs require that for returning structs by value we copy
2247 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002248 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002249 // Save the argument into a virtual register so that we can access it
2250 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002251 if (MF.getFunction()->hasStructRetAttr() &&
2252 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002253 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2254 unsigned Reg = FuncInfo->getSRetReturnReg();
2255 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002256 MVT PtrTy = getPointerTy();
2257 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002258 FuncInfo->setSRetReturnReg(Reg);
2259 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002260 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002261 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002262 }
2263
Chris Lattnerf39f7712007-02-28 05:46:49 +00002264 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002265 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002266 if (FuncIsMadeTailCallSafe(CallConv,
2267 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002268 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002269
Evan Cheng1bc78042006-04-26 01:20:17 +00002270 // If the function takes variable number of arguments, make a frame index for
2271 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002272 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002273 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2274 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002275 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002276 }
2277 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002278 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2279
2280 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002281 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002282 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002283 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002284 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002285 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2286 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002287 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002288 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2289 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2290 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002291 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002292 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002293
2294 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002295 // The XMM registers which might contain var arg parameters are shadowed
2296 // in their paired GPR. So we only need to save the GPR to their home
2297 // slots.
2298 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002299 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002300 } else {
2301 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2302 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002303
Chad Rosier30450e82011-12-22 22:35:21 +00002304 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2305 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002306 }
2307 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2308 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002309
Bill Wendling831737d2012-12-30 10:32:01 +00002310 bool NoImplicitFloatOps = Fn->getAttributes().
2311 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002312 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002313 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002314 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2315 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002316 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002317 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002318 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002319 // Kernel mode asks for SSE to be disabled, so don't push them
2320 // on the stack.
2321 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002322
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002323 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002324 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002325 // Get to the caller-allocated home save location. Add 8 to account
2326 // for the return address.
2327 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002328 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002329 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002330 // Fixup to set vararg frame on shadow area (4 x i64).
2331 if (NumIntRegs < 4)
2332 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002333 } else {
2334 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002335 // registers, then we must store them to their spots on the stack so
2336 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002337 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2338 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2339 FuncInfo->setRegSaveFrameIndex(
2340 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002341 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002342 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002343
Gordon Henriksen86737662008-01-05 16:56:59 +00002344 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002345 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002346 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2347 getPointerTy());
2348 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002349 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002350 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2351 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002352 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002353 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002354 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002355 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002356 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002357 MachinePointerInfo::getFixedStack(
2358 FuncInfo->getRegSaveFrameIndex(), Offset),
2359 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002360 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002361 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002362 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002363
Dan Gohmanface41a2009-08-16 21:24:25 +00002364 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2365 // Now store the XMM (fp + vector) parameter registers.
2366 SmallVector<SDValue, 11> SaveXMMOps;
2367 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002368
Craig Topperc9099502012-04-20 06:31:50 +00002369 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002370 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2371 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002372
Dan Gohman1e93df62010-04-17 14:41:14 +00002373 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2374 FuncInfo->getRegSaveFrameIndex()));
2375 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2376 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002377
Dan Gohmanface41a2009-08-16 21:24:25 +00002378 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002379 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002380 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002381 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2382 SaveXMMOps.push_back(Val);
2383 }
2384 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2385 MVT::Other,
2386 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002387 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002388
2389 if (!MemOps.empty())
2390 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2391 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002392 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002393 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002394
Gordon Henriksen86737662008-01-05 16:56:59 +00002395 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002396 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2397 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002398 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002399 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002400 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002401 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002402 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002403 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002404 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002405 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002406
Gordon Henriksen86737662008-01-05 16:56:59 +00002407 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002408 // RegSaveFrameIndex is X86-64 only.
2409 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002410 if (CallConv == CallingConv::X86_FastCall ||
2411 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002412 // fastcc functions can't have varargs.
2413 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002414 }
Evan Cheng25caf632006-05-23 21:06:34 +00002415
Rafael Espindola76927d752011-08-30 19:39:58 +00002416 FuncInfo->setArgumentStackSize(StackSize);
2417
Dan Gohman98ca4f22009-08-05 01:29:28 +00002418 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002419}
2420
Dan Gohman475871a2008-07-27 21:46:04 +00002421SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002422X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2423 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002424 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002425 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002426 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002427 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002428 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002429 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002430 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002431 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002432
2433 return DAG.getStore(Chain, dl, Arg, PtrOff,
2434 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002435 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002436}
2437
Bill Wendling64e87322009-01-16 19:25:27 +00002438/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002439/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002440SDValue
2441X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002442 SDValue &OutRetAddr, SDValue Chain,
2443 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002444 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002445 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002446 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002447 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002448
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002449 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002450 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002451 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002452 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002453}
2454
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002455/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002456/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002457static SDValue
2458EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002459 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002460 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002461 // Store the return address to the appropriate stack slot.
2462 if (!FPDiff) return Chain;
2463 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002464 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002465 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2466 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002467 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002468 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002469 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002470 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002471 return Chain;
2472}
2473
Dan Gohman98ca4f22009-08-05 01:29:28 +00002474SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002475X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002476 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002477 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002478 SDLoc &dl = CLI.DL;
2479 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2480 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2481 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002482 SDValue Chain = CLI.Chain;
2483 SDValue Callee = CLI.Callee;
2484 CallingConv::ID CallConv = CLI.CallConv;
2485 bool &isTailCall = CLI.IsTailCall;
2486 bool isVarArg = CLI.IsVarArg;
2487
Dan Gohman98ca4f22009-08-05 01:29:28 +00002488 MachineFunction &MF = DAG.getMachineFunction();
2489 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002490 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002491 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002492 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002493 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002494
Nick Lewycky22de16d2012-01-19 00:34:10 +00002495 if (MF.getTarget().Options.DisableTailCalls)
2496 isTailCall = false;
2497
Evan Cheng5f941932010-02-05 02:21:12 +00002498 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002499 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002500 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002501 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002502 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002503 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002504
2505 // Sibcalls are automatically detected tailcalls which do not require
2506 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002507 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002508 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002509
2510 if (isTailCall)
2511 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002512 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002513
Chris Lattner29689432010-03-11 00:22:57 +00002514 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002515 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002516
Chris Lattner638402b2007-02-28 07:00:42 +00002517 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002518 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002519 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002520 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002521
2522 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002523 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002524 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002525
Duncan Sands45907662010-10-31 13:21:44 +00002526 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002527
Chris Lattner423c5f42007-02-28 05:31:48 +00002528 // Get a count of how many bytes are to be pushed on the stack.
2529 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002530 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002531 // This is a sibcall. The memory operands are available in caller's
2532 // own caller's stack.
2533 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002534 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2535 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002536 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002537
Gordon Henriksen86737662008-01-05 16:56:59 +00002538 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002539 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002540 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002541 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2542 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2543
Gordon Henriksen86737662008-01-05 16:56:59 +00002544 FPDiff = NumBytesCallerPushed - NumBytes;
2545
2546 // Set the delta of movement of the returnaddr stackslot.
2547 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002548 if (FPDiff < X86Info->getTCReturnAddrDelta())
2549 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002550 }
2551
Evan Chengf22f9b32010-02-06 03:28:46 +00002552 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002553 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2554 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002555
Dan Gohman475871a2008-07-27 21:46:04 +00002556 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002557 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002558 if (isTailCall && FPDiff)
2559 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2560 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002561
Dan Gohman475871a2008-07-27 21:46:04 +00002562 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2563 SmallVector<SDValue, 8> MemOpChains;
2564 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002565
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002566 // Walk the register/memloc assignments, inserting copies/loads. In the case
2567 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002568 const X86RegisterInfo *RegInfo =
2569 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002570 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2571 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002572 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002573 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002574 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002575 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002576
Chris Lattner423c5f42007-02-28 05:31:48 +00002577 // Promote the value if needed.
2578 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002579 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002580 case CCValAssign::Full: break;
2581 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002582 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002583 break;
2584 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002585 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002586 break;
2587 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002588 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002589 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002590 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002591 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2592 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002593 } else
2594 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2595 break;
2596 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002597 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002598 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002599 case CCValAssign::Indirect: {
2600 // Store the argument.
2601 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002602 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002603 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002604 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002605 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002606 Arg = SpillSlot;
2607 break;
2608 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002610
Chris Lattner423c5f42007-02-28 05:31:48 +00002611 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002612 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2613 if (isVarArg && IsWin64) {
2614 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2615 // shadow reg if callee is a varargs function.
2616 unsigned ShadowReg = 0;
2617 switch (VA.getLocReg()) {
2618 case X86::XMM0: ShadowReg = X86::RCX; break;
2619 case X86::XMM1: ShadowReg = X86::RDX; break;
2620 case X86::XMM2: ShadowReg = X86::R8; break;
2621 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002622 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002623 if (ShadowReg)
2624 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002625 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002626 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002627 assert(VA.isMemLoc());
2628 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002629 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2630 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002631 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2632 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002633 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002635
Evan Cheng32fe1032006-05-25 00:59:30 +00002636 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002637 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002638 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002639
Chris Lattner88e1fd52009-07-09 04:24:46 +00002640 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002641 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2642 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002643 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002644 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002645 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002646 } else {
2647 // If we are tail calling and generating PIC/GOT style code load the
2648 // address of the callee into ECX. The value in ecx is used as target of
2649 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2650 // for tail calls on PIC/GOT architectures. Normally we would just put the
2651 // address of GOT into ebx and then call target@PLT. But for tail calls
2652 // ebx would be restored (since ebx is callee saved) before jumping to the
2653 // target@PLT.
2654
2655 // Note: The actual moving to ECX is done further down.
2656 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2657 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2658 !G->getGlobal()->hasProtectedVisibility())
2659 Callee = LowerGlobalAddress(Callee, DAG);
2660 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002661 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002662 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002663 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002664
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002665 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002666 // From AMD64 ABI document:
2667 // For calls that may call functions that use varargs or stdargs
2668 // (prototype-less calls or calls to functions containing ellipsis (...) in
2669 // the declaration) %al is used as hidden argument to specify the number
2670 // of SSE registers used. The contents of %al do not need to match exactly
2671 // the number of registers, but must be an ubound on the number of SSE
2672 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002673
Gordon Henriksen86737662008-01-05 16:56:59 +00002674 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002675 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002676 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2677 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2678 };
2679 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002680 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002681 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002682
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002683 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2684 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002685 }
2686
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002687 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002688 if (isTailCall) {
2689 // Force all the incoming stack arguments to be loaded from the stack
2690 // before any new outgoing arguments are stored to the stack, because the
2691 // outgoing stack slots may alias the incoming argument stack slots, and
2692 // the alias isn't otherwise explicit. This is slightly more conservative
2693 // than necessary, because it means that each store effectively depends
2694 // on every argument instead of just those arguments it would clobber.
2695 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2696
Dan Gohman475871a2008-07-27 21:46:04 +00002697 SmallVector<SDValue, 8> MemOpChains2;
2698 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002699 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002700 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002701 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2702 CCValAssign &VA = ArgLocs[i];
2703 if (VA.isRegLoc())
2704 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002705 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002706 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002707 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002708 // Create frame index.
2709 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002710 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002711 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002712 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002713
Duncan Sands276dcbd2008-03-21 09:14:45 +00002714 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002715 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002716 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002717 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002718 StackPtr = DAG.getCopyFromReg(Chain, dl,
2719 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002720 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002721 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002722
Dan Gohman98ca4f22009-08-05 01:29:28 +00002723 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2724 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002725 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002726 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002727 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002728 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002729 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002730 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002731 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002732 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002733 }
2734 }
2735
2736 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002737 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002738 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002739
2740 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002741 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2742 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002743 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002744 }
2745
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002746 // Build a sequence of copy-to-reg nodes chained together with token chain
2747 // and flag operands which copy the outgoing args into registers.
2748 SDValue InFlag;
2749 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2750 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2751 RegsToPass[i].second, InFlag);
2752 InFlag = Chain.getValue(1);
2753 }
2754
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002755 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2756 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2757 // In the 64-bit large code model, we have to make all calls
2758 // through a register, since the call instruction's 32-bit
2759 // pc-relative offset may not be large enough to hold the whole
2760 // address.
2761 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002762 // If the callee is a GlobalAddress node (quite common, every direct call
2763 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2764 // it.
2765
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002766 // We should use extra load for direct calls to dllimported functions in
2767 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002768 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002769 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002770 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002771 bool ExtraLoad = false;
2772 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002773
Chris Lattner48a7d022009-07-09 05:02:21 +00002774 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2775 // external symbols most go through the PLT in PIC mode. If the symbol
2776 // has hidden or protected visibility, or if it is static or local, then
2777 // we don't need to use the PLT - we can directly call it.
2778 if (Subtarget->isTargetELF() &&
2779 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002780 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002781 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002782 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002783 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002784 (!Subtarget->getTargetTriple().isMacOSX() ||
2785 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002786 // PC-relative references to external symbols should go through $stub,
2787 // unless we're building with the leopard linker or later, which
2788 // automatically synthesizes these stubs.
2789 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002790 } else if (Subtarget->isPICStyleRIPRel() &&
2791 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002792 cast<Function>(GV)->getAttributes().
2793 hasAttribute(AttributeSet::FunctionIndex,
2794 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002795 // If the function is marked as non-lazy, generate an indirect call
2796 // which loads from the GOT directly. This avoids runtime overhead
2797 // at the cost of eager binding (and one extra byte of encoding).
2798 OpFlags = X86II::MO_GOTPCREL;
2799 WrapperKind = X86ISD::WrapperRIP;
2800 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002801 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002802
Devang Patel0d881da2010-07-06 22:08:15 +00002803 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002804 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002805
2806 // Add a wrapper if needed.
2807 if (WrapperKind != ISD::DELETED_NODE)
2808 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2809 // Add extra indirection if needed.
2810 if (ExtraLoad)
2811 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2812 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002813 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002814 }
Bill Wendling056292f2008-09-16 21:48:12 +00002815 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002816 unsigned char OpFlags = 0;
2817
Evan Cheng1bf891a2010-12-01 22:59:46 +00002818 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2819 // external symbols should go through the PLT.
2820 if (Subtarget->isTargetELF() &&
2821 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2822 OpFlags = X86II::MO_PLT;
2823 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002824 (!Subtarget->getTargetTriple().isMacOSX() ||
2825 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002826 // PC-relative references to external symbols should go through $stub,
2827 // unless we're building with the leopard linker or later, which
2828 // automatically synthesizes these stubs.
2829 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002830 }
Eric Christopherfd179292009-08-27 18:07:15 +00002831
Chris Lattner48a7d022009-07-09 05:02:21 +00002832 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2833 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002834 }
2835
Chris Lattnerd96d0722007-02-25 06:40:16 +00002836 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002837 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002838 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002839
Evan Chengf22f9b32010-02-06 03:28:46 +00002840 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002841 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002842 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002843 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002844 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002845
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002846 Ops.push_back(Chain);
2847 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002848
Dan Gohman98ca4f22009-08-05 01:29:28 +00002849 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002850 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002851
Gordon Henriksen86737662008-01-05 16:56:59 +00002852 // Add argument registers to the end of the list so that they are known live
2853 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002854 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2855 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2856 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002857
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002858 // Add a register mask operand representing the call-preserved registers.
2859 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2860 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2861 assert(Mask && "Missing call preserved mask for calling convention");
2862 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002863
Gabor Greifba36cb52008-08-28 21:40:38 +00002864 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002865 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002866
Dan Gohman98ca4f22009-08-05 01:29:28 +00002867 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002868 // We used to do:
2869 //// If this is the first return lowered for this function, add the regs
2870 //// to the liveout set for the function.
2871 // This isn't right, although it's probably harmless on x86; liveouts
2872 // should be computed from returns not tail calls. Consider a void
2873 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002874 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002875 }
2876
Dale Johannesenace16102009-02-03 19:33:06 +00002877 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002878 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002879
Chris Lattner2d297092006-05-23 18:50:38 +00002880 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002881 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002882 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2883 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002884 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002885 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002886 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002887 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002888 // pops the hidden struct pointer, so we have to push it back.
2889 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002890 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002891 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002892 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002893 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002894
Gordon Henriksenae636f82008-01-03 16:47:34 +00002895 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002896 if (!IsSibcall) {
2897 Chain = DAG.getCALLSEQ_END(Chain,
2898 DAG.getIntPtrConstant(NumBytes, true),
2899 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2900 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002901 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002902 InFlag = Chain.getValue(1);
2903 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002904
Chris Lattner3085e152007-02-25 08:59:22 +00002905 // Handle result values, copying them out of physregs into vregs that we
2906 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002907 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2908 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002909}
2910
Evan Cheng25ab6902006-09-08 06:48:29 +00002911//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002912// Fast Calling Convention (tail call) implementation
2913//===----------------------------------------------------------------------===//
2914
2915// Like std call, callee cleans arguments, convention except that ECX is
2916// reserved for storing the tail called function address. Only 2 registers are
2917// free for argument passing (inreg). Tail call optimization is performed
2918// provided:
2919// * tailcallopt is enabled
2920// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002921// On X86_64 architecture with GOT-style position independent code only local
2922// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002923// To keep the stack aligned according to platform abi the function
2924// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2925// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002926// If a tail called function callee has more arguments than the caller the
2927// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002928// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002929// original REtADDR, but before the saved framepointer or the spilled registers
2930// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2931// stack layout:
2932// arg1
2933// arg2
2934// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002935// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002936// move area ]
2937// (possible EBP)
2938// ESI
2939// EDI
2940// local1 ..
2941
2942/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2943/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002944unsigned
2945X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2946 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002947 MachineFunction &MF = DAG.getMachineFunction();
2948 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002949 const X86RegisterInfo *RegInfo =
2950 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002951 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002952 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002953 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002954 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002955 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002956 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2957 // Number smaller than 12 so just add the difference.
2958 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2959 } else {
2960 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002961 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002962 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002963 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002964 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002965}
2966
Evan Cheng5f941932010-02-05 02:21:12 +00002967/// MatchingStackOffset - Return true if the given stack call argument is
2968/// already available in the same position (relatively) of the caller's
2969/// incoming argument stack.
2970static
2971bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2972 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2973 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002974 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2975 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002976 if (Arg.getOpcode() == ISD::CopyFromReg) {
2977 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002978 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002979 return false;
2980 MachineInstr *Def = MRI->getVRegDef(VR);
2981 if (!Def)
2982 return false;
2983 if (!Flags.isByVal()) {
2984 if (!TII->isLoadFromStackSlot(Def, FI))
2985 return false;
2986 } else {
2987 unsigned Opcode = Def->getOpcode();
2988 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2989 Def->getOperand(1).isFI()) {
2990 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002991 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002992 } else
2993 return false;
2994 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002995 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2996 if (Flags.isByVal())
2997 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002998 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002999 // define @foo(%struct.X* %A) {
3000 // tail call @bar(%struct.X* byval %A)
3001 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003002 return false;
3003 SDValue Ptr = Ld->getBasePtr();
3004 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3005 if (!FINode)
3006 return false;
3007 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003008 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003009 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003010 FI = FINode->getIndex();
3011 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003012 } else
3013 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003014
Evan Cheng4cae1332010-03-05 08:38:04 +00003015 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003016 if (!MFI->isFixedObjectIndex(FI))
3017 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003018 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003019}
3020
Dan Gohman98ca4f22009-08-05 01:29:28 +00003021/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3022/// for tail call optimization. Targets which want to do tail call
3023/// optimization should implement this function.
3024bool
3025X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003026 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003027 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003028 bool isCalleeStructRet,
3029 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003030 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003031 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003032 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003033 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003034 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003035 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003036 return false;
3037
Evan Cheng7096ae42010-01-29 06:45:59 +00003038 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003039 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003040 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003041
3042 // If the function return type is x86_fp80 and the callee return type is not,
3043 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3044 // perform a tailcall optimization here.
3045 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3046 return false;
3047
Evan Cheng13617962010-04-30 01:12:32 +00003048 CallingConv::ID CallerCC = CallerF->getCallingConv();
3049 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003050 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3051 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003052
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003053 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003054 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003055 return true;
3056 return false;
3057 }
3058
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003059 // Look for obvious safe cases to perform tail call optimization that do not
3060 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003061
Evan Cheng2c12cb42010-03-26 16:26:03 +00003062 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3063 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003064 const X86RegisterInfo *RegInfo =
3065 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003066 if (RegInfo->needsStackRealignment(MF))
3067 return false;
3068
Evan Chenga375d472010-03-15 18:54:48 +00003069 // Also avoid sibcall optimization if either caller or callee uses struct
3070 // return semantics.
3071 if (isCalleeStructRet || isCallerStructRet)
3072 return false;
3073
Chad Rosier2416da32011-06-24 21:15:36 +00003074 // An stdcall caller is expected to clean up its arguments; the callee
3075 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003076 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003077 return false;
3078
Chad Rosier871f6642011-05-18 19:59:50 +00003079 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003080 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003081 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003082
3083 // Optimizing for varargs on Win64 is unlikely to be safe without
3084 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003085 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003086 return false;
3087
Chad Rosier871f6642011-05-18 19:59:50 +00003088 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003089 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003090 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003091
Chad Rosier871f6642011-05-18 19:59:50 +00003092 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3093 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3094 if (!ArgLocs[i].isRegLoc())
3095 return false;
3096 }
3097
Chad Rosier30450e82011-12-22 22:35:21 +00003098 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3099 // stack. Therefore, if it's not used by the call it is not safe to optimize
3100 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003101 bool Unused = false;
3102 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3103 if (!Ins[i].Used) {
3104 Unused = true;
3105 break;
3106 }
3107 }
3108 if (Unused) {
3109 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003110 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003111 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003112 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003113 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003114 CCValAssign &VA = RVLocs[i];
3115 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3116 return false;
3117 }
3118 }
3119
Evan Cheng13617962010-04-30 01:12:32 +00003120 // If the calling conventions do not match, then we'd better make sure the
3121 // results are returned in the same way as what the caller expects.
3122 if (!CCMatch) {
3123 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003124 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003125 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003126 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3127
3128 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003129 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003130 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003131 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3132
3133 if (RVLocs1.size() != RVLocs2.size())
3134 return false;
3135 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3136 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3137 return false;
3138 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3139 return false;
3140 if (RVLocs1[i].isRegLoc()) {
3141 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3142 return false;
3143 } else {
3144 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3145 return false;
3146 }
3147 }
3148 }
3149
Evan Chenga6bff982010-01-30 01:22:00 +00003150 // If the callee takes no arguments then go on to check the results of the
3151 // call.
3152 if (!Outs.empty()) {
3153 // Check if stack adjustment is needed. For now, do not do this if any
3154 // argument is passed on the stack.
3155 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003156 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003157 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003158
3159 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003160 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003161 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003162
Duncan Sands45907662010-10-31 13:21:44 +00003163 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003164 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003165 MachineFunction &MF = DAG.getMachineFunction();
3166 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3167 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003168
3169 // Check if the arguments are already laid out in the right way as
3170 // the caller's fixed stack objects.
3171 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003172 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3173 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003174 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003175 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3176 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003177 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003178 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003179 if (VA.getLocInfo() == CCValAssign::Indirect)
3180 return false;
3181 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003182 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3183 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003184 return false;
3185 }
3186 }
3187 }
Evan Cheng9c044672010-05-29 01:35:22 +00003188
3189 // If the tailcall address may be in a register, then make sure it's
3190 // possible to register allocate for it. In 32-bit, the call address can
3191 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003192 // callee-saved registers are restored. These happen to be the same
3193 // registers used to pass 'inreg' arguments so watch out for those.
3194 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003195 ((!isa<GlobalAddressSDNode>(Callee) &&
3196 !isa<ExternalSymbolSDNode>(Callee)) ||
3197 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003198 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003199 // In PIC we need an extra register to formulate the address computation
3200 // for the callee.
3201 unsigned MaxInRegs =
3202 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3203
Evan Cheng9c044672010-05-29 01:35:22 +00003204 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3205 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003206 if (!VA.isRegLoc())
3207 continue;
3208 unsigned Reg = VA.getLocReg();
3209 switch (Reg) {
3210 default: break;
3211 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003212 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003213 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003214 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003215 }
3216 }
3217 }
Evan Chenga6bff982010-01-30 01:22:00 +00003218 }
Evan Chengb1712452010-01-27 06:25:16 +00003219
Evan Cheng86809cc2010-02-03 03:28:02 +00003220 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003221}
3222
Dan Gohman3df24e62008-09-03 23:12:08 +00003223FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003224X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3225 const TargetLibraryInfo *libInfo) const {
3226 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003227}
3228
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003229//===----------------------------------------------------------------------===//
3230// Other Lowering Hooks
3231//===----------------------------------------------------------------------===//
3232
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003233static bool MayFoldLoad(SDValue Op) {
3234 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3235}
3236
3237static bool MayFoldIntoStore(SDValue Op) {
3238 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3239}
3240
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003241static bool isTargetShuffle(unsigned Opcode) {
3242 switch(Opcode) {
3243 default: return false;
3244 case X86ISD::PSHUFD:
3245 case X86ISD::PSHUFHW:
3246 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003247 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003248 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003249 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003250 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003251 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003252 case X86ISD::MOVLPS:
3253 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003254 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003255 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003256 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003257 case X86ISD::MOVSS:
3258 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003259 case X86ISD::UNPCKL:
3260 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003261 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003262 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003263 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003264 return true;
3265 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003266}
3267
Andrew Trickac6d9be2013-05-25 02:42:55 +00003268static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003269 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003270 switch(Opc) {
3271 default: llvm_unreachable("Unknown x86 shuffle node");
3272 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003273 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003274 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003275 return DAG.getNode(Opc, dl, VT, V1);
3276 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003277}
3278
Andrew Trickac6d9be2013-05-25 02:42:55 +00003279static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003280 SDValue V1, unsigned TargetMask,
3281 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003282 switch(Opc) {
3283 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003284 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003285 case X86ISD::PSHUFHW:
3286 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003287 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003288 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003289 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3290 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003291}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003292
Andrew Trickac6d9be2013-05-25 02:42:55 +00003293static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003294 SDValue V1, SDValue V2, unsigned TargetMask,
3295 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003296 switch(Opc) {
3297 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003298 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003299 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003300 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003301 return DAG.getNode(Opc, dl, VT, V1, V2,
3302 DAG.getConstant(TargetMask, MVT::i8));
3303 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003304}
3305
Andrew Trickac6d9be2013-05-25 02:42:55 +00003306static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003307 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3308 switch(Opc) {
3309 default: llvm_unreachable("Unknown x86 shuffle node");
3310 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003311 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003312 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003313 case X86ISD::MOVLPS:
3314 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003315 case X86ISD::MOVSS:
3316 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003317 case X86ISD::UNPCKL:
3318 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003319 return DAG.getNode(Opc, dl, VT, V1, V2);
3320 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003321}
3322
Dan Gohmand858e902010-04-17 15:26:15 +00003323SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003324 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003325 const X86RegisterInfo *RegInfo =
3326 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003327 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3328 int ReturnAddrIndex = FuncInfo->getRAIndex();
3329
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003330 if (ReturnAddrIndex == 0) {
3331 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003332 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003333 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3334 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003335 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003336 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003337 }
3338
Evan Cheng25ab6902006-09-08 06:48:29 +00003339 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003340}
3341
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003342bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3343 bool hasSymbolicDisplacement) {
3344 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003345 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003346 return false;
3347
3348 // If we don't have a symbolic displacement - we don't have any extra
3349 // restrictions.
3350 if (!hasSymbolicDisplacement)
3351 return true;
3352
3353 // FIXME: Some tweaks might be needed for medium code model.
3354 if (M != CodeModel::Small && M != CodeModel::Kernel)
3355 return false;
3356
3357 // For small code model we assume that latest object is 16MB before end of 31
3358 // bits boundary. We may also accept pretty large negative constants knowing
3359 // that all objects are in the positive half of address space.
3360 if (M == CodeModel::Small && Offset < 16*1024*1024)
3361 return true;
3362
3363 // For kernel code model we know that all object resist in the negative half
3364 // of 32bits address space. We may not accept negative offsets, since they may
3365 // be just off and we may accept pretty large positive ones.
3366 if (M == CodeModel::Kernel && Offset > 0)
3367 return true;
3368
3369 return false;
3370}
3371
Evan Chengef41ff62011-06-23 17:54:54 +00003372/// isCalleePop - Determines whether the callee is required to pop its
3373/// own arguments. Callee pop is necessary to support tail calls.
3374bool X86::isCalleePop(CallingConv::ID CallingConv,
3375 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3376 if (IsVarArg)
3377 return false;
3378
3379 switch (CallingConv) {
3380 default:
3381 return false;
3382 case CallingConv::X86_StdCall:
3383 return !is64Bit;
3384 case CallingConv::X86_FastCall:
3385 return !is64Bit;
3386 case CallingConv::X86_ThisCall:
3387 return !is64Bit;
3388 case CallingConv::Fast:
3389 return TailCallOpt;
3390 case CallingConv::GHC:
3391 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003392 case CallingConv::HiPE:
3393 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003394 }
3395}
3396
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003397/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3398/// specific condition code, returning the condition code and the LHS/RHS of the
3399/// comparison to make.
3400static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3401 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003402 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003403 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3404 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3405 // X > -1 -> X == 0, jump !sign.
3406 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003407 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003408 }
3409 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003410 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003411 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003412 }
3413 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003414 // X < 1 -> X <= 0
3415 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003416 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003417 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003418 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003419
Evan Chengd9558e02006-01-06 00:43:03 +00003420 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003421 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003422 case ISD::SETEQ: return X86::COND_E;
3423 case ISD::SETGT: return X86::COND_G;
3424 case ISD::SETGE: return X86::COND_GE;
3425 case ISD::SETLT: return X86::COND_L;
3426 case ISD::SETLE: return X86::COND_LE;
3427 case ISD::SETNE: return X86::COND_NE;
3428 case ISD::SETULT: return X86::COND_B;
3429 case ISD::SETUGT: return X86::COND_A;
3430 case ISD::SETULE: return X86::COND_BE;
3431 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003432 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003433 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003434
Chris Lattner4c78e022008-12-23 23:42:27 +00003435 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003436
Chris Lattner4c78e022008-12-23 23:42:27 +00003437 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003438 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3439 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003440 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3441 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003442 }
3443
Chris Lattner4c78e022008-12-23 23:42:27 +00003444 switch (SetCCOpcode) {
3445 default: break;
3446 case ISD::SETOLT:
3447 case ISD::SETOLE:
3448 case ISD::SETUGT:
3449 case ISD::SETUGE:
3450 std::swap(LHS, RHS);
3451 break;
3452 }
3453
3454 // On a floating point condition, the flags are set as follows:
3455 // ZF PF CF op
3456 // 0 | 0 | 0 | X > Y
3457 // 0 | 0 | 1 | X < Y
3458 // 1 | 0 | 0 | X == Y
3459 // 1 | 1 | 1 | unordered
3460 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003461 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003462 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003463 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003464 case ISD::SETOLT: // flipped
3465 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003466 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003467 case ISD::SETOLE: // flipped
3468 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003469 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003470 case ISD::SETUGT: // flipped
3471 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003472 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003473 case ISD::SETUGE: // flipped
3474 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003475 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003476 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003477 case ISD::SETNE: return X86::COND_NE;
3478 case ISD::SETUO: return X86::COND_P;
3479 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003480 case ISD::SETOEQ:
3481 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003482 }
Evan Chengd9558e02006-01-06 00:43:03 +00003483}
3484
Evan Cheng4a460802006-01-11 00:33:36 +00003485/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3486/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003487/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003488static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003489 switch (X86CC) {
3490 default:
3491 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003492 case X86::COND_B:
3493 case X86::COND_BE:
3494 case X86::COND_E:
3495 case X86::COND_P:
3496 case X86::COND_A:
3497 case X86::COND_AE:
3498 case X86::COND_NE:
3499 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003500 return true;
3501 }
3502}
3503
Evan Chengeb2f9692009-10-27 19:56:55 +00003504/// isFPImmLegal - Returns true if the target can instruction select the
3505/// specified FP immediate natively. If false, the legalizer will
3506/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003507bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003508 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3509 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3510 return true;
3511 }
3512 return false;
3513}
3514
Nate Begeman9008ca62009-04-27 18:41:29 +00003515/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3516/// the specified range (L, H].
3517static bool isUndefOrInRange(int Val, int Low, int Hi) {
3518 return (Val < 0) || (Val >= Low && Val < Hi);
3519}
3520
3521/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3522/// specified value.
3523static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003524 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003525}
3526
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003527/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003528/// from position Pos and ending in Pos+Size, falls within the specified
3529/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003530static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003531 unsigned Pos, unsigned Size, int Low) {
3532 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003533 if (!isUndefOrEqual(Mask[i], Low))
3534 return false;
3535 return true;
3536}
3537
Nate Begeman9008ca62009-04-27 18:41:29 +00003538/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3539/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3540/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003541static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003542 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003543 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003544 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003545 return (Mask[0] < 2 && Mask[1] < 2);
3546 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003547}
3548
Nate Begeman9008ca62009-04-27 18:41:29 +00003549/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3550/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003551static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003552 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003553 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003554
Nate Begeman9008ca62009-04-27 18:41:29 +00003555 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003556 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3557 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003558
Evan Cheng506d3df2006-03-29 23:07:14 +00003559 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003560 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003561 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003562 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003563
Craig Toppera9a568a2012-05-02 08:03:44 +00003564 if (VT == MVT::v16i16) {
3565 // Lower quadword copied in order or undef.
3566 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3567 return false;
3568
3569 // Upper quadword shuffled.
3570 for (unsigned i = 12; i != 16; ++i)
3571 if (!isUndefOrInRange(Mask[i], 12, 16))
3572 return false;
3573 }
3574
Evan Cheng506d3df2006-03-29 23:07:14 +00003575 return true;
3576}
3577
Nate Begeman9008ca62009-04-27 18:41:29 +00003578/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3579/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003580static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003581 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003582 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003583
Rafael Espindola15684b22009-04-24 12:40:33 +00003584 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003585 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3586 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003587
Rafael Espindola15684b22009-04-24 12:40:33 +00003588 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003589 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003590 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003591 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003592
Craig Toppera9a568a2012-05-02 08:03:44 +00003593 if (VT == MVT::v16i16) {
3594 // Upper quadword copied in order.
3595 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3596 return false;
3597
3598 // Lower quadword shuffled.
3599 for (unsigned i = 8; i != 12; ++i)
3600 if (!isUndefOrInRange(Mask[i], 8, 12))
3601 return false;
3602 }
3603
Rafael Espindola15684b22009-04-24 12:40:33 +00003604 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003605}
3606
Nate Begemana09008b2009-10-19 02:17:23 +00003607/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3608/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003609static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003610 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003611 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3612 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003613 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003614
Craig Topper0e2037b2012-01-20 05:53:00 +00003615 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003616 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003617 unsigned NumLaneElts = NumElts/NumLanes;
3618
3619 // Do not handle 64-bit element shuffles with palignr.
3620 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003621 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003622
Craig Topper0e2037b2012-01-20 05:53:00 +00003623 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3624 unsigned i;
3625 for (i = 0; i != NumLaneElts; ++i) {
3626 if (Mask[i+l] >= 0)
3627 break;
3628 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003629
Craig Topper0e2037b2012-01-20 05:53:00 +00003630 // Lane is all undef, go to next lane
3631 if (i == NumLaneElts)
3632 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003633
Craig Topper0e2037b2012-01-20 05:53:00 +00003634 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003635
Craig Topper0e2037b2012-01-20 05:53:00 +00003636 // Make sure its in this lane in one of the sources
3637 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3638 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003639 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003640
3641 // If not lane 0, then we must match lane 0
3642 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3643 return false;
3644
3645 // Correct second source to be contiguous with first source
3646 if (Start >= (int)NumElts)
3647 Start -= NumElts - NumLaneElts;
3648
3649 // Make sure we're shifting in the right direction.
3650 if (Start <= (int)(i+l))
3651 return false;
3652
3653 Start -= i;
3654
3655 // Check the rest of the elements to see if they are consecutive.
3656 for (++i; i != NumLaneElts; ++i) {
3657 int Idx = Mask[i+l];
3658
3659 // Make sure its in this lane
3660 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3661 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3662 return false;
3663
3664 // If not lane 0, then we must match lane 0
3665 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3666 return false;
3667
3668 if (Idx >= (int)NumElts)
3669 Idx -= NumElts - NumLaneElts;
3670
3671 if (!isUndefOrEqual(Idx, Start+i))
3672 return false;
3673
3674 }
Nate Begemana09008b2009-10-19 02:17:23 +00003675 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003676
Nate Begemana09008b2009-10-19 02:17:23 +00003677 return true;
3678}
3679
Craig Topper1a7700a2012-01-19 08:19:12 +00003680/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3681/// the two vector operands have swapped position.
3682static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3683 unsigned NumElems) {
3684 for (unsigned i = 0; i != NumElems; ++i) {
3685 int idx = Mask[i];
3686 if (idx < 0)
3687 continue;
3688 else if (idx < (int)NumElems)
3689 Mask[i] = idx + NumElems;
3690 else
3691 Mask[i] = idx - NumElems;
3692 }
3693}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003694
Craig Topper1a7700a2012-01-19 08:19:12 +00003695/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3696/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3697/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3698/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003699static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003700
Craig Topper1a7700a2012-01-19 08:19:12 +00003701 unsigned NumElems = VT.getVectorNumElements();
3702 unsigned NumLanes = VT.getSizeInBits()/128;
3703 unsigned NumLaneElems = NumElems/NumLanes;
3704
3705 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003706 return false;
3707
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003708 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3709 bool symetricMaskRequired =
3710 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3711
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003712 // VSHUFPSY divides the resulting vector into 4 chunks.
3713 // The sources are also splitted into 4 chunks, and each destination
3714 // chunk must come from a different source chunk.
3715 //
3716 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3717 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3718 //
3719 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3720 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3721 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003722 // VSHUFPDY divides the resulting vector into 4 chunks.
3723 // The sources are also splitted into 4 chunks, and each destination
3724 // chunk must come from a different source chunk.
3725 //
3726 // SRC1 => X3 X2 X1 X0
3727 // SRC2 => Y3 Y2 Y1 Y0
3728 //
3729 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3730 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003731 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003732 unsigned HalfLaneElems = NumLaneElems/2;
3733 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3734 for (unsigned i = 0; i != NumLaneElems; ++i) {
3735 int Idx = Mask[i+l];
3736 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3737 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3738 return false;
3739 // For VSHUFPSY, the mask of the second half must be the same as the
3740 // first but with the appropriate offsets. This works in the same way as
3741 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003742 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003743 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003744 if (MaskVal[i] < 0) {
3745 MaskVal[i] = Idx - l;
3746 continue;
3747 }
3748 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003749 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003750 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003751 }
3752
3753 return true;
3754}
3755
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003756/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3757/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003758static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003759 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003760 return false;
3761
Craig Topper7a9a28b2012-08-12 02:23:29 +00003762 unsigned NumElems = VT.getVectorNumElements();
3763
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003764 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003765 return false;
3766
Evan Cheng2064a2b2006-03-28 06:50:32 +00003767 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003768 return isUndefOrEqual(Mask[0], 6) &&
3769 isUndefOrEqual(Mask[1], 7) &&
3770 isUndefOrEqual(Mask[2], 2) &&
3771 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003772}
3773
Nate Begeman0b10b912009-11-07 23:17:15 +00003774/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3775/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3776/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003777static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003778 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003779 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003780
Craig Topper7a9a28b2012-08-12 02:23:29 +00003781 unsigned NumElems = VT.getVectorNumElements();
3782
Nate Begeman0b10b912009-11-07 23:17:15 +00003783 if (NumElems != 4)
3784 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003785
Craig Topperdd637ae2012-02-19 05:41:45 +00003786 return isUndefOrEqual(Mask[0], 2) &&
3787 isUndefOrEqual(Mask[1], 3) &&
3788 isUndefOrEqual(Mask[2], 2) &&
3789 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003790}
3791
Evan Cheng5ced1d82006-04-06 23:23:56 +00003792/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3793/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003794static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003795 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003796 return false;
3797
Craig Topperdd637ae2012-02-19 05:41:45 +00003798 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003799
Evan Cheng5ced1d82006-04-06 23:23:56 +00003800 if (NumElems != 2 && NumElems != 4)
3801 return false;
3802
Chad Rosier238ae312012-04-30 17:47:15 +00003803 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003804 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003805 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003806
Chad Rosier238ae312012-04-30 17:47:15 +00003807 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003808 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003809 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003810
3811 return true;
3812}
3813
Nate Begeman0b10b912009-11-07 23:17:15 +00003814/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3815/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003816static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003817 if (!VT.is128BitVector())
3818 return false;
3819
Craig Topperdd637ae2012-02-19 05:41:45 +00003820 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003821
Craig Topper7a9a28b2012-08-12 02:23:29 +00003822 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003823 return false;
3824
Chad Rosier238ae312012-04-30 17:47:15 +00003825 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003826 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003827 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003828
Chad Rosier238ae312012-04-30 17:47:15 +00003829 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3830 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003831 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003832
3833 return true;
3834}
3835
Elena Demikhovsky15963732012-06-26 08:04:10 +00003836//
3837// Some special combinations that can be optimized.
3838//
3839static
3840SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3841 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003842 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003843 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003844
3845 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3846 return SDValue();
3847
3848 ArrayRef<int> Mask = SVOp->getMask();
3849
3850 // These are the special masks that may be optimized.
3851 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3852 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3853 bool MatchEvenMask = true;
3854 bool MatchOddMask = true;
3855 for (int i=0; i<8; ++i) {
3856 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3857 MatchEvenMask = false;
3858 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3859 MatchOddMask = false;
3860 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003861
Elena Demikhovsky32510202012-09-04 12:49:02 +00003862 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003863 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003864
Elena Demikhovsky15963732012-06-26 08:04:10 +00003865 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3866
Elena Demikhovsky32510202012-09-04 12:49:02 +00003867 SDValue Op0 = SVOp->getOperand(0);
3868 SDValue Op1 = SVOp->getOperand(1);
3869
3870 if (MatchEvenMask) {
3871 // Shift the second operand right to 32 bits.
3872 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3873 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3874 } else {
3875 // Shift the first operand left to 32 bits.
3876 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3877 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3878 }
3879 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3880 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003881}
3882
Evan Cheng0038e592006-03-28 00:39:58 +00003883/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3884/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003885static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003886 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003887
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003888 assert(VT.getSizeInBits() >= 128 &&
3889 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003890
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003891 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3892 unsigned NumLanes;
3893 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003894 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003895 if (VT.is256BitVector()) {
3896 if (NumElts != 4 && NumElts != 8 &&
3897 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003898 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003899 NumLanes = 2;
3900 NumOf256BitLanes = 1;
3901 } else if (VT.is512BitVector()) {
3902 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3903 "Unsupported vector type for unpckh");
3904 NumLanes = 2;
3905 NumOf256BitLanes = 2;
3906 } else {
3907 NumLanes = 1;
3908 NumOf256BitLanes = 1;
3909 }
Eric Christopherfd179292009-08-27 18:07:15 +00003910
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003911 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3912 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003913
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003914 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3915 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3916 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3917 int BitI = Mask[l256*NumEltsInStride+l+i];
3918 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3919 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003920 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003921 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3922 return false;
3923 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003924 return false;
3925 }
Evan Cheng39623da2006-04-20 08:58:49 +00003926 }
Evan Cheng0038e592006-03-28 00:39:58 +00003927 }
Evan Cheng0038e592006-03-28 00:39:58 +00003928 return true;
3929}
3930
Evan Cheng4fcb9222006-03-28 02:43:26 +00003931/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3932/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003933static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003934 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003935 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003936 "Unsupported vector type for unpckh");
3937
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003938 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3939 unsigned NumLanes;
3940 unsigned NumOf256BitLanes;
3941 unsigned NumElts = VT.getVectorNumElements();
3942 if (VT.is256BitVector()) {
3943 if (NumElts != 4 && NumElts != 8 &&
3944 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003945 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003946 NumLanes = 2;
3947 NumOf256BitLanes = 1;
3948 } else if (VT.is512BitVector()) {
3949 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3950 "Unsupported vector type for unpckh");
3951 NumLanes = 2;
3952 NumOf256BitLanes = 2;
3953 } else {
3954 NumLanes = 1;
3955 NumOf256BitLanes = 1;
3956 }
Eric Christopherfd179292009-08-27 18:07:15 +00003957
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003958 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3959 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003960
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003961 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3962 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3963 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3964 int BitI = Mask[l256*NumEltsInStride+l+i];
3965 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3966 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003967 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003968 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3969 return false;
3970 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003971 return false;
3972 }
Evan Cheng39623da2006-04-20 08:58:49 +00003973 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003974 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003975 return true;
3976}
3977
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003978/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3979/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3980/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003981static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003982 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003983 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003984
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003985 if (VT.is512BitVector())
3986 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00003987 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3988 "Unsupported vector type for unpckh");
3989
Craig Topper5a529e42013-01-18 06:44:29 +00003990 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003991 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003992 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003993
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003994 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3995 // FIXME: Need a better way to get rid of this, there's no latency difference
3996 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3997 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003998 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003999 return false;
4000
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004001 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4002 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004003 unsigned NumLanes = VT.getSizeInBits()/128;
4004 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004005
Craig Topper59235472013-08-06 07:23:12 +00004006 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4007 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4008 int BitI = Mask[l+i];
4009 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004010
4011 if (!isUndefOrEqual(BitI, j))
4012 return false;
4013 if (!isUndefOrEqual(BitI1, j))
4014 return false;
4015 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004016 }
David Greenea20244d2011-03-02 17:23:43 +00004017
Rafael Espindola15684b22009-04-24 12:40:33 +00004018 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004019}
4020
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004021/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4022/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4023/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004024static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004025 unsigned NumElts = VT.getVectorNumElements();
4026
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004027 if (VT.is512BitVector())
4028 return false;
4029
Craig Topper94438ba2011-12-16 08:06:31 +00004030 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4031 "Unsupported vector type for unpckh");
4032
Craig Topper5a529e42013-01-18 06:44:29 +00004033 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004034 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004035 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004036
Craig Topper94438ba2011-12-16 08:06:31 +00004037 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4038 // independently on 128-bit lanes.
4039 unsigned NumLanes = VT.getSizeInBits()/128;
4040 unsigned NumLaneElts = NumElts/NumLanes;
4041
Craig Topper59235472013-08-06 07:23:12 +00004042 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4043 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4044 int BitI = Mask[l+i];
4045 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004046 if (!isUndefOrEqual(BitI, j))
4047 return false;
4048 if (!isUndefOrEqual(BitI1, j))
4049 return false;
4050 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004051 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004052 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004053}
4054
Evan Cheng017dcc62006-04-21 01:05:10 +00004055/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4056/// specifies a shuffle of elements that is suitable for input to MOVSS,
4057/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004058static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004059 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004060 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004061 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004062 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004063
Craig Topperc612d792012-01-02 09:17:37 +00004064 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004065
Nate Begeman9008ca62009-04-27 18:41:29 +00004066 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004067 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004068
Craig Topperc612d792012-01-02 09:17:37 +00004069 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004070 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004071 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004072
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004073 return true;
4074}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004075
Craig Topper70b883b2011-11-28 10:14:51 +00004076/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004077/// as permutations between 128-bit chunks or halves. As an example: this
4078/// shuffle bellow:
4079/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4080/// The first half comes from the second half of V1 and the second half from the
4081/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004082static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004083 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004084 return false;
4085
4086 // The shuffle result is divided into half A and half B. In total the two
4087 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4088 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004089 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004090 bool MatchA = false, MatchB = false;
4091
4092 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004093 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004094 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4095 MatchA = true;
4096 break;
4097 }
4098 }
4099
4100 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004101 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004102 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4103 MatchB = true;
4104 break;
4105 }
4106 }
4107
4108 return MatchA && MatchB;
4109}
4110
Craig Topper70b883b2011-11-28 10:14:51 +00004111/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4112/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004113static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004114 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004115
Craig Topperc612d792012-01-02 09:17:37 +00004116 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004117
Craig Topperc612d792012-01-02 09:17:37 +00004118 unsigned FstHalf = 0, SndHalf = 0;
4119 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004120 if (SVOp->getMaskElt(i) > 0) {
4121 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4122 break;
4123 }
4124 }
Craig Topperc612d792012-01-02 09:17:37 +00004125 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004126 if (SVOp->getMaskElt(i) > 0) {
4127 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4128 break;
4129 }
4130 }
4131
4132 return (FstHalf | (SndHalf << 4));
4133}
4134
Craig Topperd36e1ef2013-08-15 08:38:25 +00004135// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004136static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004137 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4138 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004139 return false;
4140
Craig Topperd36e1ef2013-08-15 08:38:25 +00004141 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004142 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004143 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4144 for (unsigned i = 0; i != NumElts; ++i) {
4145 if (Mask[i] < 0)
4146 continue;
4147 Imm8 |= Mask[i] << (i*2);
4148 }
4149 return true;
4150 }
4151
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004152 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004153 SmallVector<int, 4> MaskVal(LaneSize, -1);
4154
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004155 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4156 for (unsigned i = 0; i != LaneSize; ++i) {
4157 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4158 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004159 if (Mask[i+l] < 0)
4160 continue;
4161 if (MaskVal[i] < 0) {
4162 MaskVal[i] = Mask[i+l] - l;
4163 Imm8 |= MaskVal[i] << (i*2);
4164 continue;
4165 }
4166 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004167 return false;
4168 }
4169 }
4170 return true;
4171}
4172
Craig Topper70b883b2011-11-28 10:14:51 +00004173/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004174/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4175/// Note that VPERMIL mask matching is different depending whether theunderlying
4176/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4177/// to the same elements of the low, but to the higher half of the source.
4178/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004179/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004180static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4181 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4182 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004183 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004184 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004185 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004186
Craig Topperc612d792012-01-02 09:17:37 +00004187 unsigned NumLanes = VT.getSizeInBits()/128;
4188 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004189 // 2 or 4 elements in one lane
4190
4191 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004192 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004193 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004194 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004195 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004196 if (symetricMaskRequired) {
4197 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4198 ExpectedMaskVal[i] = Mask[i+l] - l;
4199 continue;
4200 }
4201 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4202 return false;
4203 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004204 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004205 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004206 return true;
4207}
4208
Craig Topper5aaffa82012-02-19 02:53:47 +00004209/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004210/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004211/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004212static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004213 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004214 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004215 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004216
4217 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004218 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004219 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004220
Nate Begeman9008ca62009-04-27 18:41:29 +00004221 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004222 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004223
Craig Topperc612d792012-01-02 09:17:37 +00004224 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004225 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4226 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4227 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004228 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004229
Evan Cheng39623da2006-04-20 08:58:49 +00004230 return true;
4231}
4232
Evan Chengd9539472006-04-14 21:59:03 +00004233/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4234/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004235/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004236static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004237 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004238 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004239 return false;
4240
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004241 unsigned NumElems = VT.getVectorNumElements();
4242
Craig Topper5a529e42013-01-18 06:44:29 +00004243 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004244 (VT.is256BitVector() && NumElems != 8) ||
4245 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004246 return false;
4247
4248 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004249 for (unsigned i = 0; i != NumElems; i += 2)
4250 if (!isUndefOrEqual(Mask[i], i+1) ||
4251 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004252 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004253
4254 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004255}
4256
4257/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4258/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004259/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004260static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004261 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004262 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004263 return false;
4264
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004265 unsigned NumElems = VT.getVectorNumElements();
4266
Craig Topper5a529e42013-01-18 06:44:29 +00004267 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004268 (VT.is256BitVector() && NumElems != 8) ||
4269 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004270 return false;
4271
4272 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004273 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004274 if (!isUndefOrEqual(Mask[i], i) ||
4275 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004276 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004277
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004278 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004279}
4280
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004281/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4282/// specifies a shuffle of elements that is suitable for input to 256-bit
4283/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004284static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004285 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004286 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004287
Craig Topper7a9a28b2012-08-12 02:23:29 +00004288 unsigned NumElts = VT.getVectorNumElements();
4289 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004290 return false;
4291
Craig Topperc612d792012-01-02 09:17:37 +00004292 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004293 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004294 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004295 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004296 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004297 return false;
4298 return true;
4299}
4300
Evan Cheng0b457f02008-09-25 20:50:48 +00004301/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004302/// specifies a shuffle of elements that is suitable for input to 128-bit
4303/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004304static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004305 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004306 return false;
4307
Craig Topperc612d792012-01-02 09:17:37 +00004308 unsigned e = VT.getVectorNumElements() / 2;
4309 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004310 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004311 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004312 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004313 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004314 return false;
4315 return true;
4316}
4317
Elena Demikhovsky83952512013-07-31 11:35:14 +00004318/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004319/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004320/// suitable for instruction that extract 128 or 256 bit vectors
4321static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4322 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004323 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4324 return false;
4325
Elena Demikhovsky83952512013-07-31 11:35:14 +00004326 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004327 uint64_t Index =
4328 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4329
Craig Topper5a0910b2013-08-15 02:33:50 +00004330 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004331 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004332 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004333
4334 return Result;
4335}
4336
Elena Demikhovsky83952512013-07-31 11:35:14 +00004337/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004338/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004339/// insertion of 128 or 256-bit subvectors
4340static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4341 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004342 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4343 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004344 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004345 uint64_t Index =
4346 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4347
Craig Topper5a0910b2013-08-15 02:33:50 +00004348 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004349 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004350 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004351
4352 return Result;
4353}
4354
Elena Demikhovsky83952512013-07-31 11:35:14 +00004355bool X86::isVINSERT128Index(SDNode *N) {
4356 return isVINSERTIndex(N, 128);
4357}
4358
4359bool X86::isVINSERT256Index(SDNode *N) {
4360 return isVINSERTIndex(N, 256);
4361}
4362
4363bool X86::isVEXTRACT128Index(SDNode *N) {
4364 return isVEXTRACTIndex(N, 128);
4365}
4366
4367bool X86::isVEXTRACT256Index(SDNode *N) {
4368 return isVEXTRACTIndex(N, 256);
4369}
4370
Evan Cheng63d33002006-03-22 08:01:21 +00004371/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004372/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004373/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004374static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004375 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004376
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004377 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004378 "Unsupported vector type for PSHUF/SHUFP");
4379
4380 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4381 // independently on 128-bit lanes.
4382 unsigned NumElts = VT.getVectorNumElements();
4383 unsigned NumLanes = VT.getSizeInBits()/128;
4384 unsigned NumLaneElts = NumElts/NumLanes;
4385
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004386 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4387 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004388
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004389 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004390 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004391 for (unsigned i = 0; i != NumElts; ++i) {
4392 int Elt = N->getMaskElt(i);
4393 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004394 Elt &= NumLaneElts - 1;
4395 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004396 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004397 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004398
Evan Cheng63d33002006-03-22 08:01:21 +00004399 return Mask;
4400}
4401
Evan Cheng506d3df2006-03-29 23:07:14 +00004402/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004403/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004404static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004405 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004406
4407 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4408 "Unsupported vector type for PSHUFHW");
4409
4410 unsigned NumElts = VT.getVectorNumElements();
4411
Evan Cheng506d3df2006-03-29 23:07:14 +00004412 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004413 for (unsigned l = 0; l != NumElts; l += 8) {
4414 // 8 nodes per lane, but we only care about the last 4.
4415 for (unsigned i = 0; i < 4; ++i) {
4416 int Elt = N->getMaskElt(l+i+4);
4417 if (Elt < 0) continue;
4418 Elt &= 0x3; // only 2-bits.
4419 Mask |= Elt << (i * 2);
4420 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004421 }
Craig Topper6b28d352012-05-03 07:12:59 +00004422
Evan Cheng506d3df2006-03-29 23:07:14 +00004423 return Mask;
4424}
4425
4426/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004427/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004428static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004429 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004430
4431 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4432 "Unsupported vector type for PSHUFHW");
4433
4434 unsigned NumElts = VT.getVectorNumElements();
4435
Evan Cheng506d3df2006-03-29 23:07:14 +00004436 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004437 for (unsigned l = 0; l != NumElts; l += 8) {
4438 // 8 nodes per lane, but we only care about the first 4.
4439 for (unsigned i = 0; i < 4; ++i) {
4440 int Elt = N->getMaskElt(l+i);
4441 if (Elt < 0) continue;
4442 Elt &= 0x3; // only 2-bits
4443 Mask |= Elt << (i * 2);
4444 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004445 }
Craig Topper6b28d352012-05-03 07:12:59 +00004446
Evan Cheng506d3df2006-03-29 23:07:14 +00004447 return Mask;
4448}
4449
Nate Begemana09008b2009-10-19 02:17:23 +00004450/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4451/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004452static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004453 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004454 unsigned EltSize = VT.is512BitVector() ? 1 :
4455 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004456
Craig Topper0e2037b2012-01-20 05:53:00 +00004457 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004458 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004459 unsigned NumLaneElts = NumElts/NumLanes;
4460
4461 int Val = 0;
4462 unsigned i;
4463 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004464 Val = SVOp->getMaskElt(i);
4465 if (Val >= 0)
4466 break;
4467 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004468 if (Val >= (int)NumElts)
4469 Val -= NumElts - NumLaneElts;
4470
Eli Friedman63f8dde2011-07-25 21:36:45 +00004471 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004472 return (Val - i) * EltSize;
4473}
4474
Elena Demikhovsky83952512013-07-31 11:35:14 +00004475static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4476 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004477 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004478 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004479
4480 uint64_t Index =
4481 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4482
Craig Topper5a0910b2013-08-15 02:33:50 +00004483 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004484 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004485
Elena Demikhovsky83952512013-07-31 11:35:14 +00004486 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004487 return Index / NumElemsPerChunk;
4488}
4489
Elena Demikhovsky83952512013-07-31 11:35:14 +00004490static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4491 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004492 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004493 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004494
4495 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004496 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004497
Craig Topper5a0910b2013-08-15 02:33:50 +00004498 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004499 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004500
Elena Demikhovsky83952512013-07-31 11:35:14 +00004501 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004502 return Index / NumElemsPerChunk;
4503}
4504
Elena Demikhovsky83952512013-07-31 11:35:14 +00004505/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4506/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4507/// and VINSERTI128 instructions.
4508unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4509 return getExtractVEXTRACTImmediate(N, 128);
4510}
4511
4512/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4513/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4514/// and VINSERTI64x4 instructions.
4515unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4516 return getExtractVEXTRACTImmediate(N, 256);
4517}
4518
4519/// getInsertVINSERT128Immediate - Return the appropriate immediate
4520/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4521/// and VINSERTI128 instructions.
4522unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4523 return getInsertVINSERTImmediate(N, 128);
4524}
4525
4526/// getInsertVINSERT256Immediate - Return the appropriate immediate
4527/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4528/// and VINSERTI64x4 instructions.
4529unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4530 return getInsertVINSERTImmediate(N, 256);
4531}
4532
Evan Cheng37b73872009-07-30 08:33:02 +00004533/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4534/// constant +0.0.
4535bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004536 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4537 return CN->isNullValue();
4538 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4539 return CFP->getValueAPF().isPosZero();
4540 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004541}
4542
Nate Begeman9008ca62009-04-27 18:41:29 +00004543/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4544/// their permute mask.
4545static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4546 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004547 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004548 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004549 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004550
Nate Begeman5a5ca152009-04-29 05:20:52 +00004551 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004552 int Idx = SVOp->getMaskElt(i);
4553 if (Idx >= 0) {
4554 if (Idx < (int)NumElems)
4555 Idx += NumElems;
4556 else
4557 Idx -= NumElems;
4558 }
4559 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004560 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004561 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004562 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004563}
4564
Evan Cheng533a0aa2006-04-19 20:35:22 +00004565/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4566/// match movhlps. The lower half elements should come from upper half of
4567/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004568/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004569static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004570 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004571 return false;
4572 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004573 return false;
4574 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004575 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004576 return false;
4577 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004578 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004579 return false;
4580 return true;
4581}
4582
Evan Cheng5ced1d82006-04-06 23:23:56 +00004583/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004584/// is promoted to a vector. It also returns the LoadSDNode by reference if
4585/// required.
4586static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004587 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4588 return false;
4589 N = N->getOperand(0).getNode();
4590 if (!ISD::isNON_EXTLoad(N))
4591 return false;
4592 if (LD)
4593 *LD = cast<LoadSDNode>(N);
4594 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004595}
4596
Dan Gohman65fd6562011-11-03 21:49:52 +00004597// Test whether the given value is a vector value which will be legalized
4598// into a load.
4599static bool WillBeConstantPoolLoad(SDNode *N) {
4600 if (N->getOpcode() != ISD::BUILD_VECTOR)
4601 return false;
4602
4603 // Check for any non-constant elements.
4604 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4605 switch (N->getOperand(i).getNode()->getOpcode()) {
4606 case ISD::UNDEF:
4607 case ISD::ConstantFP:
4608 case ISD::Constant:
4609 break;
4610 default:
4611 return false;
4612 }
4613
4614 // Vectors of all-zeros and all-ones are materialized with special
4615 // instructions rather than being loaded.
4616 return !ISD::isBuildVectorAllZeros(N) &&
4617 !ISD::isBuildVectorAllOnes(N);
4618}
4619
Evan Cheng533a0aa2006-04-19 20:35:22 +00004620/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4621/// match movlp{s|d}. The lower half elements should come from lower half of
4622/// V1 (and in order), and the upper half elements should come from the upper
4623/// half of V2 (and in order). And since V1 will become the source of the
4624/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004625static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004626 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004627 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004628 return false;
4629
Evan Cheng466685d2006-10-09 20:57:25 +00004630 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004631 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004632 // Is V2 is a vector load, don't do this transformation. We will try to use
4633 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004634 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004635 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004636
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004637 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004638
Evan Cheng533a0aa2006-04-19 20:35:22 +00004639 if (NumElems != 2 && NumElems != 4)
4640 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004641 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004642 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004643 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004644 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004645 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004646 return false;
4647 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004648}
4649
Evan Cheng39623da2006-04-20 08:58:49 +00004650/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4651/// all the same.
4652static bool isSplatVector(SDNode *N) {
4653 if (N->getOpcode() != ISD::BUILD_VECTOR)
4654 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004655
Dan Gohman475871a2008-07-27 21:46:04 +00004656 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004657 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4658 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004659 return false;
4660 return true;
4661}
4662
Evan Cheng213d2cf2007-05-17 18:45:50 +00004663/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004664/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004665/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004666static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004667 SDValue V1 = N->getOperand(0);
4668 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004669 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4670 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004671 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004672 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004673 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004674 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4675 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004676 if (Opc != ISD::BUILD_VECTOR ||
4677 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004678 return false;
4679 } else if (Idx >= 0) {
4680 unsigned Opc = V1.getOpcode();
4681 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4682 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004683 if (Opc != ISD::BUILD_VECTOR ||
4684 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004685 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004686 }
4687 }
4688 return true;
4689}
4690
4691/// getZeroVector - Returns a vector of specified type with all zero elements.
4692///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004693static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004694 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004695 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004696
Dale Johannesen0488fb62010-09-30 23:57:10 +00004697 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004698 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004699 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004700 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004701 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004702 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4703 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4704 } else { // SSE1
4705 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4706 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4707 }
Craig Topper5a529e42013-01-18 06:44:29 +00004708 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004709 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004710 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4711 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004712 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4713 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004714 } else {
4715 // 256-bit logic and arithmetic instructions in AVX are all
4716 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4717 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4718 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004719 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4720 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004721 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004722 } else if (VT.is512BitVector()) { // AVX-512
4723 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4724 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4725 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4726 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004727 } else
4728 llvm_unreachable("Unexpected vector type");
4729
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004730 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004731}
4732
Chris Lattner8a594482007-11-25 00:24:49 +00004733/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004734/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4735/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4736/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004737static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004738 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004739 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004740
Owen Anderson825b72b2009-08-11 20:47:22 +00004741 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004742 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004743 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004744 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004745 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004746 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4747 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004748 } else { // AVX
4749 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004750 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004751 }
Craig Topper5a529e42013-01-18 06:44:29 +00004752 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004753 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004754 } else
4755 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004756
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004757 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004758}
4759
Evan Cheng39623da2006-04-20 08:58:49 +00004760/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4761/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004762static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004763 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004764 if (Mask[i] > (int)NumElems) {
4765 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004766 }
Evan Cheng39623da2006-04-20 08:58:49 +00004767 }
Evan Cheng39623da2006-04-20 08:58:49 +00004768}
4769
Evan Cheng017dcc62006-04-21 01:05:10 +00004770/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4771/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004772static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004773 SDValue V2) {
4774 unsigned NumElems = VT.getVectorNumElements();
4775 SmallVector<int, 8> Mask;
4776 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004777 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004778 Mask.push_back(i);
4779 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004780}
4781
Nate Begeman9008ca62009-04-27 18:41:29 +00004782/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004783static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004784 SDValue V2) {
4785 unsigned NumElems = VT.getVectorNumElements();
4786 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004787 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004788 Mask.push_back(i);
4789 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004790 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004791 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004792}
4793
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004794/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004795static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004796 SDValue V2) {
4797 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004798 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004799 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004800 Mask.push_back(i + Half);
4801 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004802 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004803 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004804}
4805
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004806// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004807// a generic shuffle instruction because the target has no such instructions.
4808// Generate shuffles which repeat i16 and i8 several times until they can be
4809// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004810static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004811 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004812 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004813 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004814
Nate Begeman9008ca62009-04-27 18:41:29 +00004815 while (NumElems > 4) {
4816 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004817 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004818 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004819 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004820 EltNo -= NumElems/2;
4821 }
4822 NumElems >>= 1;
4823 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004824 return V;
4825}
Eric Christopherfd179292009-08-27 18:07:15 +00004826
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004827/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4828static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004829 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004830 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004831
Craig Topper5a529e42013-01-18 06:44:29 +00004832 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004833 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004834 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004835 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4836 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004837 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004838 // To use VPERMILPS to splat scalars, the second half of indicies must
4839 // refer to the higher part, which is a duplication of the lower one,
4840 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004841 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4842 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004843
4844 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4845 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4846 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004847 } else
4848 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004849
4850 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4851}
4852
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004853/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004854static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004855 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004856 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004857 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004858
4859 int EltNo = SV->getSplatIndex();
4860 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004861 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004862
Craig Topper5a529e42013-01-18 06:44:29 +00004863 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4864 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004865
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004866 // Extract the 128-bit part containing the splat element and update
4867 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004868 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004869 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4870 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004871 EltNo -= NumElems/2;
4872 }
4873
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004874 // All i16 and i8 vector types can't be used directly by a generic shuffle
4875 // instruction because the target has no such instruction. Generate shuffles
4876 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004877 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004878 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004879 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004880 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004881
4882 // Recreate the 256-bit vector and place the same 128-bit vector
4883 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004884 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004885 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004886 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004887 }
4888
4889 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004890}
4891
Evan Chengba05f722006-04-21 23:03:30 +00004892/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004893/// vector of zero or undef vector. This produces a shuffle where the low
4894/// element of V2 is swizzled into the zero/undef vector, landing at element
4895/// 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 +00004896static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004897 bool IsZero,
4898 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004899 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004900 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004901 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004902 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004903 unsigned NumElems = VT.getVectorNumElements();
4904 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004905 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004906 // If this is the insertion idx, put the low elt of V2 here.
4907 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004908 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004909}
4910
Craig Toppera1ffc682012-03-20 06:42:26 +00004911/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4912/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004913/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004914static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004915 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004916 unsigned NumElems = VT.getVectorNumElements();
4917 SDValue ImmN;
4918
Craig Topper89f4e662012-03-20 07:17:59 +00004919 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004920 switch(N->getOpcode()) {
4921 case X86ISD::SHUFP:
4922 ImmN = N->getOperand(N->getNumOperands()-1);
4923 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4924 break;
4925 case X86ISD::UNPCKH:
4926 DecodeUNPCKHMask(VT, Mask);
4927 break;
4928 case X86ISD::UNPCKL:
4929 DecodeUNPCKLMask(VT, Mask);
4930 break;
4931 case X86ISD::MOVHLPS:
4932 DecodeMOVHLPSMask(NumElems, Mask);
4933 break;
4934 case X86ISD::MOVLHPS:
4935 DecodeMOVLHPSMask(NumElems, Mask);
4936 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004937 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004938 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004939 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004940 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004941 case X86ISD::PSHUFD:
4942 case X86ISD::VPERMILP:
4943 ImmN = N->getOperand(N->getNumOperands()-1);
4944 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004945 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004946 break;
4947 case X86ISD::PSHUFHW:
4948 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004949 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004950 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004951 break;
4952 case X86ISD::PSHUFLW:
4953 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004954 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004955 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004956 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004957 case X86ISD::VPERMI:
4958 ImmN = N->getOperand(N->getNumOperands()-1);
4959 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4960 IsUnary = true;
4961 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004962 case X86ISD::MOVSS:
4963 case X86ISD::MOVSD: {
4964 // The index 0 always comes from the first element of the second source,
4965 // this is why MOVSS and MOVSD are used in the first place. The other
4966 // elements come from the other positions of the first source vector
4967 Mask.push_back(NumElems);
4968 for (unsigned i = 1; i != NumElems; ++i) {
4969 Mask.push_back(i);
4970 }
4971 break;
4972 }
4973 case X86ISD::VPERM2X128:
4974 ImmN = N->getOperand(N->getNumOperands()-1);
4975 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004976 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004977 break;
4978 case X86ISD::MOVDDUP:
4979 case X86ISD::MOVLHPD:
4980 case X86ISD::MOVLPD:
4981 case X86ISD::MOVLPS:
4982 case X86ISD::MOVSHDUP:
4983 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004984 // Not yet implemented
4985 return false;
4986 default: llvm_unreachable("unknown target shuffle node");
4987 }
4988
4989 return true;
4990}
4991
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004992/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4993/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004994static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004995 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004996 if (Depth == 6)
4997 return SDValue(); // Limit search depth.
4998
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004999 SDValue V = SDValue(N, 0);
5000 EVT VT = V.getValueType();
5001 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005002
5003 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5004 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005005 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005006
Craig Topper3d092db2012-03-21 02:14:01 +00005007 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005008 return DAG.getUNDEF(VT.getVectorElementType());
5009
Craig Topperd156dc12012-02-06 07:17:51 +00005010 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005011 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5012 : SV->getOperand(1);
5013 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005014 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005015
5016 // Recurse into target specific vector shuffles to find scalars.
5017 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005018 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005019 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005020 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005021 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005022
Craig Topperd978c542012-05-06 19:46:21 +00005023 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005024 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005025
Craig Topper3d092db2012-03-21 02:14:01 +00005026 int Elt = ShuffleMask[Index];
5027 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005028 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005029
Craig Topper3d092db2012-03-21 02:14:01 +00005030 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005031 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005032 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005033 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005034 }
5035
5036 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005037 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005038 V = V.getOperand(0);
5039 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005040 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005041
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005042 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005043 return SDValue();
5044 }
5045
5046 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5047 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005048 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005049
5050 if (V.getOpcode() == ISD::BUILD_VECTOR)
5051 return V.getOperand(Index);
5052
5053 return SDValue();
5054}
5055
5056/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5057/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005058/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005059/// We count undefs as zeros until PreferredNum is reached.
5060static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5061 unsigned NumElems, bool ZerosFromLeft,
5062 SelectionDAG &DAG,
5063 unsigned PreferredNum = -1U) {
5064 unsigned NumZeros = 0;
5065 for (unsigned i = 0; i != NumElems; ++i) {
5066 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005067 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005068 if (!Elt.getNode())
5069 break;
5070
5071 if (X86::isZeroNode(Elt))
5072 ++NumZeros;
5073 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5074 NumZeros = std::min(NumZeros + 1, PreferredNum);
5075 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005076 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005077 }
5078
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005079 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005080}
5081
Craig Topper3d092db2012-03-21 02:14:01 +00005082/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5083/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005084/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5085static
Craig Topper3d092db2012-03-21 02:14:01 +00005086bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5087 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5088 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005089 bool SeenV1 = false;
5090 bool SeenV2 = false;
5091
Craig Topper3d092db2012-03-21 02:14:01 +00005092 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005093 int Idx = SVOp->getMaskElt(i);
5094 // Ignore undef indicies
5095 if (Idx < 0)
5096 continue;
5097
Craig Topper3d092db2012-03-21 02:14:01 +00005098 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005099 SeenV1 = true;
5100 else
5101 SeenV2 = true;
5102
5103 // Only accept consecutive elements from the same vector
5104 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5105 return false;
5106 }
5107
5108 OpNum = SeenV1 ? 0 : 1;
5109 return true;
5110}
5111
5112/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5113/// logical left shift of a vector.
5114static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5115 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005116 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005117 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005118 unsigned NumZeros = getNumOfConsecutiveZeros(
5119 SVOp, NumElems, false /* check zeros from right */, DAG,
5120 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005121 unsigned OpSrc;
5122
5123 if (!NumZeros)
5124 return false;
5125
5126 // Considering the elements in the mask that are not consecutive zeros,
5127 // check if they consecutively come from only one of the source vectors.
5128 //
5129 // V1 = {X, A, B, C} 0
5130 // \ \ \ /
5131 // vector_shuffle V1, V2 <1, 2, 3, X>
5132 //
5133 if (!isShuffleMaskConsecutive(SVOp,
5134 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005135 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005136 NumZeros, // Where to start looking in the src vector
5137 NumElems, // Number of elements in vector
5138 OpSrc)) // Which source operand ?
5139 return false;
5140
5141 isLeft = false;
5142 ShAmt = NumZeros;
5143 ShVal = SVOp->getOperand(OpSrc);
5144 return true;
5145}
5146
5147/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5148/// logical left shift of a vector.
5149static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5150 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005151 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005152 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005153 unsigned NumZeros = getNumOfConsecutiveZeros(
5154 SVOp, NumElems, true /* check zeros from left */, DAG,
5155 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005156 unsigned OpSrc;
5157
5158 if (!NumZeros)
5159 return false;
5160
5161 // Considering the elements in the mask that are not consecutive zeros,
5162 // check if they consecutively come from only one of the source vectors.
5163 //
5164 // 0 { A, B, X, X } = V2
5165 // / \ / /
5166 // vector_shuffle V1, V2 <X, X, 4, 5>
5167 //
5168 if (!isShuffleMaskConsecutive(SVOp,
5169 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005170 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005171 0, // Where to start looking in the src vector
5172 NumElems, // Number of elements in vector
5173 OpSrc)) // Which source operand ?
5174 return false;
5175
5176 isLeft = true;
5177 ShAmt = NumZeros;
5178 ShVal = SVOp->getOperand(OpSrc);
5179 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005180}
5181
5182/// isVectorShift - Returns true if the shuffle can be implemented as a
5183/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005184static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005185 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005186 // Although the logic below support any bitwidth size, there are no
5187 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005188 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005189 return false;
5190
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005191 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5192 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5193 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005194
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005195 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005196}
5197
Evan Chengc78d3b42006-04-24 18:01:45 +00005198/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5199///
Dan Gohman475871a2008-07-27 21:46:04 +00005200static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005201 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005202 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005203 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005204 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005205 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005206 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005207
Andrew Trickac6d9be2013-05-25 02:42:55 +00005208 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005209 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005210 bool First = true;
5211 for (unsigned i = 0; i < 16; ++i) {
5212 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5213 if (ThisIsNonZero && First) {
5214 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005215 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005216 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005217 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005218 First = false;
5219 }
5220
5221 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005222 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005223 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5224 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005225 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005226 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005227 }
5228 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005229 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5230 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5231 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005232 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005233 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005234 } else
5235 ThisElt = LastElt;
5236
Gabor Greifba36cb52008-08-28 21:40:38 +00005237 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005238 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005239 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005240 }
5241 }
5242
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005243 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005244}
5245
Bill Wendlinga348c562007-03-22 18:42:45 +00005246/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005247///
Dan Gohman475871a2008-07-27 21:46:04 +00005248static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005249 unsigned NumNonZero, unsigned NumZero,
5250 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005251 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005252 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005253 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005254 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005255
Andrew Trickac6d9be2013-05-25 02:42:55 +00005256 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005257 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005258 bool First = true;
5259 for (unsigned i = 0; i < 8; ++i) {
5260 bool isNonZero = (NonZeros & (1 << i)) != 0;
5261 if (isNonZero) {
5262 if (First) {
5263 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005264 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005265 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005266 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005267 First = false;
5268 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005269 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005270 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005271 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005272 }
5273 }
5274
5275 return V;
5276}
5277
Evan Chengf26ffe92008-05-29 08:22:04 +00005278/// getVShift - Return a vector logical shift node.
5279///
Owen Andersone50ed302009-08-10 22:56:29 +00005280static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005281 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005282 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005283 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005284 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005285 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005286 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5287 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005288 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005289 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005290 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005291}
5292
Craig Topperff79bc62013-08-18 08:53:01 +00005293static SDValue
5294LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005295
Evan Chengc3630942009-12-09 21:00:30 +00005296 // Check if the scalar load can be widened into a vector load. And if
5297 // the address is "base + cst" see if the cst can be "absorbed" into
5298 // the shuffle mask.
5299 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5300 SDValue Ptr = LD->getBasePtr();
5301 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5302 return SDValue();
5303 EVT PVT = LD->getValueType(0);
5304 if (PVT != MVT::i32 && PVT != MVT::f32)
5305 return SDValue();
5306
5307 int FI = -1;
5308 int64_t Offset = 0;
5309 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5310 FI = FINode->getIndex();
5311 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005312 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005313 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5314 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5315 Offset = Ptr.getConstantOperandVal(1);
5316 Ptr = Ptr.getOperand(0);
5317 } else {
5318 return SDValue();
5319 }
5320
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005321 // FIXME: 256-bit vector instructions don't require a strict alignment,
5322 // improve this code to support it better.
5323 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005324 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005325 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005326 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005327 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005328 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005329 // Can't change the alignment. FIXME: It's possible to compute
5330 // the exact stack offset and reference FI + adjust offset instead.
5331 // If someone *really* cares about this. That's the way to implement it.
5332 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005333 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005334 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005335 }
5336 }
5337
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005338 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005339 // Ptr + (Offset & ~15).
5340 if (Offset < 0)
5341 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005342 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005343 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005344 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005345 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005346 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005347 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5348
5349 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005350 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005351
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005352 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5353 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005354 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005355 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005356
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005357 SmallVector<int, 8> Mask;
5358 for (unsigned i = 0; i != NumElems; ++i)
5359 Mask.push_back(EltNo);
5360
Craig Toppercc3000632012-01-30 07:50:31 +00005361 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005362 }
5363
5364 return SDValue();
5365}
5366
Michael J. Spencerec38de22010-10-10 22:04:20 +00005367/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5368/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005369/// load which has the same value as a build_vector whose operands are 'elts'.
5370///
5371/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005372///
Nate Begeman1449f292010-03-24 22:19:06 +00005373/// FIXME: we'd also like to handle the case where the last elements are zero
5374/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5375/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005376static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005377 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005378 EVT EltVT = VT.getVectorElementType();
5379 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005380
Nate Begemanfdea31a2010-03-24 20:49:50 +00005381 LoadSDNode *LDBase = NULL;
5382 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005383
Nate Begeman1449f292010-03-24 22:19:06 +00005384 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005385 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005386 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005387 for (unsigned i = 0; i < NumElems; ++i) {
5388 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005389
Nate Begemanfdea31a2010-03-24 20:49:50 +00005390 if (!Elt.getNode() ||
5391 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5392 return SDValue();
5393 if (!LDBase) {
5394 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5395 return SDValue();
5396 LDBase = cast<LoadSDNode>(Elt.getNode());
5397 LastLoadedElt = i;
5398 continue;
5399 }
5400 if (Elt.getOpcode() == ISD::UNDEF)
5401 continue;
5402
5403 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5404 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5405 return SDValue();
5406 LastLoadedElt = i;
5407 }
Nate Begeman1449f292010-03-24 22:19:06 +00005408
5409 // If we have found an entire vector of loads and undefs, then return a large
5410 // load of the entire vector width starting at the base pointer. If we found
5411 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005412 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005413 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005414 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005415 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5416 LDBase->getPointerInfo(),
5417 LDBase->isVolatile(), LDBase->isNonTemporal(),
5418 LDBase->isInvariant(), 0);
5419 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5420 LDBase->getPointerInfo(),
5421 LDBase->isVolatile(), LDBase->isNonTemporal(),
5422 LDBase->isInvariant(), LDBase->getAlignment());
5423
5424 if (LDBase->hasAnyUseOfValue(1)) {
5425 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5426 SDValue(LDBase, 1),
5427 SDValue(NewLd.getNode(), 1));
5428 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5429 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5430 SDValue(NewLd.getNode(), 1));
5431 }
5432
5433 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005434 }
5435 if (NumElems == 4 && LastLoadedElt == 1 &&
5436 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005437 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5438 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005439 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005440 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5441 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005442 LDBase->getPointerInfo(),
5443 LDBase->getAlignment(),
5444 false/*isVolatile*/, true/*ReadMem*/,
5445 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005446
5447 // Make sure the newly-created LOAD is in the same position as LDBase in
5448 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5449 // update uses of LDBase's output chain to use the TokenFactor.
5450 if (LDBase->hasAnyUseOfValue(1)) {
5451 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5452 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5453 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5454 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5455 SDValue(ResNode.getNode(), 1));
5456 }
5457
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005458 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005459 }
5460 return SDValue();
5461}
5462
Nadav Rotem9d68b062012-04-08 12:54:54 +00005463/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5464/// to generate a splat value for the following cases:
5465/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005466/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005467/// a scalar load, or a constant.
5468/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005469/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005470static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5471 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005472 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005473 return SDValue();
5474
Craig Topper5a0910b2013-08-15 02:33:50 +00005475 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005476 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005477
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005478 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005479 "Unsupported vector type for broadcast.");
5480
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005481 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005482 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005483
Nadav Rotem9d68b062012-04-08 12:54:54 +00005484 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005485 default:
5486 // Unknown pattern found.
5487 return SDValue();
5488
5489 case ISD::BUILD_VECTOR: {
5490 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005491 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005492 return SDValue();
5493
Nadav Rotem9d68b062012-04-08 12:54:54 +00005494 Ld = Op.getOperand(0);
5495 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5496 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005497
5498 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005499 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005500 // Constants may have multiple users.
5501 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005502 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005503 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005504 }
5505
5506 case ISD::VECTOR_SHUFFLE: {
5507 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5508
5509 // Shuffles must have a splat mask where the first element is
5510 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005511 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005512 return SDValue();
5513
5514 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005515 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005516 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5517
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005518 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005519 return SDValue();
5520
5521 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005522 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005523 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5524 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5525 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005526
5527 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005528 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005529 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005530
5531 // The scalar_to_vector node and the suspected
5532 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005533 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005534
5535 // AVX-512 has register version of the broadcast
5536 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5537 Ld.getValueType().getSizeInBits() >= 32;
5538 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5539 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005540 return SDValue();
5541 break;
5542 }
5543 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005544
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005545 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005546
5547 // Handle the broadcasting a single constant scalar from the constant pool
5548 // into a vector. On Sandybridge it is still better to load a constant vector
5549 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005550 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005551 EVT CVT = Ld.getValueType();
5552 assert(!CVT.isVector() && "Must not broadcast a vector type");
5553 unsigned ScalarSize = CVT.getSizeInBits();
5554
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005555 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005556 const Constant *C = 0;
5557 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5558 C = CI->getConstantIntValue();
5559 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5560 C = CF->getConstantFPValue();
5561
5562 assert(C && "Invalid constant type");
5563
Craig Topper158ec072013-08-14 07:34:43 +00005564 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5565 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005566 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005567 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005568 MachinePointerInfo::getConstantPool(),
5569 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005570
Nadav Rotem9d68b062012-04-08 12:54:54 +00005571 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5572 }
5573 }
5574
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005575 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005576 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5577
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005578 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005579 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005580 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005581 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5582
5583 // The scalar source must be a normal load.
5584 if (!IsLoad)
5585 return SDValue();
5586
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005587 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005588 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005589
Craig Toppera9376332012-01-10 08:23:59 +00005590 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005591 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005592 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005593 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005594 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005595 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005596
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005597 // Unsupported broadcast.
5598 return SDValue();
5599}
5600
Craig Topper158ec072013-08-14 07:34:43 +00005601static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005602 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005603
5604 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005605 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5606 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005607 return SDValue();
5608
Andrew Trickac6d9be2013-05-25 02:42:55 +00005609 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005610 unsigned NumElems = Op.getNumOperands();
5611
5612 SDValue VecIn1;
5613 SDValue VecIn2;
5614 SmallVector<unsigned, 4> InsertIndices;
5615 SmallVector<int, 8> Mask(NumElems, -1);
5616
5617 for (unsigned i = 0; i != NumElems; ++i) {
5618 unsigned Opc = Op.getOperand(i).getOpcode();
5619
5620 if (Opc == ISD::UNDEF)
5621 continue;
5622
5623 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5624 // Quit if more than 1 elements need inserting.
5625 if (InsertIndices.size() > 1)
5626 return SDValue();
5627
5628 InsertIndices.push_back(i);
5629 continue;
5630 }
5631
5632 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5633 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5634
5635 // Quit if extracted from vector of different type.
5636 if (ExtractedFromVec.getValueType() != VT)
5637 return SDValue();
5638
5639 // Quit if non-constant index.
5640 if (!isa<ConstantSDNode>(ExtIdx))
5641 return SDValue();
5642
5643 if (VecIn1.getNode() == 0)
5644 VecIn1 = ExtractedFromVec;
5645 else if (VecIn1 != ExtractedFromVec) {
5646 if (VecIn2.getNode() == 0)
5647 VecIn2 = ExtractedFromVec;
5648 else if (VecIn2 != ExtractedFromVec)
5649 // Quit if more than 2 vectors to shuffle
5650 return SDValue();
5651 }
5652
5653 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5654
5655 if (ExtractedFromVec == VecIn1)
5656 Mask[i] = Idx;
5657 else if (ExtractedFromVec == VecIn2)
5658 Mask[i] = Idx + NumElems;
5659 }
5660
5661 if (VecIn1.getNode() == 0)
5662 return SDValue();
5663
5664 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5665 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5666 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5667 unsigned Idx = InsertIndices[i];
5668 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5669 DAG.getIntPtrConstant(Idx));
5670 }
5671
5672 return NV;
5673}
5674
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005675// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5676SDValue
5677X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5678
Craig Topper5a0910b2013-08-15 02:33:50 +00005679 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005680 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5681 "Unexpected type in LowerBUILD_VECTORvXi1!");
5682
5683 SDLoc dl(Op);
5684 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5685 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5686 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5687 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5688 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5689 Ops, VT.getVectorNumElements());
5690 }
5691
5692 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5693 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5694 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5695 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5696 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5697 Ops, VT.getVectorNumElements());
5698 }
5699
5700 bool AllContants = true;
5701 uint64_t Immediate = 0;
5702 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5703 SDValue In = Op.getOperand(idx);
5704 if (In.getOpcode() == ISD::UNDEF)
5705 continue;
5706 if (!isa<ConstantSDNode>(In)) {
5707 AllContants = false;
5708 break;
5709 }
5710 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005711 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005712 }
5713
5714 if (AllContants) {
5715 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5716 DAG.getConstant(Immediate, MVT::i16));
5717 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005718 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005719 }
5720
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005721 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005722 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005723 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5724 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5725 llvm_unreachable("Unsupported predicate operation");
5726 }
5727
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005728 SDValue EFLAGS, X86CC;
5729 if (In.getOpcode() == ISD::SETCC) {
5730 SDValue Op0 = In.getOperand(0);
5731 SDValue Op1 = In.getOperand(1);
5732 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5733 bool isFP = Op1.getValueType().isFloatingPoint();
5734 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5735
5736 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5737
5738 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5739 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5740 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5741 } else if (In.getOpcode() == X86ISD::SETCC) {
5742 X86CC = In.getOperand(0);
5743 EFLAGS = In.getOperand(1);
5744 } else {
5745 // The algorithm:
5746 // Bit1 = In & 0x1
5747 // if (Bit1 != 0)
5748 // ZF = 0
5749 // else
5750 // ZF = 1
5751 // if (ZF == 0)
5752 // res = allOnes ### CMOVNE -1, %res
5753 // else
5754 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005755 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005756 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5757 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5758 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5759 }
5760
5761 if (VT == MVT::v16i1) {
5762 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5763 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5764 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5765 Cst0, Cst1, X86CC, EFLAGS);
5766 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5767 }
5768
5769 if (VT == MVT::v8i1) {
5770 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5771 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5772 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5773 Cst0, Cst1, X86CC, EFLAGS);
5774 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5775 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5776 }
5777 llvm_unreachable("Unsupported predicate operation");
5778}
5779
Michael Liaofacace82012-10-19 17:15:18 +00005780SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005781X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005782 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005783
Craig Topper5a0910b2013-08-15 02:33:50 +00005784 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005785 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005786 unsigned NumElems = Op.getNumOperands();
5787
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005788 // Generate vectors for predicate vectors.
5789 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5790 return LowerBUILD_VECTORvXi1(Op, DAG);
5791
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005792 // Vectors containing all zeros can be matched by pxor and xorps later
5793 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5794 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5795 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005796 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005797 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005798
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005799 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005800 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005801
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005802 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005803 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5804 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005805 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005806 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005807 return Op;
5808
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005809 if (!VT.is512BitVector())
5810 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005811 }
5812
Craig Topper158ec072013-08-14 07:34:43 +00005813 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005814 if (Broadcast.getNode())
5815 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005816
Owen Andersone50ed302009-08-10 22:56:29 +00005817 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005818
Evan Cheng0db9fe62006-04-25 20:13:52 +00005819 unsigned NumZero = 0;
5820 unsigned NumNonZero = 0;
5821 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005822 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005823 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005824 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005825 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005826 if (Elt.getOpcode() == ISD::UNDEF)
5827 continue;
5828 Values.insert(Elt);
5829 if (Elt.getOpcode() != ISD::Constant &&
5830 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005831 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005832 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005833 NumZero++;
5834 else {
5835 NonZeros |= (1 << i);
5836 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005837 }
5838 }
5839
Chris Lattner97a2a562010-08-26 05:24:29 +00005840 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5841 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005842 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005843
Chris Lattner67f453a2008-03-09 05:42:06 +00005844 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005845 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005846 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005847 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005848
Chris Lattner62098042008-03-09 01:05:04 +00005849 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5850 // the value are obviously zero, truncate the value to i32 and do the
5851 // insertion that way. Only do this if the value is non-constant or if the
5852 // value is a constant being inserted into element 0. It is cheaper to do
5853 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005854 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005855 (!IsAllConstants || Idx == 0)) {
5856 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005857 // Handle SSE only.
5858 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5859 EVT VecVT = MVT::v4i32;
5860 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005861
Chris Lattner62098042008-03-09 01:05:04 +00005862 // Truncate the value (which may itself be a constant) to i32, and
5863 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005864 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005865 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005866 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005867
Chris Lattner62098042008-03-09 01:05:04 +00005868 // Now we have our 32-bit value zero extended in the low element of
5869 // a vector. If Idx != 0, swizzle it into place.
5870 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005871 SmallVector<int, 4> Mask;
5872 Mask.push_back(Idx);
5873 for (unsigned i = 1; i != VecElts; ++i)
5874 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005875 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005876 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005877 }
Craig Topper07a27622012-01-22 03:07:48 +00005878 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005879 }
5880 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005881
Chris Lattner19f79692008-03-08 22:59:52 +00005882 // If we have a constant or non-constant insertion into the low element of
5883 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5884 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005885 // depending on what the source datatype is.
5886 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005887 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005888 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005889
5890 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005891 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005892 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005893 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005894 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5895 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005896 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005897 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005898 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5899 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005900 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005901 }
5902
5903 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005904 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005905 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005906 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005907 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005908 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005909 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005910 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005911 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005912 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005913 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005914 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005915 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005916
5917 // Is it a vector logical left shift?
5918 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005919 X86::isZeroNode(Op.getOperand(0)) &&
5920 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005921 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005922 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005923 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005924 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005925 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005926 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005927
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005928 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005929 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005930
Chris Lattner19f79692008-03-08 22:59:52 +00005931 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5932 // is a non-constant being inserted into an element other than the low one,
5933 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5934 // movd/movss) to move this into the low element, then shuffle it into
5935 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005936 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005937 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005938
Evan Cheng0db9fe62006-04-25 20:13:52 +00005939 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005940 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005941 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005942 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005943 MaskVec.push_back(i == Idx ? 0 : 1);
5944 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005945 }
5946 }
5947
Chris Lattner67f453a2008-03-09 05:42:06 +00005948 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005949 if (Values.size() == 1) {
5950 if (EVTBits == 32) {
5951 // Instead of a shuffle like this:
5952 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5953 // Check if it's possible to issue this instead.
5954 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005955 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005956 SDValue Item = Op.getOperand(Idx);
5957 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5958 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5959 }
Dan Gohman475871a2008-07-27 21:46:04 +00005960 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005962
Dan Gohmana3941172007-07-24 22:55:08 +00005963 // A vector full of immediates; various special cases are already
5964 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005965 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005966 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005967
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005968 // For AVX-length vectors, build the individual 128-bit pieces and use
5969 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005970 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005971 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005972 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005973 V.push_back(Op.getOperand(i));
5974
5975 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5976
5977 // Build both the lower and upper subvector.
5978 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5979 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5980 NumElems/2);
5981
5982 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005983 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005984 }
5985
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005986 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005987 if (EVTBits == 64) {
5988 if (NumNonZero == 1) {
5989 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005990 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005991 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005992 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005993 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005994 }
Dan Gohman475871a2008-07-27 21:46:04 +00005995 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005996 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005997
5998 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005999 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006000 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006001 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006002 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006003 }
6004
Bill Wendling826f36f2007-03-28 00:57:11 +00006005 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006006 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006007 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006008 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006009 }
6010
6011 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006012 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006013 if (NumElems == 4 && NumZero > 0) {
6014 for (unsigned i = 0; i < 4; ++i) {
6015 bool isZero = !(NonZeros & (1 << i));
6016 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006017 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006018 else
Dale Johannesenace16102009-02-03 19:33:06 +00006019 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006020 }
6021
6022 for (unsigned i = 0; i < 2; ++i) {
6023 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6024 default: break;
6025 case 0:
6026 V[i] = V[i*2]; // Must be a zero vector.
6027 break;
6028 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006029 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006030 break;
6031 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006032 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006033 break;
6034 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006035 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006036 break;
6037 }
6038 }
6039
Benjamin Kramer9c683542012-01-30 15:16:21 +00006040 bool Reverse1 = (NonZeros & 0x3) == 2;
6041 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6042 int MaskVec[] = {
6043 Reverse1 ? 1 : 0,
6044 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006045 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6046 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006047 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006048 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006049 }
6050
Craig Topper7a9a28b2012-08-12 02:23:29 +00006051 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006052 // Check for a build vector of consecutive loads.
6053 for (unsigned i = 0; i < NumElems; ++i)
6054 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006055
Nate Begemanfdea31a2010-03-24 20:49:50 +00006056 // Check for elements which are consecutive loads.
6057 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6058 if (LD.getNode())
6059 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006060
Michael Liaofacace82012-10-19 17:15:18 +00006061 // Check for a build vector from mostly shuffle plus few inserting.
6062 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6063 if (Sh.getNode())
6064 return Sh;
6065
Michael J. Spencerec38de22010-10-10 22:04:20 +00006066 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006067 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006068 SDValue Result;
6069 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6070 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6071 else
6072 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006073
Chris Lattner24faf612010-08-28 17:59:08 +00006074 for (unsigned i = 1; i < NumElems; ++i) {
6075 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6076 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006077 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006078 }
6079 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006080 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006081
Chris Lattner6e80e442010-08-28 17:15:43 +00006082 // Otherwise, expand into a number of unpckl*, start by extending each of
6083 // our (non-undef) elements to the full vector width with the element in the
6084 // bottom slot of the vector (which generates no code for SSE).
6085 for (unsigned i = 0; i < NumElems; ++i) {
6086 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6087 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6088 else
6089 V[i] = DAG.getUNDEF(VT);
6090 }
6091
6092 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006093 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6094 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6095 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006096 unsigned EltStride = NumElems >> 1;
6097 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006098 for (unsigned i = 0; i < EltStride; ++i) {
6099 // If V[i+EltStride] is undef and this is the first round of mixing,
6100 // then it is safe to just drop this shuffle: V[i] is already in the
6101 // right place, the one element (since it's the first round) being
6102 // inserted as undef can be dropped. This isn't safe for successive
6103 // rounds because they will permute elements within both vectors.
6104 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6105 EltStride == NumElems/2)
6106 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006107
Chris Lattner6e80e442010-08-28 17:15:43 +00006108 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006109 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006110 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006111 }
6112 return V[0];
6113 }
Dan Gohman475871a2008-07-27 21:46:04 +00006114 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006115}
6116
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006117// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6118// to create 256-bit vectors from two other 128-bit ones.
6119static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006120 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006121 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006122
Elena Demikhovsky83952512013-07-31 11:35:14 +00006123 assert((ResVT.is256BitVector() ||
6124 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006125
6126 SDValue V1 = Op.getOperand(0);
6127 SDValue V2 = Op.getOperand(1);
6128 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006129 if(ResVT.is256BitVector())
6130 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006131
Elena Demikhovsky83952512013-07-31 11:35:14 +00006132 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006133}
6134
Craig Topper55b24052012-09-11 06:15:32 +00006135static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006136 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006137
Elena Demikhovsky83952512013-07-31 11:35:14 +00006138 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006139 // from two other 128-bit ones.
6140 return LowerAVXCONCAT_VECTORS(Op, DAG);
6141}
6142
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006143// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006144static SDValue
6145LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6146 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006147 SDValue V1 = SVOp->getOperand(0);
6148 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006149 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006150 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006151 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006152 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006153
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006154 // There is no blend with immediate in AVX-512.
6155 if (VT.is512BitVector())
6156 return SDValue();
6157
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006158 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6159 return SDValue();
6160 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006161 return SDValue();
6162
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006163 // Check the mask for BLEND and build the value.
6164 unsigned MaskValue = 0;
6165 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006166 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006167 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006168
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006169 // Blend for v16i16 should be symetric for the both lanes.
6170 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006171
Craig Topper9b33ef72013-01-21 06:57:59 +00006172 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006173 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006174 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006175
Craig Topper04f74a12013-01-21 07:25:16 +00006176 if ((EltIdx < 0 || EltIdx == (int)i) &&
6177 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006178 continue;
6179
Craig Topper9b33ef72013-01-21 06:57:59 +00006180 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006181 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006182 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6183 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006184 else
Craig Topper1842ba02012-04-23 06:38:28 +00006185 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006186 }
6187
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006188 // Convert i32 vectors to floating point if it is not AVX2.
6189 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006190 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006191 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006192 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6193 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006194 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6195 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6196 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006197
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006198 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6199 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006200 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006201}
6202
Nate Begemanb9a47b82009-02-23 08:49:38 +00006203// v8i16 shuffles - Prefer shuffles in the following order:
6204// 1. [all] pshuflw, pshufhw, optional move
6205// 2. [ssse3] 1 x pshufb
6206// 3. [ssse3] 2 x pshufb + 1 x por
6207// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006208static SDValue
6209LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6210 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006211 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006212 SDValue V1 = SVOp->getOperand(0);
6213 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006214 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006215 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006216
Nate Begemanb9a47b82009-02-23 08:49:38 +00006217 // Determine if more than 1 of the words in each of the low and high quadwords
6218 // of the result come from the same quadword of one of the two inputs. Undef
6219 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006220 unsigned LoQuad[] = { 0, 0, 0, 0 };
6221 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006222 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006223 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006224 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006225 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006226 MaskVals.push_back(EltIdx);
6227 if (EltIdx < 0) {
6228 ++Quad[0];
6229 ++Quad[1];
6230 ++Quad[2];
6231 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006232 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006233 }
6234 ++Quad[EltIdx / 4];
6235 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006236 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006237
Nate Begemanb9a47b82009-02-23 08:49:38 +00006238 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006239 unsigned MaxQuad = 1;
6240 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006241 if (LoQuad[i] > MaxQuad) {
6242 BestLoQuad = i;
6243 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006244 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006245 }
6246
Nate Begemanb9a47b82009-02-23 08:49:38 +00006247 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006248 MaxQuad = 1;
6249 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006250 if (HiQuad[i] > MaxQuad) {
6251 BestHiQuad = i;
6252 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006253 }
6254 }
6255
Nate Begemanb9a47b82009-02-23 08:49:38 +00006256 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006257 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006258 // single pshufb instruction is necessary. If There are more than 2 input
6259 // quads, disable the next transformation since it does not help SSSE3.
6260 bool V1Used = InputQuads[0] || InputQuads[1];
6261 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006262 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006263 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006264 BestLoQuad = InputQuads[0] ? 0 : 1;
6265 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006266 }
6267 if (InputQuads.count() > 2) {
6268 BestLoQuad = -1;
6269 BestHiQuad = -1;
6270 }
6271 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006272
Nate Begemanb9a47b82009-02-23 08:49:38 +00006273 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6274 // the shuffle mask. If a quad is scored as -1, that means that it contains
6275 // words from all 4 input quadwords.
6276 SDValue NewV;
6277 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006278 int MaskV[] = {
6279 BestLoQuad < 0 ? 0 : BestLoQuad,
6280 BestHiQuad < 0 ? 1 : BestHiQuad
6281 };
Eric Christopherfd179292009-08-27 18:07:15 +00006282 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006283 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6284 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6285 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006286
Nate Begemanb9a47b82009-02-23 08:49:38 +00006287 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6288 // source words for the shuffle, to aid later transformations.
6289 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006290 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006291 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006292 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006293 if (idx != (int)i)
6294 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006295 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006296 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006297 AllWordsInNewV = false;
6298 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006299 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006300
Nate Begemanb9a47b82009-02-23 08:49:38 +00006301 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6302 if (AllWordsInNewV) {
6303 for (int i = 0; i != 8; ++i) {
6304 int idx = MaskVals[i];
6305 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006306 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006307 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006308 if ((idx != i) && idx < 4)
6309 pshufhw = false;
6310 if ((idx != i) && idx > 3)
6311 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006312 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006313 V1 = NewV;
6314 V2Used = false;
6315 BestLoQuad = 0;
6316 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006317 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006318
Nate Begemanb9a47b82009-02-23 08:49:38 +00006319 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6320 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006321 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006322 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6323 unsigned TargetMask = 0;
6324 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006325 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006326 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6327 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6328 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006329 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006330 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006331 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006332 }
Eric Christopherfd179292009-08-27 18:07:15 +00006333
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006334 // Promote splats to a larger type which usually leads to more efficient code.
6335 // FIXME: Is this true if pshufb is available?
6336 if (SVOp->isSplat())
6337 return PromoteSplat(SVOp, DAG);
6338
Nate Begemanb9a47b82009-02-23 08:49:38 +00006339 // If we have SSSE3, and all words of the result are from 1 input vector,
6340 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6341 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006342 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006343 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006344
Nate Begemanb9a47b82009-02-23 08:49:38 +00006345 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006346 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006347 // mask, and elements that come from V1 in the V2 mask, so that the two
6348 // results can be OR'd together.
6349 bool TwoInputs = V1Used && V2Used;
6350 for (unsigned i = 0; i != 8; ++i) {
6351 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006352 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6353 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006354 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006355 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006356 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006357 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006358 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006359 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006360 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006361 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006362 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006363
Nate Begemanb9a47b82009-02-23 08:49:38 +00006364 // Calculate the shuffle mask for the second input, shuffle it, and
6365 // OR it with the first shuffled input.
6366 pshufbMask.clear();
6367 for (unsigned i = 0; i != 8; ++i) {
6368 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006369 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6370 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6371 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6372 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006373 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006374 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006375 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006376 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006377 MVT::v16i8, &pshufbMask[0], 16));
6378 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006379 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006380 }
6381
6382 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6383 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006384 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006385 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006386 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006387 for (int i = 0; i != 4; ++i) {
6388 int idx = MaskVals[i];
6389 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006390 InOrder.set(i);
6391 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006392 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006393 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006394 }
6395 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006396 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006397 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006398
Craig Topperdd637ae2012-02-19 05:41:45 +00006399 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6400 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006401 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006402 NewV.getOperand(0),
6403 getShufflePSHUFLWImmediate(SVOp), DAG);
6404 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006405 }
Eric Christopherfd179292009-08-27 18:07:15 +00006406
Nate Begemanb9a47b82009-02-23 08:49:38 +00006407 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6408 // and update MaskVals with the new element order.
6409 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006410 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006411 for (unsigned i = 4; i != 8; ++i) {
6412 int idx = MaskVals[i];
6413 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006414 InOrder.set(i);
6415 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006416 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006417 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006418 }
6419 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006420 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006421 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006422
Craig Topperdd637ae2012-02-19 05:41:45 +00006423 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6424 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006425 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006426 NewV.getOperand(0),
6427 getShufflePSHUFHWImmediate(SVOp), DAG);
6428 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006429 }
Eric Christopherfd179292009-08-27 18:07:15 +00006430
Nate Begemanb9a47b82009-02-23 08:49:38 +00006431 // In case BestHi & BestLo were both -1, which means each quadword has a word
6432 // from each of the four input quadwords, calculate the InOrder bitvector now
6433 // before falling through to the insert/extract cleanup.
6434 if (BestLoQuad == -1 && BestHiQuad == -1) {
6435 NewV = V1;
6436 for (int i = 0; i != 8; ++i)
6437 if (MaskVals[i] < 0 || MaskVals[i] == i)
6438 InOrder.set(i);
6439 }
Eric Christopherfd179292009-08-27 18:07:15 +00006440
Nate Begemanb9a47b82009-02-23 08:49:38 +00006441 // The other elements are put in the right place using pextrw and pinsrw.
6442 for (unsigned i = 0; i != 8; ++i) {
6443 if (InOrder[i])
6444 continue;
6445 int EltIdx = MaskVals[i];
6446 if (EltIdx < 0)
6447 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006448 SDValue ExtOp = (EltIdx < 8) ?
6449 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6450 DAG.getIntPtrConstant(EltIdx)) :
6451 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006452 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006453 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006454 DAG.getIntPtrConstant(i));
6455 }
6456 return NewV;
6457}
6458
6459// v16i8 shuffles - Prefer shuffles in the following order:
6460// 1. [ssse3] 1 x pshufb
6461// 2. [ssse3] 2 x pshufb + 1 x por
6462// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006463static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6464 const X86Subtarget* Subtarget,
6465 SelectionDAG &DAG) {
6466 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006467 SDValue V1 = SVOp->getOperand(0);
6468 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006469 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006470 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006471
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006472 // Promote splats to a larger type which usually leads to more efficient code.
6473 // FIXME: Is this true if pshufb is available?
6474 if (SVOp->isSplat())
6475 return PromoteSplat(SVOp, DAG);
6476
Nate Begemanb9a47b82009-02-23 08:49:38 +00006477 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006478 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006479 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006480
Nate Begemanb9a47b82009-02-23 08:49:38 +00006481 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006482 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006483 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006484
Nate Begemanb9a47b82009-02-23 08:49:38 +00006485 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006486 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006487 //
6488 // Otherwise, we have elements from both input vectors, and must zero out
6489 // elements that come from V2 in the first mask, and V1 in the second mask
6490 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006491 for (unsigned i = 0; i != 16; ++i) {
6492 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006493 if (EltIdx < 0 || EltIdx >= 16)
6494 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006495 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006496 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006497 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006498 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006499 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006500
6501 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6502 // the 2nd operand if it's undefined or zero.
6503 if (V2.getOpcode() == ISD::UNDEF ||
6504 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006506
Nate Begemanb9a47b82009-02-23 08:49:38 +00006507 // Calculate the shuffle mask for the second input, shuffle it, and
6508 // OR it with the first shuffled input.
6509 pshufbMask.clear();
6510 for (unsigned i = 0; i != 16; ++i) {
6511 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006512 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006513 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006514 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006515 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006516 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006517 MVT::v16i8, &pshufbMask[0], 16));
6518 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 }
Eric Christopherfd179292009-08-27 18:07:15 +00006520
Nate Begemanb9a47b82009-02-23 08:49:38 +00006521 // No SSSE3 - Calculate in place words and then fix all out of place words
6522 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6523 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006524 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6525 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006526 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006527 for (int i = 0; i != 8; ++i) {
6528 int Elt0 = MaskVals[i*2];
6529 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006530
Nate Begemanb9a47b82009-02-23 08:49:38 +00006531 // This word of the result is all undef, skip it.
6532 if (Elt0 < 0 && Elt1 < 0)
6533 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006534
Nate Begemanb9a47b82009-02-23 08:49:38 +00006535 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006536 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006537 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006538
Nate Begemanb9a47b82009-02-23 08:49:38 +00006539 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6540 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6541 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006542
6543 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6544 // using a single extract together, load it and store it.
6545 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006546 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006547 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006548 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006549 DAG.getIntPtrConstant(i));
6550 continue;
6551 }
6552
Nate Begemanb9a47b82009-02-23 08:49:38 +00006553 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006554 // source byte is not also odd, shift the extracted word left 8 bits
6555 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006556 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006557 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006558 DAG.getIntPtrConstant(Elt1 / 2));
6559 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006560 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006561 DAG.getConstant(8,
6562 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006563 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006564 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6565 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006566 }
6567 // If Elt0 is defined, extract it from the appropriate source. If the
6568 // source byte is not also even, shift the extracted word right 8 bits. If
6569 // Elt1 was also defined, OR the extracted values together before
6570 // inserting them in the result.
6571 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006572 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006573 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6574 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006575 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006576 DAG.getConstant(8,
6577 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006578 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006579 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6580 DAG.getConstant(0x00FF, MVT::i16));
6581 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006582 : InsElt0;
6583 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006584 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006585 DAG.getIntPtrConstant(i));
6586 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006587 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006588}
6589
Elena Demikhovsky41789462012-09-06 12:42:01 +00006590// v32i8 shuffles - Translate to VPSHUFB if possible.
6591static
6592SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006593 const X86Subtarget *Subtarget,
6594 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006595 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006596 SDValue V1 = SVOp->getOperand(0);
6597 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006598 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006599 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006600
6601 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006602 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6603 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006604
Michael Liao471b9172012-10-03 23:43:52 +00006605 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006606 // (1) one of input vector is undefined or zeroinitializer.
6607 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6608 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006609 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006610 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006611 return SDValue();
6612
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006613 if (V1IsAllZero && !V2IsAllZero) {
6614 CommuteVectorShuffleMask(MaskVals, 32);
6615 V1 = V2;
6616 }
6617 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006618 for (unsigned i = 0; i != 32; i++) {
6619 int EltIdx = MaskVals[i];
6620 if (EltIdx < 0 || EltIdx >= 32)
6621 EltIdx = 0x80;
6622 else {
6623 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6624 // Cross lane is not allowed.
6625 return SDValue();
6626 EltIdx &= 0xf;
6627 }
6628 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6629 }
6630 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6631 DAG.getNode(ISD::BUILD_VECTOR, dl,
6632 MVT::v32i8, &pshufbMask[0], 32));
6633}
6634
Evan Cheng7a831ce2007-12-15 03:00:47 +00006635/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006636/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006637/// done when every pair / quad of shuffle mask elements point to elements in
6638/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006639/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006640static
Nate Begeman9008ca62009-04-27 18:41:29 +00006641SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006642 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006643 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006644 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006645 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006646 MVT NewVT;
6647 unsigned Scale;
6648 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006649 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006650 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6651 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6652 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6653 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6654 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6655 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006656 }
6657
Nate Begeman9008ca62009-04-27 18:41:29 +00006658 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006659 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006660 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006661 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006662 int EltIdx = SVOp->getMaskElt(i+j);
6663 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006664 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006665 if (StartIdx < 0)
6666 StartIdx = (EltIdx / Scale);
6667 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006668 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006669 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006670 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006671 }
6672
Craig Topper11ac1f82012-05-04 04:08:44 +00006673 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6674 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006675 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006676}
6677
Evan Chengd880b972008-05-09 21:53:03 +00006678/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006679///
Craig Topper8d725b92013-08-15 05:33:45 +00006680static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006681 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006682 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006683 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006684 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006685 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006686 LD = dyn_cast<LoadSDNode>(SrcOp);
6687 if (!LD) {
6688 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6689 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006690 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006691 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006692 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006693 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006694 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006695 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006696 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006697 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006698 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6699 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6700 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006701 SrcOp.getOperand(0)
6702 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006703 }
6704 }
6705 }
6706
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006707 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006708 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006709 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006710 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006711}
6712
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006713/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6714/// which could not be matched by any known target speficic shuffle
6715static SDValue
6716LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006717
6718 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6719 if (NewOp.getNode())
6720 return NewOp;
6721
Craig Topper5a0910b2013-08-15 02:33:50 +00006722 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006723
Craig Topper8f35c132012-01-20 09:29:03 +00006724 unsigned NumElems = VT.getVectorNumElements();
6725 unsigned NumLaneElems = NumElems / 2;
6726
Andrew Trickac6d9be2013-05-25 02:42:55 +00006727 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006728 MVT EltVT = VT.getVectorElementType();
6729 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006730 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006731
Craig Topper9a2b6e12012-04-06 07:45:23 +00006732 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006733 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006734 // Build a shuffle mask for the output, discovering on the fly which
6735 // input vectors to use as shuffle operands (recorded in InputUsed).
6736 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006737 // out with UseBuildVector set.
6738 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006739 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006740 unsigned LaneStart = l * NumLaneElems;
6741 for (unsigned i = 0; i != NumLaneElems; ++i) {
6742 // The mask element. This indexes into the input.
6743 int Idx = SVOp->getMaskElt(i+LaneStart);
6744 if (Idx < 0) {
6745 // the mask element does not index into any input vector.
6746 Mask.push_back(-1);
6747 continue;
6748 }
Craig Topper8f35c132012-01-20 09:29:03 +00006749
Craig Topper9a2b6e12012-04-06 07:45:23 +00006750 // The input vector this mask element indexes into.
6751 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006752
Craig Topper9a2b6e12012-04-06 07:45:23 +00006753 // Turn the index into an offset from the start of the input vector.
6754 Idx -= Input * NumLaneElems;
6755
6756 // Find or create a shuffle vector operand to hold this input.
6757 unsigned OpNo;
6758 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6759 if (InputUsed[OpNo] == Input)
6760 // This input vector is already an operand.
6761 break;
6762 if (InputUsed[OpNo] < 0) {
6763 // Create a new operand for this input vector.
6764 InputUsed[OpNo] = Input;
6765 break;
6766 }
6767 }
6768
6769 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006770 // More than two input vectors used! Give up on trying to create a
6771 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6772 UseBuildVector = true;
6773 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006774 }
6775
6776 // Add the mask index for the new shuffle vector.
6777 Mask.push_back(Idx + OpNo * NumLaneElems);
6778 }
6779
Craig Topper8ae97ba2012-05-21 06:40:16 +00006780 if (UseBuildVector) {
6781 SmallVector<SDValue, 16> SVOps;
6782 for (unsigned i = 0; i != NumLaneElems; ++i) {
6783 // The mask element. This indexes into the input.
6784 int Idx = SVOp->getMaskElt(i+LaneStart);
6785 if (Idx < 0) {
6786 SVOps.push_back(DAG.getUNDEF(EltVT));
6787 continue;
6788 }
6789
6790 // The input vector this mask element indexes into.
6791 int Input = Idx / NumElems;
6792
6793 // Turn the index into an offset from the start of the input vector.
6794 Idx -= Input * NumElems;
6795
6796 // Extract the vector element by hand.
6797 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6798 SVOp->getOperand(Input),
6799 DAG.getIntPtrConstant(Idx)));
6800 }
6801
6802 // Construct the output using a BUILD_VECTOR.
6803 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6804 SVOps.size());
6805 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006806 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006807 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006808 } else {
6809 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006810 (InputUsed[0] % 2) * NumLaneElems,
6811 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006812 // If only one input was used, use an undefined vector for the other.
6813 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6814 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006815 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006816 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006817 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006818 }
6819
6820 Mask.clear();
6821 }
Craig Topper8f35c132012-01-20 09:29:03 +00006822
6823 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006824 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006825}
6826
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006827/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6828/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006829static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006830LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006831 SDValue V1 = SVOp->getOperand(0);
6832 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006833 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006834 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006835
Craig Topper7a9a28b2012-08-12 02:23:29 +00006836 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006837
Benjamin Kramer9c683542012-01-30 15:16:21 +00006838 std::pair<int, int> Locs[4];
6839 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006840 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006841
Evan Chengace3c172008-07-22 21:13:36 +00006842 unsigned NumHi = 0;
6843 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006844 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006845 int Idx = PermMask[i];
6846 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006847 Locs[i] = std::make_pair(-1, -1);
6848 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006849 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6850 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006851 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006852 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006853 NumLo++;
6854 } else {
6855 Locs[i] = std::make_pair(1, NumHi);
6856 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006857 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006858 NumHi++;
6859 }
6860 }
6861 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006862
Evan Chengace3c172008-07-22 21:13:36 +00006863 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006864 // If no more than two elements come from either vector. This can be
6865 // implemented with two shuffles. First shuffle gather the elements.
6866 // The second shuffle, which takes the first shuffle as both of its
6867 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006868 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006869
Benjamin Kramer9c683542012-01-30 15:16:21 +00006870 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006871
Benjamin Kramer9c683542012-01-30 15:16:21 +00006872 for (unsigned i = 0; i != 4; ++i)
6873 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006874 unsigned Idx = (i < 2) ? 0 : 4;
6875 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006876 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006877 }
Evan Chengace3c172008-07-22 21:13:36 +00006878
Nate Begeman9008ca62009-04-27 18:41:29 +00006879 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006880 }
6881
6882 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006883 // Otherwise, we must have three elements from one vector, call it X, and
6884 // one element from the other, call it Y. First, use a shufps to build an
6885 // intermediate vector with the one element from Y and the element from X
6886 // that will be in the same half in the final destination (the indexes don't
6887 // matter). Then, use a shufps to build the final vector, taking the half
6888 // containing the element from Y from the intermediate, and the other half
6889 // from X.
6890 if (NumHi == 3) {
6891 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006892 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006893 std::swap(V1, V2);
6894 }
6895
6896 // Find the element from V2.
6897 unsigned HiIndex;
6898 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006899 int Val = PermMask[HiIndex];
6900 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006901 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006902 if (Val >= 4)
6903 break;
6904 }
6905
Nate Begeman9008ca62009-04-27 18:41:29 +00006906 Mask1[0] = PermMask[HiIndex];
6907 Mask1[1] = -1;
6908 Mask1[2] = PermMask[HiIndex^1];
6909 Mask1[3] = -1;
6910 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006911
6912 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006913 Mask1[0] = PermMask[0];
6914 Mask1[1] = PermMask[1];
6915 Mask1[2] = HiIndex & 1 ? 6 : 4;
6916 Mask1[3] = HiIndex & 1 ? 4 : 6;
6917 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006918 }
Craig Topper69947b92012-04-23 06:57:04 +00006919
6920 Mask1[0] = HiIndex & 1 ? 2 : 0;
6921 Mask1[1] = HiIndex & 1 ? 0 : 2;
6922 Mask1[2] = PermMask[2];
6923 Mask1[3] = PermMask[3];
6924 if (Mask1[2] >= 0)
6925 Mask1[2] += 4;
6926 if (Mask1[3] >= 0)
6927 Mask1[3] += 4;
6928 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006929 }
6930
6931 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006932 int LoMask[] = { -1, -1, -1, -1 };
6933 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006934
Benjamin Kramer9c683542012-01-30 15:16:21 +00006935 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006936 unsigned MaskIdx = 0;
6937 unsigned LoIdx = 0;
6938 unsigned HiIdx = 2;
6939 for (unsigned i = 0; i != 4; ++i) {
6940 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006941 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006942 MaskIdx = 1;
6943 LoIdx = 0;
6944 HiIdx = 2;
6945 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006946 int Idx = PermMask[i];
6947 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006948 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006949 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006950 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006951 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006952 LoIdx++;
6953 } else {
6954 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006955 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006956 HiIdx++;
6957 }
6958 }
6959
Nate Begeman9008ca62009-04-27 18:41:29 +00006960 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6961 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006962 int MaskOps[] = { -1, -1, -1, -1 };
6963 for (unsigned i = 0; i != 4; ++i)
6964 if (Locs[i].first != -1)
6965 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006966 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006967}
6968
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006969static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006970 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006971 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006972
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006973 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6974 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006975 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6976 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6977 // BUILD_VECTOR (load), undef
6978 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006979
6980 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006981}
6982
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006983static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006984SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006985 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00006986
6987 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006988 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6989 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006990 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6991 V1, DAG));
6992}
6993
6994static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006995SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006996 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006997 SDValue V1 = Op.getOperand(0);
6998 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00006999 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007000
7001 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7002
Craig Topper1accb7e2012-01-10 06:54:16 +00007003 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007004 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7005
Evan Cheng0899f5c2011-08-31 02:05:24 +00007006 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7007 return DAG.getNode(ISD::BITCAST, dl, VT,
7008 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7009 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7010 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007011}
7012
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007013static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007014SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007015 SDValue V1 = Op.getOperand(0);
7016 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007017 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007018
7019 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7020 "unsupported shuffle type");
7021
7022 if (V2.getOpcode() == ISD::UNDEF)
7023 V2 = V1;
7024
7025 // v4i32 or v4f32
7026 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7027}
7028
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007029static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007030SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007031 SDValue V1 = Op.getOperand(0);
7032 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007033 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007034 unsigned NumElems = VT.getVectorNumElements();
7035
7036 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7037 // operand of these instructions is only memory, so check if there's a
7038 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7039 // same masks.
7040 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007041
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007042 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007043 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007044 CanFoldLoad = true;
7045
7046 // When V1 is a load, it can be folded later into a store in isel, example:
7047 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7048 // turns into:
7049 // (MOVLPSmr addr:$src1, VR128:$src2)
7050 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007051 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007052 CanFoldLoad = true;
7053
Dan Gohman65fd6562011-11-03 21:49:52 +00007054 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007055 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007056 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007057 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7058
7059 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007060 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007061 if (SVOp->getMaskElt(1) != -1)
7062 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007063 }
7064
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007065 // movl and movlp will both match v2i64, but v2i64 is never matched by
7066 // movl earlier because we make it strict to avoid messing with the movlp load
7067 // folding logic (see the code above getMOVLP call). Match it here then,
7068 // this is horrible, but will stay like this until we move all shuffle
7069 // matching to x86 specific nodes. Note that for the 1st condition all
7070 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007071 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007072 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7073 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007074 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007075 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007076 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007077 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007078
7079 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7080
7081 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007082 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007083 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007084}
7085
Michael Liaod9d09602012-10-23 17:34:00 +00007086// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007087static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7088 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007089 // PMOVZX is only available from SSE41.
7090 if (!Subtarget->hasSSE41())
7091 return SDValue();
7092
Craig Topper8d725b92013-08-15 05:33:45 +00007093 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007094
7095 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007096 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007097 return SDValue();
7098
7099 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007100 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007101 SDValue V1 = Op.getOperand(0);
7102 SDValue V2 = Op.getOperand(1);
7103 unsigned NumElems = VT.getVectorNumElements();
7104
7105 // Extending is an unary operation and the element type of the source vector
7106 // won't be equal to or larger than i64.
7107 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7108 VT.getVectorElementType() == MVT::i64)
7109 return SDValue();
7110
7111 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7112 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007113 while ((1U << Shift) < NumElems) {
7114 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007115 break;
7116 Shift += 1;
7117 // The maximal ratio is 8, i.e. from i8 to i64.
7118 if (Shift > 3)
7119 return SDValue();
7120 }
7121
7122 // Check the shuffle mask.
7123 unsigned Mask = (1U << Shift) - 1;
7124 for (unsigned i = 0; i != NumElems; ++i) {
7125 int EltIdx = SVOp->getMaskElt(i);
7126 if ((i & Mask) != 0 && EltIdx != -1)
7127 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007128 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007129 return SDValue();
7130 }
7131
7132 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007133 MVT NeVT = MVT::getIntegerVT(NBits);
7134 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007135
Craig Topper158ec072013-08-14 07:34:43 +00007136 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007137 return SDValue();
7138
7139 // Simplify the operand as it's prepared to be fed into shuffle.
7140 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7141 if (V1.getOpcode() == ISD::BITCAST &&
7142 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7143 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007144 V1.getOperand(0).getOperand(0)
7145 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007146 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7147 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007148 ConstantSDNode *CIdx =
7149 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007150 // If it's foldable, i.e. normal load with single use, we will let code
7151 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007152 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007153 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007154 MVT FullVT = V.getSimpleValueType();
7155 MVT V1VT = V1.getSimpleValueType();
7156 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007157 // The "ext_vec_elt" node is wider than the result node.
7158 // In this case we should extract subvector from V.
7159 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007160 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7161 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007162 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007163 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007164 DAG.getIntPtrConstant(0));
7165 }
Craig Topper8d725b92013-08-15 05:33:45 +00007166 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007167 }
Michael Liaod9d09602012-10-23 17:34:00 +00007168 }
7169
7170 return DAG.getNode(ISD::BITCAST, DL, VT,
7171 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7172}
7173
Craig Topper158ec072013-08-14 07:34:43 +00007174static SDValue
7175NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7176 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007177 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007178 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007179 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007180 SDValue V1 = Op.getOperand(0);
7181 SDValue V2 = Op.getOperand(1);
7182
7183 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007184 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007185
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007186 // Handle splat operations
7187 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007188 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007189 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007190 if (Broadcast.getNode())
7191 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007192 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007193
Michael Liaod9d09602012-10-23 17:34:00 +00007194 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007195 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007196 if (NewOp.getNode())
7197 return NewOp;
7198
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007199 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7200 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007201 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7202 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007203 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007204 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007205 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007206 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007207 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007208 // FIXME: Figure out a cleaner way to do this.
7209 // Try to make use of movq to zero out the top part.
7210 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007211 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007212 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007213 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007214 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7215 NewVT, true, false))
7216 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007217 DAG, Subtarget, dl);
7218 }
7219 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007220 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007221 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007222 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007223 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7224 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7225 DAG, Subtarget, dl);
7226 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007227 }
7228 }
7229 return SDValue();
7230}
7231
Dan Gohman475871a2008-07-27 21:46:04 +00007232SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007233X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007234 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007235 SDValue V1 = Op.getOperand(0);
7236 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007237 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007238 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007239 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007240 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007241 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007242 bool V1IsSplat = false;
7243 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007244 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007245 bool HasFp256 = Subtarget->hasFp256();
7246 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007247 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007248 bool OptForSize = MF.getFunction()->getAttributes().
7249 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007250
Craig Topper3426a3e2011-11-14 06:46:21 +00007251 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007252
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007253 if (V1IsUndef && V2IsUndef)
7254 return DAG.getUNDEF(VT);
7255
7256 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007257
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007258 // Vector shuffle lowering takes 3 steps:
7259 //
7260 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7261 // narrowing and commutation of operands should be handled.
7262 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7263 // shuffle nodes.
7264 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7265 // so the shuffle can be broken into other shuffles and the legalizer can
7266 // try the lowering again.
7267 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007268 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007269 // be matched during isel, all of them must be converted to a target specific
7270 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007271
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007272 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7273 // narrowing and commutation of operands should be handled. The actual code
7274 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007275 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007276 if (NewOp.getNode())
7277 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007278
Craig Topper5aaffa82012-02-19 02:53:47 +00007279 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7280
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007281 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7282 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007283 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007284 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007285 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007286 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007287
Craig Topperdd637ae2012-02-19 05:41:45 +00007288 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007289 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007290 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007291
Craig Topperdd637ae2012-02-19 05:41:45 +00007292 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007293 return getMOVHighToLow(Op, dl, DAG);
7294
7295 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007296 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007297 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007298 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007299
Craig Topper5aaffa82012-02-19 02:53:47 +00007300 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007301 // The actual implementation will match the mask in the if above and then
7302 // during isel it can match several different instructions, not only pshufd
7303 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007304 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7305 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007306
Craig Topper5aaffa82012-02-19 02:53:47 +00007307 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007308
Craig Topper1accb7e2012-01-10 06:54:16 +00007309 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007310 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7311
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007312 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7313 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7314 DAG);
7315
Craig Topperb3982da2011-12-31 23:50:21 +00007316 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007317 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007318 }
Eric Christopherfd179292009-08-27 18:07:15 +00007319
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007320 if (isPALIGNRMask(M, VT, Subtarget))
7321 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7322 getShufflePALIGNRImmediate(SVOp),
7323 DAG);
7324
Evan Chengf26ffe92008-05-29 08:22:04 +00007325 // Check if this can be converted into a logical shift.
7326 bool isLeft = false;
7327 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007328 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007329 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007330 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007331 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007332 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007333 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007334 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007335 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007336 }
Eric Christopherfd179292009-08-27 18:07:15 +00007337
Craig Topper5aaffa82012-02-19 02:53:47 +00007338 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007339 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007340 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007341 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007342 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007343 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7344
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007345 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007346 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7347 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007348 }
Eric Christopherfd179292009-08-27 18:07:15 +00007349
Nate Begeman9008ca62009-04-27 18:41:29 +00007350 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007351 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007352 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007353
Craig Topperdd637ae2012-02-19 05:41:45 +00007354 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007355 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007356
Craig Topperdd637ae2012-02-19 05:41:45 +00007357 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007358 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007359
Craig Topperdd637ae2012-02-19 05:41:45 +00007360 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007361 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007362
Craig Topperdd637ae2012-02-19 05:41:45 +00007363 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007364 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007365
Craig Topperdd637ae2012-02-19 05:41:45 +00007366 if (ShouldXformToMOVHLPS(M, VT) ||
7367 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007368 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007369
Evan Chengf26ffe92008-05-29 08:22:04 +00007370 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007371 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007372 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007373 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007374 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007375 }
Eric Christopherfd179292009-08-27 18:07:15 +00007376
Evan Cheng9eca5e82006-10-25 21:49:50 +00007377 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007378 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7379 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007380 V1IsSplat = isSplatVector(V1.getNode());
7381 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007382
Chris Lattner8a594482007-11-25 00:24:49 +00007383 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007384 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7385 CommuteVectorShuffleMask(M, NumElems);
7386 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007387 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007388 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007389 }
7390
Craig Topperbeabc6c2011-12-05 06:56:46 +00007391 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007392 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007393 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007394 return V1;
7395 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7396 // the instruction selector will not match, so get a canonical MOVL with
7397 // swapped operands to undo the commute.
7398 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007399 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007400
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007401 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007402 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007403
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007404 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007405 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007406
Evan Cheng9bbbb982006-10-25 20:48:19 +00007407 if (V2IsSplat) {
7408 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007409 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007410 // new vector_shuffle with the corrected mask.p
7411 SmallVector<int, 8> NewMask(M.begin(), M.end());
7412 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007413 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007414 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007415 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007416 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007417 }
7418
Evan Cheng9eca5e82006-10-25 21:49:50 +00007419 if (Commuted) {
7420 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007421 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007422 CommuteVectorShuffleMask(M, NumElems);
7423 std::swap(V1, V2);
7424 std::swap(V1IsSplat, V2IsSplat);
7425 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007426
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007427 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007428 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007429
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007430 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007431 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007432 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007433
Nate Begeman9008ca62009-04-27 18:41:29 +00007434 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007435 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007436 return CommuteVectorShuffle(SVOp, DAG);
7437
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007438 // The checks below are all present in isShuffleMaskLegal, but they are
7439 // inlined here right now to enable us to directly emit target specific
7440 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007441
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007442 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7443 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007444 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007445 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007446 }
7447
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007448 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007449 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007450 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007451 DAG);
7452
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007453 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007454 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007455 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007456 DAG);
7457
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007458 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007459 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007460 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007461
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007462 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007463 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007464 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007465 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007466
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007467 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007468 // Generate target specific nodes for 128 or 256-bit shuffles only
7469 // supported in the AVX instruction set.
7470 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007471
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007472 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007473 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007474 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7475
Craig Topper70b883b2011-11-28 10:14:51 +00007476 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007477 if (isVPERMILPMask(M, VT)) {
7478 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007479 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007480 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007481 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007482 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007483 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007484
Craig Topper70b883b2011-11-28 10:14:51 +00007485 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007486 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007487 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007488 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007489
Craig Topper1842ba02012-04-23 06:38:28 +00007490 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007491 if (BlendOp.getNode())
7492 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007493
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007494 unsigned Imm8;
7495 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7496 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007497
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007498 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7499 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007500 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7501 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007502 SmallVector<SDValue, 16> permclMask;
7503 for (unsigned i = 0; i != NumElems; ++i) {
7504 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7505 }
7506
7507 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7508 &permclMask[0], NumElems);
7509 if (V2IsUndef)
7510 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7511 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7512 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7513 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7514 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7515 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007516
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007517 //===--------------------------------------------------------------------===//
7518 // Since no target specific shuffle was selected for this generic one,
7519 // lower it into other known shuffles. FIXME: this isn't true yet, but
7520 // this is the plan.
7521 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007522
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007523 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7524 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007525 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007526 if (NewOp.getNode())
7527 return NewOp;
7528 }
7529
7530 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007531 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007532 if (NewOp.getNode())
7533 return NewOp;
7534 }
7535
Elena Demikhovsky41789462012-09-06 12:42:01 +00007536 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007537 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007538 if (NewOp.getNode())
7539 return NewOp;
7540 }
7541
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007542 // Handle all 128-bit wide vectors with 4 elements, and match them with
7543 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007544 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007545 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7546
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007547 // Handle general 256-bit shuffles
7548 if (VT.is256BitVector())
7549 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7550
Dan Gohman475871a2008-07-27 21:46:04 +00007551 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007552}
7553
Craig Topperf84b7502013-01-20 00:50:58 +00007554static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007555 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007556 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007557
Craig Topper5a0910b2013-08-15 02:33:50 +00007558 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007559 return SDValue();
7560
Duncan Sands83ec4b62008-06-06 12:08:01 +00007561 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007562 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007563 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007564 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007565 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007566 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007567 }
7568
7569 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007570 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7571 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7572 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007573 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7574 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007575 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007576 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007577 Op.getOperand(0)),
7578 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007579 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007580 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007581 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007582 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007583 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007584 }
7585
7586 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007587 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7588 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007589 // result has a single use which is a store or a bitcast to i32. And in
7590 // the case of a store, it's not worth it if the index is a constant 0,
7591 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007592 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007593 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007594 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007595 if ((User->getOpcode() != ISD::STORE ||
7596 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7597 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007598 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007599 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007600 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007601 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007602 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007603 Op.getOperand(0)),
7604 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007605 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007606 }
7607
7608 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007609 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007610 if (isa<ConstantSDNode>(Op.getOperand(1)))
7611 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007612 }
Dan Gohman475871a2008-07-27 21:46:04 +00007613 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007614}
7615
Dan Gohman475871a2008-07-27 21:46:04 +00007616SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007617X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7618 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007619 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007620 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007621 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007622 SDValue Idx = Op.getOperand(1);
7623 if (!isa<ConstantSDNode>(Idx)) {
7624 if (VecVT.is512BitVector() ||
7625 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7626 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7627
7628 MVT MaskEltVT =
7629 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7630 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7631 MaskEltVT.getSizeInBits());
7632
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007633 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007634 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7635 getZeroVector(MaskVT, Subtarget, DAG, dl),
7636 Idx, DAG.getConstant(0, getPointerTy()));
7637 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7638 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7639 Perm, DAG.getConstant(0, getPointerTy()));
7640 }
7641 return SDValue();
7642 }
David Greene74a579d2011-02-10 16:57:36 +00007643
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007644 // If this is a 256-bit vector result, first extract the 128-bit vector and
7645 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007646 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007647
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007648 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007649 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007650 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007651 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007652
Elena Demikhovsky83952512013-07-31 11:35:14 +00007653 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7654
7655 //if (IdxVal >= NumElems/2)
7656 // IdxVal -= NumElems/2;
7657 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007658 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007659 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007660 }
7661
Craig Topper7a9a28b2012-08-12 02:23:29 +00007662 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007663
Craig Topperd0a31172012-01-10 06:37:29 +00007664 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007665 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007666 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007667 return Res;
7668 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007669
Craig Topper5a0910b2013-08-15 02:33:50 +00007670 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007671 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007672 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007673 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007674 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007675 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007676 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7677 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007678 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007679 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007680 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007681 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007682 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007683 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007684 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007685 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007686 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007687 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007688 }
7689
7690 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007691 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007692 if (Idx == 0)
7693 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007694
Evan Cheng0db9fe62006-04-25 20:13:52 +00007695 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007696 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007697 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007698 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007699 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007700 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007701 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007702 }
7703
7704 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007705 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7706 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7707 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007708 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 if (Idx == 0)
7710 return Op;
7711
7712 // UNPCKHPD the element to the lowest double word, then movsd.
7713 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7714 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007715 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007716 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007717 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007718 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007719 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007720 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007721 }
7722
Dan Gohman475871a2008-07-27 21:46:04 +00007723 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007724}
7725
Craig Topperf84b7502013-01-20 00:50:58 +00007726static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007727 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007728 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007729 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007730
Dan Gohman475871a2008-07-27 21:46:04 +00007731 SDValue N0 = Op.getOperand(0);
7732 SDValue N1 = Op.getOperand(1);
7733 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007734
Craig Topper7a9a28b2012-08-12 02:23:29 +00007735 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007736 return SDValue();
7737
Dan Gohman8a55ce42009-09-23 21:02:20 +00007738 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007739 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007740 unsigned Opc;
7741 if (VT == MVT::v8i16)
7742 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007743 else if (VT == MVT::v16i8)
7744 Opc = X86ISD::PINSRB;
7745 else
7746 Opc = X86ISD::PINSRB;
7747
Nate Begeman14d12ca2008-02-11 04:19:36 +00007748 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7749 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007750 if (N1.getValueType() != MVT::i32)
7751 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7752 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007753 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007754 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007755 }
7756
7757 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007758 // Bits [7:6] of the constant are the source select. This will always be
7759 // zero here. The DAG Combiner may combine an extract_elt index into these
7760 // bits. For example (insert (extract, 3), 2) could be matched by putting
7761 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007762 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007763 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007764 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007765 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007766 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007767 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007768 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007769 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007770 }
7771
7772 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007773 // PINSR* works with constant index.
7774 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007775 }
Dan Gohman475871a2008-07-27 21:46:04 +00007776 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007777}
7778
Dan Gohman475871a2008-07-27 21:46:04 +00007779SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007780X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007781 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007782 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007783
Andrew Trickac6d9be2013-05-25 02:42:55 +00007784 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007785 SDValue N0 = Op.getOperand(0);
7786 SDValue N1 = Op.getOperand(1);
7787 SDValue N2 = Op.getOperand(2);
7788
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007789 // If this is a 256-bit vector result, first extract the 128-bit vector,
7790 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007791 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007792 if (!isa<ConstantSDNode>(N2))
7793 return SDValue();
7794
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007795 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007796 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007797 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007798
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007799 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007800 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7801 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7802
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007803 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007804 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007805
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007806 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007807 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007808 }
7809
Craig Topperd0a31172012-01-10 06:37:29 +00007810 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007811 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7812
Dan Gohman8a55ce42009-09-23 21:02:20 +00007813 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007814 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007815
Dan Gohman8a55ce42009-09-23 21:02:20 +00007816 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007817 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7818 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007819 if (N1.getValueType() != MVT::i32)
7820 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7821 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007822 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007823 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007824 }
Dan Gohman475871a2008-07-27 21:46:04 +00007825 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007826}
7827
Craig Topper55b24052012-09-11 06:15:32 +00007828static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007829 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007830 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007831
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007832 // If this is a 256-bit vector result, first insert into a 128-bit
7833 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007834 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007835 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007836 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007837 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007838 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007839
7840 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7841
7842 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007843 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007844 }
7845
Craig Topperd77d2fe2012-04-29 20:22:05 +00007846 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007847 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007848 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007849
Owen Anderson825b72b2009-08-11 20:47:22 +00007850 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007851 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007852 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007853 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007854}
7855
David Greene91585092011-01-26 15:38:49 +00007856// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7857// a simple subregister reference or explicit instructions to grab
7858// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007859static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7860 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007861 SDLoc dl(Op);
7862 SDValue In = Op.getOperand(0);
7863 SDValue Idx = Op.getOperand(1);
7864 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007865 MVT ResVT = Op.getSimpleValueType();
7866 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007867
Elena Demikhovsky83952512013-07-31 11:35:14 +00007868 if (Subtarget->hasFp256()) {
7869 if (ResVT.is128BitVector() &&
7870 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007871 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007872 return Extract128BitVector(In, IdxVal, DAG, dl);
7873 }
7874 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7875 isa<ConstantSDNode>(Idx)) {
7876 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007877 }
David Greene91585092011-01-26 15:38:49 +00007878 }
7879 return SDValue();
7880}
7881
David Greenecfe33c42011-01-26 19:13:22 +00007882// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7883// simple superregister reference or explicit instructions to insert
7884// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007885static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7886 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007887 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007888 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007889 SDValue Vec = Op.getNode()->getOperand(0);
7890 SDValue SubVec = Op.getNode()->getOperand(1);
7891 SDValue Idx = Op.getNode()->getOperand(2);
7892
Craig Topper8d725b92013-08-15 05:33:45 +00007893 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7894 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7895 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007896 isa<ConstantSDNode>(Idx)) {
7897 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7898 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007899 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007900
Craig Topper8d725b92013-08-15 05:33:45 +00007901 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7902 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007903 isa<ConstantSDNode>(Idx)) {
7904 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7905 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7906 }
David Greenecfe33c42011-01-26 19:13:22 +00007907 }
7908 return SDValue();
7909}
7910
Bill Wendling056292f2008-09-16 21:48:12 +00007911// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7912// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7913// one of the above mentioned nodes. It has to be wrapped because otherwise
7914// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7915// be used to form addressing mode. These wrapped nodes will be selected
7916// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007917SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007918X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007919 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007920
Chris Lattner41621a22009-06-26 19:22:52 +00007921 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7922 // global base reg.
7923 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007924 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007925 CodeModel::Model M = getTargetMachine().getCodeModel();
7926
Chris Lattner4f066492009-07-11 20:29:19 +00007927 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007928 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007929 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007930 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007931 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007932 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007933 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007934
Evan Cheng1606e8e2009-03-13 07:51:59 +00007935 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007936 CP->getAlignment(),
7937 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007938 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007939 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007940 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007941 if (OpFlag) {
7942 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007943 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007944 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007945 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007946 }
7947
7948 return Result;
7949}
7950
Dan Gohmand858e902010-04-17 15:26:15 +00007951SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007952 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007953
Chris Lattner18c59872009-06-27 04:16:01 +00007954 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7955 // global base reg.
7956 unsigned char OpFlag = 0;
7957 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007958 CodeModel::Model M = getTargetMachine().getCodeModel();
7959
Chris Lattner4f066492009-07-11 20:29:19 +00007960 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007961 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007962 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007963 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007964 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007965 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007966 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007967
Chris Lattner18c59872009-06-27 04:16:01 +00007968 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7969 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007970 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007971 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007972
Chris Lattner18c59872009-06-27 04:16:01 +00007973 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007974 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007975 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7976 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007977 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007978 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007979
Chris Lattner18c59872009-06-27 04:16:01 +00007980 return Result;
7981}
7982
7983SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007984X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007985 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007986
Chris Lattner18c59872009-06-27 04:16:01 +00007987 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7988 // global base reg.
7989 unsigned char OpFlag = 0;
7990 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007991 CodeModel::Model M = getTargetMachine().getCodeModel();
7992
Chris Lattner4f066492009-07-11 20:29:19 +00007993 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007994 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7995 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7996 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007997 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007998 } else if (Subtarget->isPICStyleGOT()) {
7999 OpFlag = X86II::MO_GOT;
8000 } else if (Subtarget->isPICStyleStubPIC()) {
8001 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8002 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8003 OpFlag = X86II::MO_DARWIN_NONLAZY;
8004 }
Eric Christopherfd179292009-08-27 18:07:15 +00008005
Chris Lattner18c59872009-06-27 04:16:01 +00008006 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008007
Andrew Trickac6d9be2013-05-25 02:42:55 +00008008 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008009 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008010
Chris Lattner18c59872009-06-27 04:16:01 +00008011 // With PIC, the address is actually $g + Offset.
8012 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008013 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008014 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8015 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008016 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008017 Result);
8018 }
Eric Christopherfd179292009-08-27 18:07:15 +00008019
Eli Friedman586272d2011-08-11 01:48:05 +00008020 // For symbols that require a load from a stub to get the address, emit the
8021 // load.
8022 if (isGlobalStubReference(OpFlag))
8023 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008024 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008025
Chris Lattner18c59872009-06-27 04:16:01 +00008026 return Result;
8027}
8028
Dan Gohman475871a2008-07-27 21:46:04 +00008029SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008030X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008031 // Create the TargetBlockAddressAddress node.
8032 unsigned char OpFlags =
8033 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008034 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008035 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008036 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008037 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008038 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8039 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008040
Dan Gohmanf705adb2009-10-30 01:28:02 +00008041 if (Subtarget->isPICStyleRIPRel() &&
8042 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008043 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8044 else
8045 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008046
Dan Gohman29cbade2009-11-20 23:18:13 +00008047 // With PIC, the address is actually $g + Offset.
8048 if (isGlobalRelativeToPICBase(OpFlags)) {
8049 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8050 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8051 Result);
8052 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008053
8054 return Result;
8055}
8056
8057SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008058X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008059 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008060 // Create the TargetGlobalAddress node, folding in the constant
8061 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008062 unsigned char OpFlags =
8063 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008064 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008065 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008066 if (OpFlags == X86II::MO_NO_FLAG &&
8067 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008068 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008069 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008070 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008071 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008072 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008073 }
Eric Christopherfd179292009-08-27 18:07:15 +00008074
Chris Lattner4f066492009-07-11 20:29:19 +00008075 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008076 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008077 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8078 else
8079 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008080
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008081 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008082 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008083 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8084 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008085 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008087
Chris Lattner36c25012009-07-10 07:34:39 +00008088 // For globals that require a load from a stub to get the address, emit the
8089 // load.
8090 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008091 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008092 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008093
Dan Gohman6520e202008-10-18 02:06:02 +00008094 // If there was a non-zero offset that we didn't fold, create an explicit
8095 // addition for it.
8096 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008097 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008098 DAG.getConstant(Offset, getPointerTy()));
8099
Evan Cheng0db9fe62006-04-25 20:13:52 +00008100 return Result;
8101}
8102
Evan Chengda43bcf2008-09-24 00:05:32 +00008103SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008104X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008105 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008106 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008107 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008108}
8109
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008110static SDValue
8111GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008112 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008113 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008114 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008115 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008116 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008117 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008118 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008119 GA->getOffset(),
8120 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008121
8122 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8123 : X86ISD::TLSADDR;
8124
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008125 if (InFlag) {
8126 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008127 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008128 } else {
8129 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008130 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008131 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008132
8133 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008134 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008135
Rafael Espindola15f1b662009-04-24 12:59:40 +00008136 SDValue Flag = Chain.getValue(1);
8137 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008138}
8139
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008140// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008141static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008142LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008143 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008144 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008145 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008146 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008147 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008148 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008149 InFlag = Chain.getValue(1);
8150
Chris Lattnerb903bed2009-06-26 21:20:29 +00008151 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008152}
8153
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008154// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008155static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008156LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008157 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008158 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8159 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008160}
8161
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008162static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8163 SelectionDAG &DAG,
8164 const EVT PtrVT,
8165 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008166 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008167
8168 // Get the start address of the TLS block for this module.
8169 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8170 .getInfo<X86MachineFunctionInfo>();
8171 MFI->incNumLocalDynamicTLSAccesses();
8172
8173 SDValue Base;
8174 if (is64Bit) {
8175 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8176 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8177 } else {
8178 SDValue InFlag;
8179 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008180 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008181 InFlag = Chain.getValue(1);
8182 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8183 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8184 }
8185
8186 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8187 // of Base.
8188
8189 // Build x@dtpoff.
8190 unsigned char OperandFlags = X86II::MO_DTPOFF;
8191 unsigned WrapperKind = X86ISD::Wrapper;
8192 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8193 GA->getValueType(0),
8194 GA->getOffset(), OperandFlags);
8195 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8196
8197 // Add x@dtpoff with the base.
8198 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8199}
8200
Hans Wennborg228756c2012-05-11 10:11:01 +00008201// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008202static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008203 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008204 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008205 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008206
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008207 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8208 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8209 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008210
Eric Christopher739eb9d2013-10-14 21:52:23 +00008211 SDValue ThreadPointer =
8212 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8213 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008214
Chris Lattnerb903bed2009-06-26 21:20:29 +00008215 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008216 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8217 // initialexec.
8218 unsigned WrapperKind = X86ISD::Wrapper;
8219 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008220 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008221 } else if (model == TLSModel::InitialExec) {
8222 if (is64Bit) {
8223 OperandFlags = X86II::MO_GOTTPOFF;
8224 WrapperKind = X86ISD::WrapperRIP;
8225 } else {
8226 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8227 }
Chris Lattner18c59872009-06-27 04:16:01 +00008228 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008229 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008230 }
Eric Christopherfd179292009-08-27 18:07:15 +00008231
Hans Wennborg228756c2012-05-11 10:11:01 +00008232 // emit "addl x@ntpoff,%eax" (local exec)
8233 // or "addl x@indntpoff,%eax" (initial exec)
8234 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008235 SDValue TGA =
8236 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8237 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008238 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008239
Hans Wennborg228756c2012-05-11 10:11:01 +00008240 if (model == TLSModel::InitialExec) {
8241 if (isPIC && !is64Bit) {
8242 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008243 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008244 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008245 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008246
8247 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008248 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008249 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008250
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008251 // The address of the thread local variable is the add of the thread
8252 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008253 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008254}
8255
Dan Gohman475871a2008-07-27 21:46:04 +00008256SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008257X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008258
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008259 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008260 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008261
Eric Christopher30ef0e52010-06-03 04:07:48 +00008262 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008263 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008264
Eric Christopher30ef0e52010-06-03 04:07:48 +00008265 switch (model) {
8266 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008267 if (Subtarget->is64Bit())
8268 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8269 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008270 case TLSModel::LocalDynamic:
8271 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8272 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008273 case TLSModel::InitialExec:
8274 case TLSModel::LocalExec:
8275 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008276 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008277 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008278 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008279 llvm_unreachable("Unknown TLS model.");
8280 }
8281
8282 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008283 // Darwin only has one model of TLS. Lower to that.
8284 unsigned char OpFlag = 0;
8285 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8286 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008287
Eric Christopher30ef0e52010-06-03 04:07:48 +00008288 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8289 // global base reg.
8290 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8291 !Subtarget->is64Bit();
8292 if (PIC32)
8293 OpFlag = X86II::MO_TLVP_PIC_BASE;
8294 else
8295 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008296 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008297 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008298 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008299 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008300 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008301
Eric Christopher30ef0e52010-06-03 04:07:48 +00008302 // With PIC32, the address is actually $g + Offset.
8303 if (PIC32)
8304 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8305 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008306 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008307 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008308
Eric Christopher30ef0e52010-06-03 04:07:48 +00008309 // Lowering the machine isd will make sure everything is in the right
8310 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008311 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008312 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008313 SDValue Args[] = { Chain, Offset };
8314 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008315
Eric Christopher30ef0e52010-06-03 04:07:48 +00008316 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8317 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8318 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008319
Eric Christopher30ef0e52010-06-03 04:07:48 +00008320 // And our return value (tls address) is in the standard call return value
8321 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008322 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008323 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8324 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008325 }
8326
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008327 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008328 // Just use the implicit TLS architecture
8329 // Need to generate someting similar to:
8330 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8331 // ; from TEB
8332 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8333 // mov rcx, qword [rdx+rcx*8]
8334 // mov eax, .tls$:tlsvar
8335 // [rax+rcx] contains the address
8336 // Windows 64bit: gs:0x58
8337 // Windows 32bit: fs:__tls_array
8338
8339 // If GV is an alias then use the aliasee for determining
8340 // thread-localness.
8341 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8342 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008343 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008344 SDValue Chain = DAG.getEntryNode();
8345
8346 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008347 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8348 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008349 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8350 ? Type::getInt8PtrTy(*DAG.getContext(),
8351 256)
8352 : Type::getInt32PtrTy(*DAG.getContext(),
8353 257));
8354
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008355 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8356 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8357 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8358
8359 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008360 MachinePointerInfo(Ptr),
8361 false, false, false, 0);
8362
8363 // Load the _tls_index variable
8364 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8365 if (Subtarget->is64Bit())
8366 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8367 IDX, MachinePointerInfo(), MVT::i32,
8368 false, false, 0);
8369 else
8370 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8371 false, false, false, 0);
8372
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008373 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008374 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008375 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8376
8377 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8378 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8379 false, false, false, 0);
8380
8381 // Get the offset of start of .tls section
8382 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8383 GA->getValueType(0),
8384 GA->getOffset(), X86II::MO_SECREL);
8385 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8386
8387 // The address of the thread local variable is the add of the thread
8388 // pointer with the offset of the variable.
8389 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008390 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008391
David Blaikie4d6ccb52012-01-20 21:51:11 +00008392 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008393}
8394
Chad Rosierb90d2a92012-01-03 23:19:12 +00008395/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8396/// and take a 2 x i32 value to shift plus a shift amount.
8397SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008398 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008399 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008400 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008401 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008402 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008403 SDValue ShOpLo = Op.getOperand(0);
8404 SDValue ShOpHi = Op.getOperand(1);
8405 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008406 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008407 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008408 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008409
Dan Gohman475871a2008-07-27 21:46:04 +00008410 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008411 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008412 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8413 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008414 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008415 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8416 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008417 }
Evan Chenge3413162006-01-09 18:33:28 +00008418
Owen Anderson825b72b2009-08-11 20:47:22 +00008419 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8420 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008421 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008422 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008423
Dan Gohman475871a2008-07-27 21:46:04 +00008424 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008425 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008426 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8427 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008428
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008429 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008430 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8431 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008432 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008433 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8434 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008435 }
8436
Dan Gohman475871a2008-07-27 21:46:04 +00008437 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008438 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008439}
Evan Chenga3195e82006-01-12 22:54:21 +00008440
Dan Gohmand858e902010-04-17 15:26:15 +00008441SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8442 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008443 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008444
Dale Johannesen0488fb62010-09-30 23:57:10 +00008445 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008446 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008447
Owen Anderson825b72b2009-08-11 20:47:22 +00008448 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008449 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008450
Eli Friedman36df4992009-05-27 00:47:34 +00008451 // These are really Legal; return the operand so the caller accepts it as
8452 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008453 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008454 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008455 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008456 Subtarget->is64Bit()) {
8457 return Op;
8458 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008459
Andrew Trickac6d9be2013-05-25 02:42:55 +00008460 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008461 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008462 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008463 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008464 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008465 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008466 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008467 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008468 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008469 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8470}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008471
Owen Andersone50ed302009-08-10 22:56:29 +00008472SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008473 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008474 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008475 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008476 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008477 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008478 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008479 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008480 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008481 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008482 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008483
Chris Lattner492a43e2010-09-22 01:28:21 +00008484 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008485
Stuart Hastings84be9582011-06-02 15:57:11 +00008486 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8487 MachineMemOperand *MMO;
8488 if (FI) {
8489 int SSFI = FI->getIndex();
8490 MMO =
8491 DAG.getMachineFunction()
8492 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8493 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8494 } else {
8495 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8496 StackSlot = StackSlot.getOperand(1);
8497 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008498 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008499 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8500 X86ISD::FILD, DL,
8501 Tys, Ops, array_lengthof(Ops),
8502 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008503
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008504 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008505 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008506 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008507
8508 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8509 // shouldn't be necessary except that RFP cannot be live across
8510 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008511 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008512 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8513 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008514 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008515 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008516 SDValue Ops[] = {
8517 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8518 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008519 MachineMemOperand *MMO =
8520 DAG.getMachineFunction()
8521 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008522 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008523
Chris Lattner492a43e2010-09-22 01:28:21 +00008524 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8525 Ops, array_lengthof(Ops),
8526 Op.getValueType(), MMO);
8527 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008528 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008529 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008530 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008531
Evan Cheng0db9fe62006-04-25 20:13:52 +00008532 return Result;
8533}
8534
Bill Wendling8b8a6362009-01-17 03:56:04 +00008535// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008536SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8537 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008538 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008539 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008540 movq %rax, %xmm0
8541 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8542 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8543 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008544 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008545 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008546 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008547 addpd %xmm1, %xmm0
8548 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008549 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008550
Andrew Trickac6d9be2013-05-25 02:42:55 +00008551 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008552 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008553
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008554 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008555 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008556 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008557 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008558
Chris Lattner97484792012-01-25 09:56:22 +00008559 SmallVector<Constant*,2> CV1;
8560 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008561 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8562 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008563 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008564 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8565 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008566 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008567 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008568
Bill Wendling397ae212012-01-05 02:13:20 +00008569 // Load the 64-bit value into an XMM register.
8570 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8571 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008572 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008573 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008574 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008575 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8576 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8577 CLod0);
8578
Owen Anderson825b72b2009-08-11 20:47:22 +00008579 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008580 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008581 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008582 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008583 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008584 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008585
Craig Topperd0a31172012-01-10 06:37:29 +00008586 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008587 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8588 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8589 } else {
8590 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8591 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8592 S2F, 0x4E, DAG);
8593 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8594 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8595 Sub);
8596 }
8597
8598 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008599 DAG.getIntPtrConstant(0));
8600}
8601
Bill Wendling8b8a6362009-01-17 03:56:04 +00008602// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008603SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8604 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008605 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008606 // FP constant to bias correct the final result.
8607 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008608 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008609
8610 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008611 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008612 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008613
Eli Friedmanf3704762011-08-29 21:15:46 +00008614 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008615 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008616
Owen Anderson825b72b2009-08-11 20:47:22 +00008617 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008618 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008619 DAG.getIntPtrConstant(0));
8620
8621 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008622 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008623 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008624 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008625 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008626 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008627 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008628 MVT::v2f64, Bias)));
8629 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008630 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008631 DAG.getIntPtrConstant(0));
8632
8633 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008634 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008635
8636 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008637 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008638
Craig Topper69947b92012-04-23 06:57:04 +00008639 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008640 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008641 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008642 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008643 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008644
8645 // Handle final rounding.
8646 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008647}
8648
Michael Liaoa7554632012-10-23 17:36:08 +00008649SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8650 SelectionDAG &DAG) const {
8651 SDValue N0 = Op.getOperand(0);
8652 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008653 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008654
8655 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8656 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8657 "Custom UINT_TO_FP is not supported!");
8658
Craig Topperb99bafe2013-01-21 06:21:54 +00008659 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8660 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008661 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8662 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8663}
8664
Dan Gohmand858e902010-04-17 15:26:15 +00008665SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8666 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008667 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008668 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008669
Michael Liaoa7554632012-10-23 17:36:08 +00008670 if (Op.getValueType().isVector())
8671 return lowerUINT_TO_FP_vec(Op, DAG);
8672
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008673 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008674 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8675 // the optimization here.
8676 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008677 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008678
Owen Andersone50ed302009-08-10 22:56:29 +00008679 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008680 EVT DstVT = Op.getValueType();
8681 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008682 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008683 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008684 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008685 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008686 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008687
8688 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008689 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008690 if (SrcVT == MVT::i32) {
8691 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8692 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8693 getPointerTy(), StackSlot, WordOff);
8694 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008695 StackSlot, MachinePointerInfo(),
8696 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008697 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008698 OffsetSlot, MachinePointerInfo(),
8699 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008700 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8701 return Fild;
8702 }
8703
8704 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8705 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008706 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008707 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008708 // For i64 source, we need to add the appropriate power of 2 if the input
8709 // was negative. This is the same as the optimization in
8710 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8711 // we must be careful to do the computation in x87 extended precision, not
8712 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008713 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8714 MachineMemOperand *MMO =
8715 DAG.getMachineFunction()
8716 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8717 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008718
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008719 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8720 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008721 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8722 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008723
8724 APInt FF(32, 0x5F800000ULL);
8725
8726 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008727 SDValue SignSet = DAG.getSetCC(dl,
8728 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008729 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8730 ISD::SETLT);
8731
8732 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8733 SDValue FudgePtr = DAG.getConstantPool(
8734 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8735 getPointerTy());
8736
8737 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8738 SDValue Zero = DAG.getIntPtrConstant(0);
8739 SDValue Four = DAG.getIntPtrConstant(4);
8740 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8741 Zero, Four);
8742 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8743
8744 // Load the value out, extending it from f32 to f80.
8745 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008746 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008747 FudgePtr, MachinePointerInfo::getConstantPool(),
8748 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008749 // Extend everything to 80 bits to force it to be done on x87.
8750 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8751 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008752}
8753
Craig Topperb99bafe2013-01-21 06:21:54 +00008754std::pair<SDValue,SDValue>
8755X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8756 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008757 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008758
Owen Andersone50ed302009-08-10 22:56:29 +00008759 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008760
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008761 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008762 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8763 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008764 }
8765
Owen Anderson825b72b2009-08-11 20:47:22 +00008766 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8767 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008768 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008769
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008770 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008771 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008772 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008773 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008774 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008775 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008776 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008777 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008778
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008779 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8780 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008781 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008782 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008783 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008784 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008785
Evan Cheng0db9fe62006-04-25 20:13:52 +00008786 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008787 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8788 Opc = X86ISD::WIN_FTOL;
8789 else
8790 switch (DstTy.getSimpleVT().SimpleTy) {
8791 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8792 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8793 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8794 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8795 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008796
Dan Gohman475871a2008-07-27 21:46:04 +00008797 SDValue Chain = DAG.getEntryNode();
8798 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008799 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008800 // FIXME This causes a redundant load/store if the SSE-class value is already
8801 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008802 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008803 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008804 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008805 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008806 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008807 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008808 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008809 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008810 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008811
Chris Lattner492a43e2010-09-22 01:28:21 +00008812 MachineMemOperand *MMO =
8813 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8814 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008815 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8816 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008817 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008818 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008819 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8820 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008821
Chris Lattner07290932010-09-22 01:05:16 +00008822 MachineMemOperand *MMO =
8823 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8824 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008825
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008826 if (Opc != X86ISD::WIN_FTOL) {
8827 // Build the FP_TO_INT*_IN_MEM
8828 SDValue Ops[] = { Chain, Value, StackSlot };
8829 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008830 Ops, array_lengthof(Ops), DstTy,
8831 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008832 return std::make_pair(FIST, StackSlot);
8833 } else {
8834 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8835 DAG.getVTList(MVT::Other, MVT::Glue),
8836 Chain, Value);
8837 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8838 MVT::i32, ftol.getValue(1));
8839 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8840 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008841 SDValue Ops[] = { eax, edx };
8842 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008843 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8844 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008845 return std::make_pair(pair, SDValue());
8846 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008847}
8848
Nadav Rotem0509db22012-12-28 05:45:24 +00008849static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8850 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008851 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008852 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008853 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008854 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008855
8856 // Optimize vectors in AVX mode:
8857 //
8858 // v8i16 -> v8i32
8859 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8860 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8861 // Concat upper and lower parts.
8862 //
8863 // v4i32 -> v4i64
8864 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8865 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8866 // Concat upper and lower parts.
8867 //
8868
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008869 if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8870 ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
Nadav Rotem0509db22012-12-28 05:45:24 +00008871 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8872 return SDValue();
8873
8874 if (Subtarget->hasInt256())
8875 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8876
8877 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8878 SDValue Undef = DAG.getUNDEF(InVT);
8879 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8880 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8881 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8882
Craig Toppera080daf2013-01-20 21:50:27 +00008883 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008884 VT.getVectorNumElements()/2);
8885
8886 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8887 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8888
8889 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8890}
8891
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008892static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8893 SelectionDAG &DAG) {
8894 MVT VT = Op->getValueType(0).getSimpleVT();
8895 SDValue In = Op->getOperand(0);
8896 MVT InVT = In.getValueType().getSimpleVT();
8897 SDLoc DL(Op);
8898 unsigned int NumElts = VT.getVectorNumElements();
8899 if (NumElts != 8 && NumElts != 16)
8900 return SDValue();
8901
8902 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8903 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8904
8905 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8906 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8907 // Now we have only mask extension
8908 assert(InVT.getVectorElementType() == MVT::i1);
8909 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8910 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8911 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8912 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8913 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8914 MachinePointerInfo::getConstantPool(),
8915 false, false, false, Alignment);
8916
8917 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8918 if (VT.is512BitVector())
8919 return Brcst;
8920 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8921}
8922
Craig Topperff79bc62013-08-18 08:53:01 +00008923static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8924 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008925 if (Subtarget->hasFp256()) {
8926 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8927 if (Res.getNode())
8928 return Res;
8929 }
8930
8931 return SDValue();
8932}
Craig Topperff79bc62013-08-18 08:53:01 +00008933
8934static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8935 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008936 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008937 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008938 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008939 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008940
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008941 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8942 return LowerZERO_EXTEND_AVX512(Op, DAG);
8943
Nadav Rotem0509db22012-12-28 05:45:24 +00008944 if (Subtarget->hasFp256()) {
8945 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8946 if (Res.getNode())
8947 return Res;
8948 }
8949
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008950 assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
8951 VT.getVectorNumElements() != SVT.getVectorNumElements());
8952 return SDValue();
Michael Liaoa7554632012-10-23 17:36:08 +00008953}
8954
Craig Topperd713c0f2013-01-20 21:34:37 +00008955SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008956 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008957 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008958 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008959 MVT InVT = In.getSimpleValueType();
8960 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8961 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008962
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008963 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8964 if (VT.getVectorElementType().getSizeInBits() >=8)
8965 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8966
8967 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8968 unsigned NumElts = InVT.getVectorNumElements();
8969 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8970 if (InVT.getSizeInBits() < 512) {
8971 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8972 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8973 InVT = ExtVT;
8974 }
8975 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8976 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8977 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8978 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8979 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8980 MachinePointerInfo::getConstantPool(),
8981 false, false, false, Alignment);
8982 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8983 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8984 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8985 }
8986
8987 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00008988 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8989 if (Subtarget->hasInt256()) {
8990 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8991 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8992 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8993 ShufMask);
8994 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8995 DAG.getIntPtrConstant(0));
8996 }
8997
8998 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8999 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9000 DAG.getIntPtrConstant(0));
9001 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9002 DAG.getIntPtrConstant(2));
9003
9004 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9005 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9006
9007 // The PSHUFD mask:
9008 static const int ShufMask1[] = {0, 2, 0, 0};
9009 SDValue Undef = DAG.getUNDEF(VT);
9010 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9011 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9012
9013 // The MOVLHPS mask:
9014 static const int ShufMask2[] = {0, 1, 4, 5};
9015 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9016 }
9017
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009018 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009019 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9020 if (Subtarget->hasInt256()) {
9021 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9022
9023 SmallVector<SDValue,32> pshufbMask;
9024 for (unsigned i = 0; i < 2; ++i) {
9025 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9026 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9027 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9028 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9029 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9030 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9031 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9032 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9033 for (unsigned j = 0; j < 8; ++j)
9034 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9035 }
9036 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9037 &pshufbMask[0], 32);
9038 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9039 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9040
9041 static const int ShufMask[] = {0, 2, -1, -1};
9042 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9043 &ShufMask[0]);
9044 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9045 DAG.getIntPtrConstant(0));
9046 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9047 }
9048
9049 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9050 DAG.getIntPtrConstant(0));
9051
9052 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9053 DAG.getIntPtrConstant(4));
9054
9055 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9056 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9057
9058 // The PSHUFB mask:
9059 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9060 -1, -1, -1, -1, -1, -1, -1, -1};
9061
9062 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9063 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9064 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9065
9066 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9067 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9068
9069 // The MOVLHPS Mask:
9070 static const int ShufMask2[] = {0, 1, 4, 5};
9071 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9072 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9073 }
9074
9075 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009076 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009077 return SDValue();
9078
Nadav Rotem3c22a442012-12-27 07:45:10 +00009079 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009080
9081 unsigned NumElems = VT.getVectorNumElements();
9082 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9083 NumElems * 2);
9084
Michael Liaobedcbd42012-10-16 18:14:11 +00009085 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9086 // Prepare truncation shuffle mask
9087 for (unsigned i = 0; i != NumElems; ++i)
9088 MaskVec[i] = i * 2;
9089 SDValue V = DAG.getVectorShuffle(NVT, DL,
9090 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9091 DAG.getUNDEF(NVT), &MaskVec[0]);
9092 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9093 DAG.getIntPtrConstant(0));
9094}
9095
Dan Gohmand858e902010-04-17 15:26:15 +00009096SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9097 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009098 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009099 if (VT.isVector()) {
9100 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009101 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9102 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009103 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009104 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009105 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009106
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009107 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9108 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009109 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009110 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9111 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009112
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009113 if (StackSlot.getNode())
9114 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009115 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009116 FIST, StackSlot, MachinePointerInfo(),
9117 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009118
9119 // The node is the result.
9120 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009121}
9122
Dan Gohmand858e902010-04-17 15:26:15 +00009123SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9124 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009125 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9126 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009127 SDValue FIST = Vals.first, StackSlot = Vals.second;
9128 assert(FIST.getNode() && "Unexpected failure");
9129
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009130 if (StackSlot.getNode())
9131 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009132 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009133 FIST, StackSlot, MachinePointerInfo(),
9134 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009135
9136 // The node is the result.
9137 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009138}
9139
Craig Topperb84b4232013-01-21 06:13:28 +00009140static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009141 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009142 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009143 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009144 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009145
9146 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9147
9148 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9149 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9150 In, DAG.getUNDEF(SVT)));
9151}
9152
Craig Topper43620672012-09-08 07:31:51 +00009153SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009154 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009155 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009156 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009157 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009158 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9159 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009160 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009161 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009162 }
Craig Topper43620672012-09-08 07:31:51 +00009163 Constant *C;
9164 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009165 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9166 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009167 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009168 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9169 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009170 C = ConstantVector::getSplat(NumElts, C);
9171 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9172 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009173 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009174 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009175 false, false, false, Alignment);
9176 if (VT.isVector()) {
9177 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9178 return DAG.getNode(ISD::BITCAST, dl, VT,
9179 DAG.getNode(ISD::AND, dl, ANDVT,
9180 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9181 Op.getOperand(0)),
9182 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9183 }
Dale Johannesenace16102009-02-03 19:33:06 +00009184 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009185}
9186
Dan Gohmand858e902010-04-17 15:26:15 +00009187SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009188 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009189 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009190 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009191 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009192 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9193 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009194 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009195 NumElts = VT.getVectorNumElements();
9196 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009197 Constant *C;
9198 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009199 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9200 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009201 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009202 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9203 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009204 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009205 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9206 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009207 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009208 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009209 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009210 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009211 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009212 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009213 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009214 DAG.getNode(ISD::BITCAST, dl, XORVT,
9215 Op.getOperand(0)),
9216 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009217 }
Craig Topper69947b92012-04-23 06:57:04 +00009218
9219 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009220}
9221
Dan Gohmand858e902010-04-17 15:26:15 +00009222SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009223 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009224 SDValue Op0 = Op.getOperand(0);
9225 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009226 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009227 MVT VT = Op.getSimpleValueType();
9228 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009229
9230 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009231 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009232 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009233 SrcVT = VT;
9234 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009235 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009236 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009237 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009238 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009239 }
9240
9241 // At this point the operands and the result should have the same
9242 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009243
Evan Cheng68c47cb2007-01-05 07:55:56 +00009244 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009245 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009246 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009247 const fltSemantics &Sem = APFloat::IEEEdouble;
9248 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9249 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009250 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009251 const fltSemantics &Sem = APFloat::IEEEsingle;
9252 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9253 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9254 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9255 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009256 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009257 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009258 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009259 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009260 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009261 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009262 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009263
9264 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009265 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009266 // Op0 is MVT::f32, Op1 is MVT::f64.
9267 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9268 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9269 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009270 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009271 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009272 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009273 }
9274
Evan Cheng73d6cf12007-01-05 21:37:56 +00009275 // Clear first operand sign bit.
9276 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009277 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009278 const fltSemantics &Sem = APFloat::IEEEdouble;
9279 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9280 APInt(64, ~(1ULL << 63)))));
9281 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009282 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009283 const fltSemantics &Sem = APFloat::IEEEsingle;
9284 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9285 APInt(32, ~(1U << 31)))));
9286 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9287 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9288 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009289 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009290 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009291 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009292 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009293 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009294 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009295 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009296
9297 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009298 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009299}
9300
Craig Topper55b24052012-09-11 06:15:32 +00009301static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009302 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009303 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009304 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009305
9306 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9307 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9308 DAG.getConstant(1, VT));
9309 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9310}
9311
Michael Liaof966e4e2012-09-13 20:24:54 +00009312// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9313//
Craig Topper158ec072013-08-14 07:34:43 +00009314static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9315 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009316 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9317
9318 if (!Subtarget->hasSSE41())
9319 return SDValue();
9320
9321 if (!Op->hasOneUse())
9322 return SDValue();
9323
9324 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009325 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009326
9327 SmallVector<SDValue, 8> Opnds;
9328 DenseMap<SDValue, unsigned> VecInMap;
9329 EVT VT = MVT::Other;
9330
9331 // Recognize a special case where a vector is casted into wide integer to
9332 // test all 0s.
9333 Opnds.push_back(N->getOperand(0));
9334 Opnds.push_back(N->getOperand(1));
9335
9336 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009337 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009338 // BFS traverse all OR'd operands.
9339 if (I->getOpcode() == ISD::OR) {
9340 Opnds.push_back(I->getOperand(0));
9341 Opnds.push_back(I->getOperand(1));
9342 // Re-evaluate the number of nodes to be traversed.
9343 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9344 continue;
9345 }
9346
9347 // Quit if a non-EXTRACT_VECTOR_ELT
9348 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9349 return SDValue();
9350
9351 // Quit if without a constant index.
9352 SDValue Idx = I->getOperand(1);
9353 if (!isa<ConstantSDNode>(Idx))
9354 return SDValue();
9355
9356 SDValue ExtractedFromVec = I->getOperand(0);
9357 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9358 if (M == VecInMap.end()) {
9359 VT = ExtractedFromVec.getValueType();
9360 // Quit if not 128/256-bit vector.
9361 if (!VT.is128BitVector() && !VT.is256BitVector())
9362 return SDValue();
9363 // Quit if not the same type.
9364 if (VecInMap.begin() != VecInMap.end() &&
9365 VT != VecInMap.begin()->first.getValueType())
9366 return SDValue();
9367 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9368 }
9369 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9370 }
9371
9372 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009373 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009374
9375 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9376 SmallVector<SDValue, 8> VecIns;
9377
9378 for (DenseMap<SDValue, unsigned>::const_iterator
9379 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9380 // Quit if not all elements are used.
9381 if (I->second != FullMask)
9382 return SDValue();
9383 VecIns.push_back(I->first);
9384 }
9385
9386 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9387
9388 // Cast all vectors into TestVT for PTEST.
9389 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9390 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9391
9392 // If more than one full vectors are evaluated, OR them first before PTEST.
9393 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9394 // Each iteration will OR 2 nodes and append the result until there is only
9395 // 1 node left, i.e. the final OR'd value of all vectors.
9396 SDValue LHS = VecIns[Slot];
9397 SDValue RHS = VecIns[Slot + 1];
9398 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9399 }
9400
9401 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9402 VecIns.back(), VecIns.back());
9403}
9404
Dan Gohman076aee32009-03-04 19:44:21 +00009405/// Emit nodes that will be selected as "test Op0,Op0", or something
9406/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009407SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009408 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009409 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009410
Dan Gohman31125812009-03-07 01:58:32 +00009411 // CF and OF aren't always set the way we want. Determine which
9412 // of these we need.
9413 bool NeedCF = false;
9414 bool NeedOF = false;
9415 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009416 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009417 case X86::COND_A: case X86::COND_AE:
9418 case X86::COND_B: case X86::COND_BE:
9419 NeedCF = true;
9420 break;
9421 case X86::COND_G: case X86::COND_GE:
9422 case X86::COND_L: case X86::COND_LE:
9423 case X86::COND_O: case X86::COND_NO:
9424 NeedOF = true;
9425 break;
Dan Gohman31125812009-03-07 01:58:32 +00009426 }
9427
Dan Gohman076aee32009-03-04 19:44:21 +00009428 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009429 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9430 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009431 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9432 // Emit a CMP with 0, which is the TEST pattern.
9433 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9434 DAG.getConstant(0, Op.getValueType()));
9435
9436 unsigned Opcode = 0;
9437 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009438
9439 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009440 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009441 // of the arithmetic instruction and use a reduced bit-width instruction.
9442 bool NeedTruncation = false;
9443 SDValue ArithOp = Op;
9444 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9445 SDValue Arith = Op->getOperand(0);
9446 // Both the trunc and the arithmetic op need to have one user each.
9447 if (Arith->hasOneUse())
9448 switch (Arith.getOpcode()) {
9449 default: break;
9450 case ISD::ADD:
9451 case ISD::SUB:
9452 case ISD::AND:
9453 case ISD::OR:
9454 case ISD::XOR: {
9455 NeedTruncation = true;
9456 ArithOp = Arith;
9457 }
9458 }
9459 }
9460
9461 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9462 // which may be the result of a CAST. We use the variable 'Op', which is the
9463 // non-casted variable when we check for possible users.
9464 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009465 case ISD::ADD:
9466 // Due to an isel shortcoming, be conservative if this add is likely to be
9467 // selected as part of a load-modify-store instruction. When the root node
9468 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9469 // uses of other nodes in the match, such as the ADD in this case. This
9470 // leads to the ADD being left around and reselected, with the result being
9471 // two adds in the output. Alas, even if none our users are stores, that
9472 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9473 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9474 // climbing the DAG back to the root, and it doesn't seem to be worth the
9475 // effort.
9476 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009477 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9478 if (UI->getOpcode() != ISD::CopyToReg &&
9479 UI->getOpcode() != ISD::SETCC &&
9480 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009481 goto default_case;
9482
9483 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009484 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009485 // An add of one will be selected as an INC.
9486 if (C->getAPIntValue() == 1) {
9487 Opcode = X86ISD::INC;
9488 NumOperands = 1;
9489 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009490 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009491
9492 // An add of negative one (subtract of one) will be selected as a DEC.
9493 if (C->getAPIntValue().isAllOnesValue()) {
9494 Opcode = X86ISD::DEC;
9495 NumOperands = 1;
9496 break;
9497 }
Dan Gohman076aee32009-03-04 19:44:21 +00009498 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009499
9500 // Otherwise use a regular EFLAGS-setting add.
9501 Opcode = X86ISD::ADD;
9502 NumOperands = 2;
9503 break;
9504 case ISD::AND: {
9505 // If the primary and result isn't used, don't bother using X86ISD::AND,
9506 // because a TEST instruction will be better.
9507 bool NonFlagUse = false;
9508 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9509 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9510 SDNode *User = *UI;
9511 unsigned UOpNo = UI.getOperandNo();
9512 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9513 // Look pass truncate.
9514 UOpNo = User->use_begin().getOperandNo();
9515 User = *User->use_begin();
9516 }
9517
9518 if (User->getOpcode() != ISD::BRCOND &&
9519 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009520 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009521 NonFlagUse = true;
9522 break;
9523 }
Dan Gohman076aee32009-03-04 19:44:21 +00009524 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009525
9526 if (!NonFlagUse)
9527 break;
9528 }
9529 // FALL THROUGH
9530 case ISD::SUB:
9531 case ISD::OR:
9532 case ISD::XOR:
9533 // Due to the ISEL shortcoming noted above, be conservative if this op is
9534 // likely to be selected as part of a load-modify-store instruction.
9535 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9536 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9537 if (UI->getOpcode() == ISD::STORE)
9538 goto default_case;
9539
9540 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009541 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009542 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009543 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009544 case ISD::XOR: Opcode = X86ISD::XOR; break;
9545 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009546 case ISD::OR: {
9547 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009548 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009549 if (EFLAGS.getNode())
9550 return EFLAGS;
9551 }
9552 Opcode = X86ISD::OR;
9553 break;
9554 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009555 }
9556
9557 NumOperands = 2;
9558 break;
9559 case X86ISD::ADD:
9560 case X86ISD::SUB:
9561 case X86ISD::INC:
9562 case X86ISD::DEC:
9563 case X86ISD::OR:
9564 case X86ISD::XOR:
9565 case X86ISD::AND:
9566 return SDValue(Op.getNode(), 1);
9567 default:
9568 default_case:
9569 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009570 }
9571
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009572 // If we found that truncation is beneficial, perform the truncation and
9573 // update 'Op'.
9574 if (NeedTruncation) {
9575 EVT VT = Op.getValueType();
9576 SDValue WideVal = Op->getOperand(0);
9577 EVT WideVT = WideVal.getValueType();
9578 unsigned ConvertedOp = 0;
9579 // Use a target machine opcode to prevent further DAGCombine
9580 // optimizations that may separate the arithmetic operations
9581 // from the setcc node.
9582 switch (WideVal.getOpcode()) {
9583 default: break;
9584 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9585 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9586 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9587 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9588 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9589 }
9590
9591 if (ConvertedOp) {
9592 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9593 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9594 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9595 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9596 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9597 }
9598 }
9599 }
9600
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009601 if (Opcode == 0)
9602 // Emit a CMP with 0, which is the TEST pattern.
9603 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9604 DAG.getConstant(0, Op.getValueType()));
9605
9606 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9607 SmallVector<SDValue, 4> Ops;
9608 for (unsigned i = 0; i != NumOperands; ++i)
9609 Ops.push_back(Op.getOperand(i));
9610
9611 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9612 DAG.ReplaceAllUsesWith(Op, New);
9613 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009614}
9615
9616/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9617/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009618SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009619 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009620 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9621 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009622 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009623
Andrew Trickac6d9be2013-05-25 02:42:55 +00009624 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009625 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9626 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9627 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9628 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9629 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9630 Op0, Op1);
9631 return SDValue(Sub.getNode(), 1);
9632 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009633 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009634}
9635
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009636/// Convert a comparison if required by the subtarget.
9637SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9638 SelectionDAG &DAG) const {
9639 // If the subtarget does not support the FUCOMI instruction, floating-point
9640 // comparisons have to be converted.
9641 if (Subtarget->hasCMov() ||
9642 Cmp.getOpcode() != X86ISD::CMP ||
9643 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9644 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9645 return Cmp;
9646
9647 // The instruction selector will select an FUCOM instruction instead of
9648 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9649 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9650 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009651 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009652 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9653 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9654 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9655 DAG.getConstant(8, MVT::i8));
9656 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9657 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9658}
9659
Evan Cheng4e544802012-12-05 00:10:38 +00009660static bool isAllOnes(SDValue V) {
9661 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9662 return C && C->isAllOnesValue();
9663}
9664
Evan Chengd40d03e2010-01-06 19:38:29 +00009665/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9666/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009667SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009668 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009669 SDValue Op0 = And.getOperand(0);
9670 SDValue Op1 = And.getOperand(1);
9671 if (Op0.getOpcode() == ISD::TRUNCATE)
9672 Op0 = Op0.getOperand(0);
9673 if (Op1.getOpcode() == ISD::TRUNCATE)
9674 Op1 = Op1.getOperand(0);
9675
Evan Chengd40d03e2010-01-06 19:38:29 +00009676 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009677 if (Op1.getOpcode() == ISD::SHL)
9678 std::swap(Op0, Op1);
9679 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009680 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9681 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009682 // If we looked past a truncate, check that it's only truncating away
9683 // known zeros.
9684 unsigned BitWidth = Op0.getValueSizeInBits();
9685 unsigned AndBitWidth = And.getValueSizeInBits();
9686 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009687 APInt Zeros, Ones;
9688 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009689 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9690 return SDValue();
9691 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009692 LHS = Op1;
9693 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009694 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009695 } else if (Op1.getOpcode() == ISD::Constant) {
9696 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009697 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009698 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009699
9700 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009701 LHS = AndLHS.getOperand(0);
9702 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009703 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009704
9705 // Use BT if the immediate can't be encoded in a TEST instruction.
9706 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9707 LHS = AndLHS;
9708 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9709 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009710 }
Evan Cheng0488db92007-09-25 01:57:46 +00009711
Evan Chengd40d03e2010-01-06 19:38:29 +00009712 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009713 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009714 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009715 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009716 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009717 // Also promote i16 to i32 for performance / code size reason.
9718 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009719 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009720 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009721
Evan Chengd40d03e2010-01-06 19:38:29 +00009722 // If the operand types disagree, extend the shift amount to match. Since
9723 // BT ignores high bits (like shifts) we can use anyextend.
9724 if (LHS.getValueType() != RHS.getValueType())
9725 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009726
Evan Chengd40d03e2010-01-06 19:38:29 +00009727 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009728 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009729 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9730 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009731 }
9732
Evan Cheng54de3ea2010-01-05 06:52:31 +00009733 return SDValue();
9734}
9735
Benjamin Kramer75311b72013-08-04 12:05:16 +00009736/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9737/// mask CMPs.
9738static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9739 SDValue &Op1) {
9740 unsigned SSECC;
9741 bool Swap = false;
9742
9743 // SSE Condition code mapping:
9744 // 0 - EQ
9745 // 1 - LT
9746 // 2 - LE
9747 // 3 - UNORD
9748 // 4 - NEQ
9749 // 5 - NLT
9750 // 6 - NLE
9751 // 7 - ORD
9752 switch (SetCCOpcode) {
9753 default: llvm_unreachable("Unexpected SETCC condition");
9754 case ISD::SETOEQ:
9755 case ISD::SETEQ: SSECC = 0; break;
9756 case ISD::SETOGT:
9757 case ISD::SETGT: Swap = true; // Fallthrough
9758 case ISD::SETLT:
9759 case ISD::SETOLT: SSECC = 1; break;
9760 case ISD::SETOGE:
9761 case ISD::SETGE: Swap = true; // Fallthrough
9762 case ISD::SETLE:
9763 case ISD::SETOLE: SSECC = 2; break;
9764 case ISD::SETUO: SSECC = 3; break;
9765 case ISD::SETUNE:
9766 case ISD::SETNE: SSECC = 4; break;
9767 case ISD::SETULE: Swap = true; // Fallthrough
9768 case ISD::SETUGE: SSECC = 5; break;
9769 case ISD::SETULT: Swap = true; // Fallthrough
9770 case ISD::SETUGT: SSECC = 6; break;
9771 case ISD::SETO: SSECC = 7; break;
9772 case ISD::SETUEQ:
9773 case ISD::SETONE: SSECC = 8; break;
9774 }
9775 if (Swap)
9776 std::swap(Op0, Op1);
9777
9778 return SSECC;
9779}
9780
Craig Topper89af15e2011-09-18 08:03:58 +00009781// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009782// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009783static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009784 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009785
Craig Topper7a9a28b2012-08-12 02:23:29 +00009786 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009787 "Unsupported value type for operation");
9788
Craig Topper66ddd152012-04-27 22:54:43 +00009789 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009790 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009791 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009792
9793 // Extract the LHS vectors
9794 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009795 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9796 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009797
9798 // Extract the RHS vectors
9799 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009800 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9801 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009802
9803 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009804 MVT EltVT = VT.getVectorElementType();
9805 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009806 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9807 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9808 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9809}
9810
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009811static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009812 SDValue Op0 = Op.getOperand(0);
9813 SDValue Op1 = Op.getOperand(1);
9814 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009815 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009816
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009817 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009818 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009819 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009820
9821 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9822 SDLoc dl(Op);
9823
9824 bool Unsigned = false;
9825 unsigned SSECC;
9826 switch (SetCCOpcode) {
9827 default: llvm_unreachable("Unexpected SETCC condition");
9828 case ISD::SETNE: SSECC = 4; break;
9829 case ISD::SETEQ: SSECC = 0; break;
9830 case ISD::SETUGT: Unsigned = true;
9831 case ISD::SETGT: SSECC = 6; break; // NLE
9832 case ISD::SETULT: Unsigned = true;
9833 case ISD::SETLT: SSECC = 1; break;
9834 case ISD::SETUGE: Unsigned = true;
9835 case ISD::SETGE: SSECC = 5; break; // NLT
9836 case ISD::SETULE: Unsigned = true;
9837 case ISD::SETLE: SSECC = 2; break;
9838 }
9839 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9840 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9841 DAG.getConstant(SSECC, MVT::i8));
9842
9843}
9844
Craig Topper26827f32013-01-20 09:02:22 +00009845static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9846 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009847 SDValue Op0 = Op.getOperand(0);
9848 SDValue Op1 = Op.getOperand(1);
9849 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009850 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009851 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009852 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009853 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009854
9855 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009856#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009857 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009858 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9859#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009860
Benjamin Kramer75311b72013-08-04 12:05:16 +00009861 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009862 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009863 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009864 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009865 Opc = X86ISD::CMPM;
9866 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009867 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009868 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009869 unsigned CC0, CC1;
9870 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009871 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009872 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9873 } else {
9874 assert(SetCCOpcode == ISD::SETONE);
9875 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009876 }
Craig Topper523908d2012-08-13 02:34:03 +00009877
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009878 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009879 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009880 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009881 DAG.getConstant(CC1, MVT::i8));
9882 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009883 }
9884 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009885 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009886 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009887 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009888
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009889 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009890 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009891 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009892
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009893 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9894 EVT OpVT = Op1.getValueType();
9895 if (Subtarget->hasAVX512()) {
9896 if (Op1.getValueType().is512BitVector() ||
9897 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9898 return LowerIntVSETCC_AVX512(Op, DAG);
9899
9900 // In AVX-512 architecture setcc returns mask with i1 elements,
9901 // But there is no compare instruction for i8 and i16 elements.
9902 // We are not talking about 512-bit operands in this case, these
9903 // types are illegal.
9904 if (MaskResult &&
9905 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9906 OpVT.getVectorElementType().getSizeInBits() >= 8))
9907 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9908 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9909 }
9910
Nate Begeman30a0de92008-07-17 16:51:19 +00009911 // We are handling one of the integer comparisons here. Since SSE only has
9912 // GT and EQ comparisons for integer, swapping operands and multiple
9913 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009914 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009915 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9916
Nate Begeman30a0de92008-07-17 16:51:19 +00009917 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009918 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009919 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009920 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009921 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009922 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009923 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009924 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9925 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009926 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009927 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9928 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009929 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009930 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9931 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009932 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009933
9934 // Special case: Use min/max operations for SETULE/SETUGE
9935 MVT VET = VT.getVectorElementType();
9936 bool hasMinMax =
9937 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9938 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9939
9940 if (hasMinMax) {
9941 switch (SetCCOpcode) {
9942 default: break;
9943 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9944 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9945 }
9946
9947 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9948 }
9949
Nate Begeman30a0de92008-07-17 16:51:19 +00009950 if (Swap)
9951 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009952
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009953 // Check that the operation in question is available (most are plain SSE2,
9954 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009955 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009956 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9957 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9958
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009959 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009960 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9961 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9962
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009963 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009964 // bits of the inputs before performing those operations. The lower
9965 // compare is always unsigned.
9966 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009967 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009968 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9969 } else {
9970 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9971 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9972 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9973 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009974 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009975 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9976 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009977
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009978 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9979 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9980 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9981
9982 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009983 static const int MaskHi[] = { 1, 1, 3, 3 };
9984 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009985 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9986 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9987 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9988
9989 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9990 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9991
9992 if (Invert)
9993 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9994
9995 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9996 }
9997
Benjamin Kramer382ed782012-12-25 12:54:19 +00009998 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9999 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +000010000 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010001 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10002
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010003 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010004 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10005 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10006
10007 // Do the compare.
10008 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10009
10010 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010011 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010012 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10013 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010014
10015 if (Invert)
10016 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10017
10018 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10019 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010020 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010021
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010022 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10023 // bits of the inputs before performing those operations.
10024 if (FlipSigns) {
10025 EVT EltVT = VT.getVectorElementType();
10026 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10027 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10028 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10029 }
10030
Dale Johannesenace16102009-02-03 19:33:06 +000010031 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010032
10033 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010034 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010035 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010036
10037 if (MinMax)
10038 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010039
Nate Begeman30a0de92008-07-17 16:51:19 +000010040 return Result;
10041}
Evan Cheng0488db92007-09-25 01:57:46 +000010042
Craig Topper26827f32013-01-20 09:02:22 +000010043SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10044
Craig Topper5a0910b2013-08-15 02:33:50 +000010045 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010046
10047 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10048
10049 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10050 SDValue Op0 = Op.getOperand(0);
10051 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010052 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010053 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10054
10055 // Optimize to BT if possible.
10056 // Lower (X & (1 << N)) == 0 to BT(X, N).
10057 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10058 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10059 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10060 Op1.getOpcode() == ISD::Constant &&
10061 cast<ConstantSDNode>(Op1)->isNullValue() &&
10062 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10063 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10064 if (NewSetCC.getNode())
10065 return NewSetCC;
10066 }
10067
10068 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10069 // these.
10070 if (Op1.getOpcode() == ISD::Constant &&
10071 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10072 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10073 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10074
10075 // If the input is a setcc, then reuse the input setcc or use a new one with
10076 // the inverted condition.
10077 if (Op0.getOpcode() == X86ISD::SETCC) {
10078 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10079 bool Invert = (CC == ISD::SETNE) ^
10080 cast<ConstantSDNode>(Op1)->isNullValue();
10081 if (!Invert) return Op0;
10082
10083 CCode = X86::GetOppositeBranchCondition(CCode);
10084 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10085 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10086 }
10087 }
10088
Craig Topper5a0910b2013-08-15 02:33:50 +000010089 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010090 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10091 if (X86CC == X86::COND_INVALID)
10092 return SDValue();
10093
10094 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10095 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10096 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10097 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10098}
10099
Evan Cheng370e5342008-12-03 08:38:43 +000010100// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010101static bool isX86LogicalCmp(SDValue Op) {
10102 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010103 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10104 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010105 return true;
10106 if (Op.getResNo() == 1 &&
10107 (Opc == X86ISD::ADD ||
10108 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010109 Opc == X86ISD::ADC ||
10110 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010111 Opc == X86ISD::SMUL ||
10112 Opc == X86ISD::UMUL ||
10113 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010114 Opc == X86ISD::DEC ||
10115 Opc == X86ISD::OR ||
10116 Opc == X86ISD::XOR ||
10117 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010118 return true;
10119
Chris Lattner9637d5b2010-12-05 07:49:54 +000010120 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10121 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010122
Dan Gohman076aee32009-03-04 19:44:21 +000010123 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010124}
10125
Chris Lattnera2b56002010-12-05 01:23:24 +000010126static bool isZero(SDValue V) {
10127 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10128 return C && C->isNullValue();
10129}
10130
Evan Chengb64dd5f2012-08-07 22:21:00 +000010131static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10132 if (V.getOpcode() != ISD::TRUNCATE)
10133 return false;
10134
10135 SDValue VOp0 = V.getOperand(0);
10136 unsigned InBits = VOp0.getValueSizeInBits();
10137 unsigned Bits = V.getValueSizeInBits();
10138 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10139}
10140
Dan Gohmand858e902010-04-17 15:26:15 +000010141SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010142 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010143 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010144 SDValue Op1 = Op.getOperand(1);
10145 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010146 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010147 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010148 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010149
Benjamin Kramer75311b72013-08-04 12:05:16 +000010150 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10151 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10152 // sequence later on.
10153 if (Cond.getOpcode() == ISD::SETCC &&
10154 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10155 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10156 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10157 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10158 int SSECC = translateX86FSETCC(
10159 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10160
10161 if (SSECC != 8) {
10162 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10163 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10164 DAG.getConstant(SSECC, MVT::i8));
10165 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10166 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10167 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10168 }
10169 }
10170
Dan Gohman1a492952009-10-20 16:22:37 +000010171 if (Cond.getOpcode() == ISD::SETCC) {
10172 SDValue NewCond = LowerSETCC(Cond, DAG);
10173 if (NewCond.getNode())
10174 Cond = NewCond;
10175 }
Evan Cheng734503b2006-09-11 02:19:56 +000010176
Chris Lattnera2b56002010-12-05 01:23:24 +000010177 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010178 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010179 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010180 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010181 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010182 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10183 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010184 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010185
Chris Lattnera2b56002010-12-05 01:23:24 +000010186 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010187
10188 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010189 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10190 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010191
10192 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010193 // Apply further optimizations for special cases
10194 // (select (x != 0), -1, 0) -> neg & sbb
10195 // (select (x == 0), 0, -1) -> neg & sbb
10196 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010197 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010198 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10199 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010200 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10201 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010202 CmpOp0);
10203 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10204 DAG.getConstant(X86::COND_B, MVT::i8),
10205 SDValue(Neg.getNode(), 1));
10206 return Res;
10207 }
10208
Chris Lattnera2b56002010-12-05 01:23:24 +000010209 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10210 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010211 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010212
Chris Lattner96908b12010-12-05 02:00:51 +000010213 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010214 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10215 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010216
Chris Lattner96908b12010-12-05 02:00:51 +000010217 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10218 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010219
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010220 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010221 if (N2C == 0 || !N2C->isNullValue())
10222 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10223 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010224 }
10225 }
10226
Chris Lattnera2b56002010-12-05 01:23:24 +000010227 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010228 if (Cond.getOpcode() == ISD::AND &&
10229 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10230 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010231 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010232 Cond = Cond.getOperand(0);
10233 }
10234
Evan Cheng3f41d662007-10-08 22:16:29 +000010235 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10236 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010237 unsigned CondOpcode = Cond.getOpcode();
10238 if (CondOpcode == X86ISD::SETCC ||
10239 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010240 CC = Cond.getOperand(0);
10241
Dan Gohman475871a2008-07-27 21:46:04 +000010242 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010243 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010244 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010245
Evan Cheng3f41d662007-10-08 22:16:29 +000010246 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010247 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010248 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010249 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010250
Chris Lattnerd1980a52009-03-12 06:52:53 +000010251 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10252 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010253 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010254 addTest = false;
10255 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010256 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10257 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10258 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10259 Cond.getOperand(0).getValueType() != MVT::i8)) {
10260 SDValue LHS = Cond.getOperand(0);
10261 SDValue RHS = Cond.getOperand(1);
10262 unsigned X86Opcode;
10263 unsigned X86Cond;
10264 SDVTList VTs;
10265 switch (CondOpcode) {
10266 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10267 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10268 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10269 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10270 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10271 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10272 default: llvm_unreachable("unexpected overflowing operator");
10273 }
10274 if (CondOpcode == ISD::UMULO)
10275 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10276 MVT::i32);
10277 else
10278 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10279
10280 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10281
10282 if (CondOpcode == ISD::UMULO)
10283 Cond = X86Op.getValue(2);
10284 else
10285 Cond = X86Op.getValue(1);
10286
10287 CC = DAG.getConstant(X86Cond, MVT::i8);
10288 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010289 }
10290
10291 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010292 // Look pass the truncate if the high bits are known zero.
10293 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10294 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010295
10296 // We know the result of AND is compared against zero. Try to match
10297 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010298 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010299 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010300 if (NewSetCC.getNode()) {
10301 CC = NewSetCC.getOperand(0);
10302 Cond = NewSetCC.getOperand(1);
10303 addTest = false;
10304 }
10305 }
10306 }
10307
10308 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010309 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010310 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010311 }
10312
Benjamin Kramere915ff32010-12-22 23:09:28 +000010313 // a < b ? -1 : 0 -> RES = ~setcc_carry
10314 // a < b ? 0 : -1 -> RES = setcc_carry
10315 // a >= b ? -1 : 0 -> RES = setcc_carry
10316 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010317 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010318 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010319 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10320
10321 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10322 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10323 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10324 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10325 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10326 return DAG.getNOT(DL, Res, Res.getValueType());
10327 return Res;
10328 }
10329 }
10330
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010331 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10332 // widen the cmov and push the truncate through. This avoids introducing a new
10333 // branch during isel and doesn't add any extensions.
10334 if (Op.getValueType() == MVT::i8 &&
10335 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10336 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10337 if (T1.getValueType() == T2.getValueType() &&
10338 // Blacklist CopyFromReg to avoid partial register stalls.
10339 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10340 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010341 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010342 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10343 }
10344 }
10345
Evan Cheng0488db92007-09-25 01:57:46 +000010346 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10347 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010348 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010349 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010350 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010351}
10352
Craig Topperff79bc62013-08-18 08:53:01 +000010353static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10354 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010355 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010356 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010357 SDLoc dl(Op);
10358
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010359 unsigned int NumElts = VT.getVectorNumElements();
10360 if (NumElts != 8 && NumElts != 16)
10361 return SDValue();
10362
10363 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010364 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10365
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010366 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10367 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10368
10369 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10370 Constant *C = ConstantInt::get(*DAG.getContext(),
10371 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10372
10373 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10374 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10375 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10376 MachinePointerInfo::getConstantPool(),
10377 false, false, false, Alignment);
10378 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10379 if (VT.is512BitVector())
10380 return Brcst;
10381 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010382}
10383
Craig Topperff79bc62013-08-18 08:53:01 +000010384static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10385 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010386 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010387 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010388 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010389 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010390
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010391 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10392 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10393
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010394 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
Benjamin Kramerbb41c752013-10-23 21:06:07 +000010395 (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10396 (VT != MVT::v16i16 || InVT != MVT::v16i8))
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010397 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010398
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010399 if (Subtarget->hasInt256())
10400 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010401
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010402 // Optimize vectors in AVX mode
10403 // Sign extend v8i16 to v8i32 and
10404 // v4i32 to v4i64
10405 //
10406 // Divide input vector into two parts
10407 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10408 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10409 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010410
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010411 unsigned NumElems = InVT.getVectorNumElements();
10412 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010413
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010414 SmallVector<int,8> ShufMask1(NumElems, -1);
10415 for (unsigned i = 0; i != NumElems/2; ++i)
10416 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010417
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010418 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010419
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010420 SmallVector<int,8> ShufMask2(NumElems, -1);
10421 for (unsigned i = 0; i != NumElems/2; ++i)
10422 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010423
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010424 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010425
Craig Toppera080daf2013-01-20 21:50:27 +000010426 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010427 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010428
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010429 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10430 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010431
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010432 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010433}
10434
Evan Cheng370e5342008-12-03 08:38:43 +000010435// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10436// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10437// from the AND / OR.
10438static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10439 Opc = Op.getOpcode();
10440 if (Opc != ISD::OR && Opc != ISD::AND)
10441 return false;
10442 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10443 Op.getOperand(0).hasOneUse() &&
10444 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10445 Op.getOperand(1).hasOneUse());
10446}
10447
Evan Cheng961d6d42009-02-02 08:19:07 +000010448// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10449// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010450static bool isXor1OfSetCC(SDValue Op) {
10451 if (Op.getOpcode() != ISD::XOR)
10452 return false;
10453 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10454 if (N1C && N1C->getAPIntValue() == 1) {
10455 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10456 Op.getOperand(0).hasOneUse();
10457 }
10458 return false;
10459}
10460
Dan Gohmand858e902010-04-17 15:26:15 +000010461SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010462 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010463 SDValue Chain = Op.getOperand(0);
10464 SDValue Cond = Op.getOperand(1);
10465 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010466 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010467 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010468 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010469
Dan Gohman1a492952009-10-20 16:22:37 +000010470 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010471 // Check for setcc([su]{add,sub,mul}o == 0).
10472 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10473 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10474 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10475 Cond.getOperand(0).getResNo() == 1 &&
10476 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10477 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10478 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10479 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10480 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10481 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10482 Inverted = true;
10483 Cond = Cond.getOperand(0);
10484 } else {
10485 SDValue NewCond = LowerSETCC(Cond, DAG);
10486 if (NewCond.getNode())
10487 Cond = NewCond;
10488 }
Dan Gohman1a492952009-10-20 16:22:37 +000010489 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010490#if 0
10491 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010492 else if (Cond.getOpcode() == X86ISD::ADD ||
10493 Cond.getOpcode() == X86ISD::SUB ||
10494 Cond.getOpcode() == X86ISD::SMUL ||
10495 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010496 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010497#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010498
Evan Chengad9c0a32009-12-15 00:53:42 +000010499 // Look pass (and (setcc_carry (cmp ...)), 1).
10500 if (Cond.getOpcode() == ISD::AND &&
10501 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10502 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010503 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010504 Cond = Cond.getOperand(0);
10505 }
10506
Evan Cheng3f41d662007-10-08 22:16:29 +000010507 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10508 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010509 unsigned CondOpcode = Cond.getOpcode();
10510 if (CondOpcode == X86ISD::SETCC ||
10511 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010512 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010513
Dan Gohman475871a2008-07-27 21:46:04 +000010514 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010515 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010516 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010517 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010518 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010519 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010520 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010521 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010522 default: break;
10523 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010524 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010525 // These can only come from an arithmetic instruction with overflow,
10526 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010527 Cond = Cond.getNode()->getOperand(1);
10528 addTest = false;
10529 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010530 }
Evan Cheng0488db92007-09-25 01:57:46 +000010531 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010532 }
10533 CondOpcode = Cond.getOpcode();
10534 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10535 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10536 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10537 Cond.getOperand(0).getValueType() != MVT::i8)) {
10538 SDValue LHS = Cond.getOperand(0);
10539 SDValue RHS = Cond.getOperand(1);
10540 unsigned X86Opcode;
10541 unsigned X86Cond;
10542 SDVTList VTs;
10543 switch (CondOpcode) {
10544 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10545 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10546 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10547 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10548 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10549 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10550 default: llvm_unreachable("unexpected overflowing operator");
10551 }
10552 if (Inverted)
10553 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10554 if (CondOpcode == ISD::UMULO)
10555 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10556 MVT::i32);
10557 else
10558 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10559
10560 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10561
10562 if (CondOpcode == ISD::UMULO)
10563 Cond = X86Op.getValue(2);
10564 else
10565 Cond = X86Op.getValue(1);
10566
10567 CC = DAG.getConstant(X86Cond, MVT::i8);
10568 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010569 } else {
10570 unsigned CondOpc;
10571 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10572 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010573 if (CondOpc == ISD::OR) {
10574 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10575 // two branches instead of an explicit OR instruction with a
10576 // separate test.
10577 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010578 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010579 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010580 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010581 Chain, Dest, CC, Cmp);
10582 CC = Cond.getOperand(1).getOperand(0);
10583 Cond = Cmp;
10584 addTest = false;
10585 }
10586 } else { // ISD::AND
10587 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10588 // two branches instead of an explicit AND instruction with a
10589 // separate test. However, we only do this if this block doesn't
10590 // have a fall-through edge, because this requires an explicit
10591 // jmp when the condition is false.
10592 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010593 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010594 Op.getNode()->hasOneUse()) {
10595 X86::CondCode CCode =
10596 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10597 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010598 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010599 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010600 // Look for an unconditional branch following this conditional branch.
10601 // We need this because we need to reverse the successors in order
10602 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010603 if (User->getOpcode() == ISD::BR) {
10604 SDValue FalseBB = User->getOperand(1);
10605 SDNode *NewBR =
10606 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010607 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010608 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010609 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010610
Dale Johannesene4d209d2009-02-03 20:21:25 +000010611 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010612 Chain, Dest, CC, Cmp);
10613 X86::CondCode CCode =
10614 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10615 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010616 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010617 Cond = Cmp;
10618 addTest = false;
10619 }
10620 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010621 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010622 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10623 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10624 // It should be transformed during dag combiner except when the condition
10625 // is set by a arithmetics with overflow node.
10626 X86::CondCode CCode =
10627 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10628 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010629 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010630 Cond = Cond.getOperand(0).getOperand(1);
10631 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010632 } else if (Cond.getOpcode() == ISD::SETCC &&
10633 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10634 // For FCMP_OEQ, we can emit
10635 // two branches instead of an explicit AND instruction with a
10636 // separate test. However, we only do this if this block doesn't
10637 // have a fall-through edge, because this requires an explicit
10638 // jmp when the condition is false.
10639 if (Op.getNode()->hasOneUse()) {
10640 SDNode *User = *Op.getNode()->use_begin();
10641 // Look for an unconditional branch following this conditional branch.
10642 // We need this because we need to reverse the successors in order
10643 // to implement FCMP_OEQ.
10644 if (User->getOpcode() == ISD::BR) {
10645 SDValue FalseBB = User->getOperand(1);
10646 SDNode *NewBR =
10647 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10648 assert(NewBR == User);
10649 (void)NewBR;
10650 Dest = FalseBB;
10651
10652 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10653 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010654 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010655 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10656 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10657 Chain, Dest, CC, Cmp);
10658 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10659 Cond = Cmp;
10660 addTest = false;
10661 }
10662 }
10663 } else if (Cond.getOpcode() == ISD::SETCC &&
10664 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10665 // For FCMP_UNE, we can emit
10666 // two branches instead of an explicit AND instruction with a
10667 // separate test. However, we only do this if this block doesn't
10668 // have a fall-through edge, because this requires an explicit
10669 // jmp when the condition is false.
10670 if (Op.getNode()->hasOneUse()) {
10671 SDNode *User = *Op.getNode()->use_begin();
10672 // Look for an unconditional branch following this conditional branch.
10673 // We need this because we need to reverse the successors in order
10674 // to implement FCMP_UNE.
10675 if (User->getOpcode() == ISD::BR) {
10676 SDValue FalseBB = User->getOperand(1);
10677 SDNode *NewBR =
10678 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10679 assert(NewBR == User);
10680 (void)NewBR;
10681
10682 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10683 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010684 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010685 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10686 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10687 Chain, Dest, CC, Cmp);
10688 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10689 Cond = Cmp;
10690 addTest = false;
10691 Dest = FalseBB;
10692 }
10693 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010694 }
Evan Cheng0488db92007-09-25 01:57:46 +000010695 }
10696
10697 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010698 // Look pass the truncate if the high bits are known zero.
10699 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10700 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010701
10702 // We know the result of AND is compared against zero. Try to match
10703 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010704 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010705 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10706 if (NewSetCC.getNode()) {
10707 CC = NewSetCC.getOperand(0);
10708 Cond = NewSetCC.getOperand(1);
10709 addTest = false;
10710 }
10711 }
10712 }
10713
10714 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010715 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010716 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010717 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010718 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010719 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010720 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010721}
10722
Anton Korobeynikove060b532007-04-17 19:34:00 +000010723// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10724// Calls to _alloca is needed to probe the stack when allocating more than 4k
10725// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10726// that the guard pages used by the OS virtual memory manager are allocated in
10727// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010728SDValue
10729X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010730 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010731 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010732 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010733 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010734 "are being used");
10735 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010736 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010737
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010738 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010739 SDValue Chain = Op.getOperand(0);
10740 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010741 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10742 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010743
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010744 bool Is64Bit = Subtarget->is64Bit();
10745 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010746
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010747 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010748 MachineFunction &MF = DAG.getMachineFunction();
10749 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010750
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010751 if (Is64Bit) {
10752 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010753 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010754 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010755
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010756 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010757 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010758 if (I->hasNestAttr())
10759 report_fatal_error("Cannot use segmented stacks with functions that "
10760 "have nested arguments.");
10761 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010762
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010763 const TargetRegisterClass *AddrRegClass =
10764 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10765 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10766 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10767 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10768 DAG.getRegister(Vreg, SPTy));
10769 SDValue Ops1[2] = { Value, Chain };
10770 return DAG.getMergeValues(Ops1, 2, dl);
10771 } else {
10772 SDValue Flag;
10773 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010774
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010775 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10776 Flag = Chain.getValue(1);
10777 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010778
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010779 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010780
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010781 const X86RegisterInfo *RegInfo =
10782 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010783 unsigned SPReg = RegInfo->getStackRegister();
10784 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10785 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010786
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010787 if (Align) {
10788 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10789 DAG.getConstant(-(uint64_t)Align, VT));
10790 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10791 }
10792
10793 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010794 return DAG.getMergeValues(Ops1, 2, dl);
10795 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010796}
10797
Dan Gohmand858e902010-04-17 15:26:15 +000010798SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010799 MachineFunction &MF = DAG.getMachineFunction();
10800 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10801
Dan Gohman69de1932008-02-06 22:27:42 +000010802 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010803 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010804
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010805 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010806 // vastart just stores the address of the VarArgsFrameIndex slot into the
10807 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010808 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10809 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010810 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10811 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010812 }
10813
10814 // __va_list_tag:
10815 // gp_offset (0 - 6 * 8)
10816 // fp_offset (48 - 48 + 8 * 16)
10817 // overflow_arg_area (point to parameters coming in memory).
10818 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010819 SmallVector<SDValue, 8> MemOps;
10820 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010821 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010822 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010823 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10824 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010825 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010826 MemOps.push_back(Store);
10827
10828 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010829 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010830 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010831 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010832 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10833 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010834 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010835 MemOps.push_back(Store);
10836
10837 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010838 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010839 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010840 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10841 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010842 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10843 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010844 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010845 MemOps.push_back(Store);
10846
10847 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010848 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010849 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010850 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10851 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010852 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10853 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010854 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010855 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010856 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010857}
10858
Dan Gohmand858e902010-04-17 15:26:15 +000010859SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010860 assert(Subtarget->is64Bit() &&
10861 "LowerVAARG only handles 64-bit va_arg!");
10862 assert((Subtarget->isTargetLinux() ||
10863 Subtarget->isTargetDarwin()) &&
10864 "Unhandled target in LowerVAARG");
10865 assert(Op.getNode()->getNumOperands() == 4);
10866 SDValue Chain = Op.getOperand(0);
10867 SDValue SrcPtr = Op.getOperand(1);
10868 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10869 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010870 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010871
Dan Gohman320afb82010-10-12 18:00:49 +000010872 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010873 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010874 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010875 uint8_t ArgMode;
10876
10877 // Decide which area this value should be read from.
10878 // TODO: Implement the AMD64 ABI in its entirety. This simple
10879 // selection mechanism works only for the basic types.
10880 if (ArgVT == MVT::f80) {
10881 llvm_unreachable("va_arg for f80 not yet implemented");
10882 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10883 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10884 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10885 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10886 } else {
10887 llvm_unreachable("Unhandled argument type in LowerVAARG");
10888 }
10889
10890 if (ArgMode == 2) {
10891 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010892 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010893 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010894 .getFunction()->getAttributes()
10895 .hasAttribute(AttributeSet::FunctionIndex,
10896 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010897 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010898 }
10899
10900 // Insert VAARG_64 node into the DAG
10901 // VAARG_64 returns two values: Variable Argument Address, Chain
10902 SmallVector<SDValue, 11> InstOps;
10903 InstOps.push_back(Chain);
10904 InstOps.push_back(SrcPtr);
10905 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10906 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10907 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10908 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10909 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10910 VTs, &InstOps[0], InstOps.size(),
10911 MVT::i64,
10912 MachinePointerInfo(SV),
10913 /*Align=*/0,
10914 /*Volatile=*/false,
10915 /*ReadMem=*/true,
10916 /*WriteMem=*/true);
10917 Chain = VAARG.getValue(1);
10918
10919 // Load the next argument and return it
10920 return DAG.getLoad(ArgVT, dl,
10921 Chain,
10922 VAARG,
10923 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010924 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010925}
10926
Craig Topper55b24052012-09-11 06:15:32 +000010927static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10928 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010929 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010930 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010931 SDValue Chain = Op.getOperand(0);
10932 SDValue DstPtr = Op.getOperand(1);
10933 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010934 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10935 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010936 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010937
Chris Lattnere72f2022010-09-21 05:40:29 +000010938 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010939 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010940 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010941 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010942}
10943
Lang Hames1d825372013-10-21 17:51:24 +000010944// getTargetVShiftByConstNode - Handle vector element shifts where the shift
10945// amount is a constant. Takes immediate version of shift as input.
10946static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10947 SDValue SrcOp, uint64_t ShiftAmt,
10948 SelectionDAG &DAG) {
10949
10950 // Check for ShiftAmt >= element width
10951 if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10952 if (Opc == X86ISD::VSRAI)
10953 ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10954 else
10955 return DAG.getConstant(0, VT);
10956 }
10957
10958 assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10959 && "Unknown target vector shift-by-constant node");
10960
10961 return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10962}
10963
Craig Topperff3139f2013-02-19 07:43:59 +000010964// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010965// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010966static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010967 SDValue SrcOp, SDValue ShAmt,
10968 SelectionDAG &DAG) {
10969 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10970
Lang Hames1d825372013-10-21 17:51:24 +000010971 // Catch shift-by-constant.
10972 if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
10973 return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
10974 CShAmt->getZExtValue(), DAG);
Craig Topper80e46362012-01-23 06:16:53 +000010975
10976 // Change opcode to non-immediate version
10977 switch (Opc) {
10978 default: llvm_unreachable("Unknown target vector shift node");
10979 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10980 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10981 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10982 }
10983
10984 // Need to build a vector containing shift amount
10985 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10986 SDValue ShOps[4];
10987 ShOps[0] = ShAmt;
10988 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000010989 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000010990 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000010991
10992 // The return type has to be a 128-bit type with the same element
10993 // type as the input type.
10994 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10995 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10996
10997 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000010998 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10999}
11000
Craig Topper55b24052012-09-11 06:15:32 +000011001static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011002 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011003 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000011004 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000011005 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000011006 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000011007 case Intrinsic::x86_sse_comieq_ss:
11008 case Intrinsic::x86_sse_comilt_ss:
11009 case Intrinsic::x86_sse_comile_ss:
11010 case Intrinsic::x86_sse_comigt_ss:
11011 case Intrinsic::x86_sse_comige_ss:
11012 case Intrinsic::x86_sse_comineq_ss:
11013 case Intrinsic::x86_sse_ucomieq_ss:
11014 case Intrinsic::x86_sse_ucomilt_ss:
11015 case Intrinsic::x86_sse_ucomile_ss:
11016 case Intrinsic::x86_sse_ucomigt_ss:
11017 case Intrinsic::x86_sse_ucomige_ss:
11018 case Intrinsic::x86_sse_ucomineq_ss:
11019 case Intrinsic::x86_sse2_comieq_sd:
11020 case Intrinsic::x86_sse2_comilt_sd:
11021 case Intrinsic::x86_sse2_comile_sd:
11022 case Intrinsic::x86_sse2_comigt_sd:
11023 case Intrinsic::x86_sse2_comige_sd:
11024 case Intrinsic::x86_sse2_comineq_sd:
11025 case Intrinsic::x86_sse2_ucomieq_sd:
11026 case Intrinsic::x86_sse2_ucomilt_sd:
11027 case Intrinsic::x86_sse2_ucomile_sd:
11028 case Intrinsic::x86_sse2_ucomigt_sd:
11029 case Intrinsic::x86_sse2_ucomige_sd:
11030 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000011031 unsigned Opc;
11032 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000011033 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000011034 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011035 case Intrinsic::x86_sse_comieq_ss:
11036 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011037 Opc = X86ISD::COMI;
11038 CC = ISD::SETEQ;
11039 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011040 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011041 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011042 Opc = X86ISD::COMI;
11043 CC = ISD::SETLT;
11044 break;
11045 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011046 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011047 Opc = X86ISD::COMI;
11048 CC = ISD::SETLE;
11049 break;
11050 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011051 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011052 Opc = X86ISD::COMI;
11053 CC = ISD::SETGT;
11054 break;
11055 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011056 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011057 Opc = X86ISD::COMI;
11058 CC = ISD::SETGE;
11059 break;
11060 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011061 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011062 Opc = X86ISD::COMI;
11063 CC = ISD::SETNE;
11064 break;
11065 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011066 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011067 Opc = X86ISD::UCOMI;
11068 CC = ISD::SETEQ;
11069 break;
11070 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011071 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011072 Opc = X86ISD::UCOMI;
11073 CC = ISD::SETLT;
11074 break;
11075 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011076 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011077 Opc = X86ISD::UCOMI;
11078 CC = ISD::SETLE;
11079 break;
11080 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011081 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011082 Opc = X86ISD::UCOMI;
11083 CC = ISD::SETGT;
11084 break;
11085 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011086 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011087 Opc = X86ISD::UCOMI;
11088 CC = ISD::SETGE;
11089 break;
11090 case Intrinsic::x86_sse_ucomineq_ss:
11091 case Intrinsic::x86_sse2_ucomineq_sd:
11092 Opc = X86ISD::UCOMI;
11093 CC = ISD::SETNE;
11094 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011095 }
Evan Cheng734503b2006-09-11 02:19:56 +000011096
Dan Gohman475871a2008-07-27 21:46:04 +000011097 SDValue LHS = Op.getOperand(1);
11098 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011099 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011100 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011101 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11102 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11103 DAG.getConstant(X86CC, MVT::i8), Cond);
11104 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011105 }
Craig Topper6d688152012-08-14 07:43:25 +000011106
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011107 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011108 case Intrinsic::x86_sse2_pmulu_dq:
11109 case Intrinsic::x86_avx2_pmulu_dq:
11110 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11111 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011112
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011113 // SSE2/AVX2 sub with unsigned saturation intrinsics
11114 case Intrinsic::x86_sse2_psubus_b:
11115 case Intrinsic::x86_sse2_psubus_w:
11116 case Intrinsic::x86_avx2_psubus_b:
11117 case Intrinsic::x86_avx2_psubus_w:
11118 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11119 Op.getOperand(1), Op.getOperand(2));
11120
Craig Topper6d688152012-08-14 07:43:25 +000011121 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011122 case Intrinsic::x86_sse3_hadd_ps:
11123 case Intrinsic::x86_sse3_hadd_pd:
11124 case Intrinsic::x86_avx_hadd_ps_256:
11125 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011126 case Intrinsic::x86_sse3_hsub_ps:
11127 case Intrinsic::x86_sse3_hsub_pd:
11128 case Intrinsic::x86_avx_hsub_ps_256:
11129 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011130 case Intrinsic::x86_ssse3_phadd_w_128:
11131 case Intrinsic::x86_ssse3_phadd_d_128:
11132 case Intrinsic::x86_avx2_phadd_w:
11133 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011134 case Intrinsic::x86_ssse3_phsub_w_128:
11135 case Intrinsic::x86_ssse3_phsub_d_128:
11136 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011137 case Intrinsic::x86_avx2_phsub_d: {
11138 unsigned Opcode;
11139 switch (IntNo) {
11140 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11141 case Intrinsic::x86_sse3_hadd_ps:
11142 case Intrinsic::x86_sse3_hadd_pd:
11143 case Intrinsic::x86_avx_hadd_ps_256:
11144 case Intrinsic::x86_avx_hadd_pd_256:
11145 Opcode = X86ISD::FHADD;
11146 break;
11147 case Intrinsic::x86_sse3_hsub_ps:
11148 case Intrinsic::x86_sse3_hsub_pd:
11149 case Intrinsic::x86_avx_hsub_ps_256:
11150 case Intrinsic::x86_avx_hsub_pd_256:
11151 Opcode = X86ISD::FHSUB;
11152 break;
11153 case Intrinsic::x86_ssse3_phadd_w_128:
11154 case Intrinsic::x86_ssse3_phadd_d_128:
11155 case Intrinsic::x86_avx2_phadd_w:
11156 case Intrinsic::x86_avx2_phadd_d:
11157 Opcode = X86ISD::HADD;
11158 break;
11159 case Intrinsic::x86_ssse3_phsub_w_128:
11160 case Intrinsic::x86_ssse3_phsub_d_128:
11161 case Intrinsic::x86_avx2_phsub_w:
11162 case Intrinsic::x86_avx2_phsub_d:
11163 Opcode = X86ISD::HSUB;
11164 break;
11165 }
11166 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011167 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011168 }
11169
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011170 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11171 case Intrinsic::x86_sse2_pmaxu_b:
11172 case Intrinsic::x86_sse41_pmaxuw:
11173 case Intrinsic::x86_sse41_pmaxud:
11174 case Intrinsic::x86_avx2_pmaxu_b:
11175 case Intrinsic::x86_avx2_pmaxu_w:
11176 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011177 case Intrinsic::x86_sse2_pminu_b:
11178 case Intrinsic::x86_sse41_pminuw:
11179 case Intrinsic::x86_sse41_pminud:
11180 case Intrinsic::x86_avx2_pminu_b:
11181 case Intrinsic::x86_avx2_pminu_w:
11182 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011183 case Intrinsic::x86_sse41_pmaxsb:
11184 case Intrinsic::x86_sse2_pmaxs_w:
11185 case Intrinsic::x86_sse41_pmaxsd:
11186 case Intrinsic::x86_avx2_pmaxs_b:
11187 case Intrinsic::x86_avx2_pmaxs_w:
11188 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011189 case Intrinsic::x86_sse41_pminsb:
11190 case Intrinsic::x86_sse2_pmins_w:
11191 case Intrinsic::x86_sse41_pminsd:
11192 case Intrinsic::x86_avx2_pmins_b:
11193 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000011194 case Intrinsic::x86_avx2_pmins_d: {
11195 unsigned Opcode;
11196 switch (IntNo) {
11197 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11198 case Intrinsic::x86_sse2_pmaxu_b:
11199 case Intrinsic::x86_sse41_pmaxuw:
11200 case Intrinsic::x86_sse41_pmaxud:
11201 case Intrinsic::x86_avx2_pmaxu_b:
11202 case Intrinsic::x86_avx2_pmaxu_w:
11203 case Intrinsic::x86_avx2_pmaxu_d:
11204 Opcode = X86ISD::UMAX;
11205 break;
11206 case Intrinsic::x86_sse2_pminu_b:
11207 case Intrinsic::x86_sse41_pminuw:
11208 case Intrinsic::x86_sse41_pminud:
11209 case Intrinsic::x86_avx2_pminu_b:
11210 case Intrinsic::x86_avx2_pminu_w:
11211 case Intrinsic::x86_avx2_pminu_d:
11212 Opcode = X86ISD::UMIN;
11213 break;
11214 case Intrinsic::x86_sse41_pmaxsb:
11215 case Intrinsic::x86_sse2_pmaxs_w:
11216 case Intrinsic::x86_sse41_pmaxsd:
11217 case Intrinsic::x86_avx2_pmaxs_b:
11218 case Intrinsic::x86_avx2_pmaxs_w:
11219 case Intrinsic::x86_avx2_pmaxs_d:
11220 Opcode = X86ISD::SMAX;
11221 break;
11222 case Intrinsic::x86_sse41_pminsb:
11223 case Intrinsic::x86_sse2_pmins_w:
11224 case Intrinsic::x86_sse41_pminsd:
11225 case Intrinsic::x86_avx2_pmins_b:
11226 case Intrinsic::x86_avx2_pmins_w:
11227 case Intrinsic::x86_avx2_pmins_d:
11228 Opcode = X86ISD::SMIN;
11229 break;
11230 }
11231 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011232 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011233 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011234
Craig Topper6d183e42012-12-29 16:44:25 +000011235 // SSE/SSE2/AVX floating point max/min intrinsics.
11236 case Intrinsic::x86_sse_max_ps:
11237 case Intrinsic::x86_sse2_max_pd:
11238 case Intrinsic::x86_avx_max_ps_256:
11239 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011240 case Intrinsic::x86_avx512_max_ps_512:
11241 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011242 case Intrinsic::x86_sse_min_ps:
11243 case Intrinsic::x86_sse2_min_pd:
11244 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011245 case Intrinsic::x86_avx_min_pd_256:
11246 case Intrinsic::x86_avx512_min_ps_512:
11247 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011248 unsigned Opcode;
11249 switch (IntNo) {
11250 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11251 case Intrinsic::x86_sse_max_ps:
11252 case Intrinsic::x86_sse2_max_pd:
11253 case Intrinsic::x86_avx_max_ps_256:
11254 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011255 case Intrinsic::x86_avx512_max_ps_512:
11256 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011257 Opcode = X86ISD::FMAX;
11258 break;
11259 case Intrinsic::x86_sse_min_ps:
11260 case Intrinsic::x86_sse2_min_pd:
11261 case Intrinsic::x86_avx_min_ps_256:
11262 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011263 case Intrinsic::x86_avx512_min_ps_512:
11264 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011265 Opcode = X86ISD::FMIN;
11266 break;
11267 }
11268 return DAG.getNode(Opcode, dl, Op.getValueType(),
11269 Op.getOperand(1), Op.getOperand(2));
11270 }
11271
Craig Topper6d688152012-08-14 07:43:25 +000011272 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011273 case Intrinsic::x86_avx2_psllv_d:
11274 case Intrinsic::x86_avx2_psllv_q:
11275 case Intrinsic::x86_avx2_psllv_d_256:
11276 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011277 case Intrinsic::x86_avx2_psrlv_d:
11278 case Intrinsic::x86_avx2_psrlv_q:
11279 case Intrinsic::x86_avx2_psrlv_d_256:
11280 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011281 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011282 case Intrinsic::x86_avx2_psrav_d_256: {
11283 unsigned Opcode;
11284 switch (IntNo) {
11285 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11286 case Intrinsic::x86_avx2_psllv_d:
11287 case Intrinsic::x86_avx2_psllv_q:
11288 case Intrinsic::x86_avx2_psllv_d_256:
11289 case Intrinsic::x86_avx2_psllv_q_256:
11290 Opcode = ISD::SHL;
11291 break;
11292 case Intrinsic::x86_avx2_psrlv_d:
11293 case Intrinsic::x86_avx2_psrlv_q:
11294 case Intrinsic::x86_avx2_psrlv_d_256:
11295 case Intrinsic::x86_avx2_psrlv_q_256:
11296 Opcode = ISD::SRL;
11297 break;
11298 case Intrinsic::x86_avx2_psrav_d:
11299 case Intrinsic::x86_avx2_psrav_d_256:
11300 Opcode = ISD::SRA;
11301 break;
11302 }
11303 return DAG.getNode(Opcode, dl, Op.getValueType(),
11304 Op.getOperand(1), Op.getOperand(2));
11305 }
11306
Craig Topper969ba282012-01-25 06:43:11 +000011307 case Intrinsic::x86_ssse3_pshuf_b_128:
11308 case Intrinsic::x86_avx2_pshuf_b:
11309 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11310 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011311
Craig Topper969ba282012-01-25 06:43:11 +000011312 case Intrinsic::x86_ssse3_psign_b_128:
11313 case Intrinsic::x86_ssse3_psign_w_128:
11314 case Intrinsic::x86_ssse3_psign_d_128:
11315 case Intrinsic::x86_avx2_psign_b:
11316 case Intrinsic::x86_avx2_psign_w:
11317 case Intrinsic::x86_avx2_psign_d:
11318 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11319 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011320
Craig Toppere566cd02012-01-26 07:18:03 +000011321 case Intrinsic::x86_sse41_insertps:
11322 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11323 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011324
Craig Toppere566cd02012-01-26 07:18:03 +000011325 case Intrinsic::x86_avx_vperm2f128_ps_256:
11326 case Intrinsic::x86_avx_vperm2f128_pd_256:
11327 case Intrinsic::x86_avx_vperm2f128_si_256:
11328 case Intrinsic::x86_avx2_vperm2i128:
11329 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11330 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011331
Craig Topperffa6c402012-04-16 07:13:00 +000011332 case Intrinsic::x86_avx2_permd:
11333 case Intrinsic::x86_avx2_permps:
11334 // Operands intentionally swapped. Mask is last operand to intrinsic,
Robert Wilhelmf80a63f2013-09-28 11:46:15 +000011335 // but second operand for node/instruction.
Craig Topperffa6c402012-04-16 07:13:00 +000011336 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11337 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011338
Craig Topper22d8f0d2012-12-29 18:18:20 +000011339 case Intrinsic::x86_sse_sqrt_ps:
11340 case Intrinsic::x86_sse2_sqrt_pd:
11341 case Intrinsic::x86_avx_sqrt_ps_256:
11342 case Intrinsic::x86_avx_sqrt_pd_256:
11343 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11344
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011345 // ptest and testp intrinsics. The intrinsic these come from are designed to
11346 // return an integer value, not just an instruction so lower it to the ptest
11347 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011348 case Intrinsic::x86_sse41_ptestz:
11349 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011350 case Intrinsic::x86_sse41_ptestnzc:
11351 case Intrinsic::x86_avx_ptestz_256:
11352 case Intrinsic::x86_avx_ptestc_256:
11353 case Intrinsic::x86_avx_ptestnzc_256:
11354 case Intrinsic::x86_avx_vtestz_ps:
11355 case Intrinsic::x86_avx_vtestc_ps:
11356 case Intrinsic::x86_avx_vtestnzc_ps:
11357 case Intrinsic::x86_avx_vtestz_pd:
11358 case Intrinsic::x86_avx_vtestc_pd:
11359 case Intrinsic::x86_avx_vtestnzc_pd:
11360 case Intrinsic::x86_avx_vtestz_ps_256:
11361 case Intrinsic::x86_avx_vtestc_ps_256:
11362 case Intrinsic::x86_avx_vtestnzc_ps_256:
11363 case Intrinsic::x86_avx_vtestz_pd_256:
11364 case Intrinsic::x86_avx_vtestc_pd_256:
11365 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11366 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011367 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011368 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011369 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011370 case Intrinsic::x86_avx_vtestz_ps:
11371 case Intrinsic::x86_avx_vtestz_pd:
11372 case Intrinsic::x86_avx_vtestz_ps_256:
11373 case Intrinsic::x86_avx_vtestz_pd_256:
11374 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011375 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011376 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011377 // ZF = 1
11378 X86CC = X86::COND_E;
11379 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011380 case Intrinsic::x86_avx_vtestc_ps:
11381 case Intrinsic::x86_avx_vtestc_pd:
11382 case Intrinsic::x86_avx_vtestc_ps_256:
11383 case Intrinsic::x86_avx_vtestc_pd_256:
11384 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011385 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011386 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011387 // CF = 1
11388 X86CC = X86::COND_B;
11389 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011390 case Intrinsic::x86_avx_vtestnzc_ps:
11391 case Intrinsic::x86_avx_vtestnzc_pd:
11392 case Intrinsic::x86_avx_vtestnzc_ps_256:
11393 case Intrinsic::x86_avx_vtestnzc_pd_256:
11394 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011395 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011396 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011397 // ZF and CF = 0
11398 X86CC = X86::COND_A;
11399 break;
11400 }
Eric Christopherfd179292009-08-27 18:07:15 +000011401
Eric Christopher71c67532009-07-29 00:28:05 +000011402 SDValue LHS = Op.getOperand(1);
11403 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011404 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11405 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011406 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11407 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11408 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011409 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011410 case Intrinsic::x86_avx512_kortestz:
11411 case Intrinsic::x86_avx512_kortestc: {
11412 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11413 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11414 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11415 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11416 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11417 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11418 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11419 }
Evan Cheng5759f972008-05-04 09:15:50 +000011420
Craig Topper80e46362012-01-23 06:16:53 +000011421 // SSE/AVX shift intrinsics
11422 case Intrinsic::x86_sse2_psll_w:
11423 case Intrinsic::x86_sse2_psll_d:
11424 case Intrinsic::x86_sse2_psll_q:
11425 case Intrinsic::x86_avx2_psll_w:
11426 case Intrinsic::x86_avx2_psll_d:
11427 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011428 case Intrinsic::x86_sse2_psrl_w:
11429 case Intrinsic::x86_sse2_psrl_d:
11430 case Intrinsic::x86_sse2_psrl_q:
11431 case Intrinsic::x86_avx2_psrl_w:
11432 case Intrinsic::x86_avx2_psrl_d:
11433 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011434 case Intrinsic::x86_sse2_psra_w:
11435 case Intrinsic::x86_sse2_psra_d:
11436 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011437 case Intrinsic::x86_avx2_psra_d: {
11438 unsigned Opcode;
11439 switch (IntNo) {
11440 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11441 case Intrinsic::x86_sse2_psll_w:
11442 case Intrinsic::x86_sse2_psll_d:
11443 case Intrinsic::x86_sse2_psll_q:
11444 case Intrinsic::x86_avx2_psll_w:
11445 case Intrinsic::x86_avx2_psll_d:
11446 case Intrinsic::x86_avx2_psll_q:
11447 Opcode = X86ISD::VSHL;
11448 break;
11449 case Intrinsic::x86_sse2_psrl_w:
11450 case Intrinsic::x86_sse2_psrl_d:
11451 case Intrinsic::x86_sse2_psrl_q:
11452 case Intrinsic::x86_avx2_psrl_w:
11453 case Intrinsic::x86_avx2_psrl_d:
11454 case Intrinsic::x86_avx2_psrl_q:
11455 Opcode = X86ISD::VSRL;
11456 break;
11457 case Intrinsic::x86_sse2_psra_w:
11458 case Intrinsic::x86_sse2_psra_d:
11459 case Intrinsic::x86_avx2_psra_w:
11460 case Intrinsic::x86_avx2_psra_d:
11461 Opcode = X86ISD::VSRA;
11462 break;
11463 }
11464 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011465 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011466 }
11467
11468 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011469 case Intrinsic::x86_sse2_pslli_w:
11470 case Intrinsic::x86_sse2_pslli_d:
11471 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011472 case Intrinsic::x86_avx2_pslli_w:
11473 case Intrinsic::x86_avx2_pslli_d:
11474 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011475 case Intrinsic::x86_sse2_psrli_w:
11476 case Intrinsic::x86_sse2_psrli_d:
11477 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011478 case Intrinsic::x86_avx2_psrli_w:
11479 case Intrinsic::x86_avx2_psrli_d:
11480 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011481 case Intrinsic::x86_sse2_psrai_w:
11482 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011483 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011484 case Intrinsic::x86_avx2_psrai_d: {
11485 unsigned Opcode;
11486 switch (IntNo) {
11487 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11488 case Intrinsic::x86_sse2_pslli_w:
11489 case Intrinsic::x86_sse2_pslli_d:
11490 case Intrinsic::x86_sse2_pslli_q:
11491 case Intrinsic::x86_avx2_pslli_w:
11492 case Intrinsic::x86_avx2_pslli_d:
11493 case Intrinsic::x86_avx2_pslli_q:
11494 Opcode = X86ISD::VSHLI;
11495 break;
11496 case Intrinsic::x86_sse2_psrli_w:
11497 case Intrinsic::x86_sse2_psrli_d:
11498 case Intrinsic::x86_sse2_psrli_q:
11499 case Intrinsic::x86_avx2_psrli_w:
11500 case Intrinsic::x86_avx2_psrli_d:
11501 case Intrinsic::x86_avx2_psrli_q:
11502 Opcode = X86ISD::VSRLI;
11503 break;
11504 case Intrinsic::x86_sse2_psrai_w:
11505 case Intrinsic::x86_sse2_psrai_d:
11506 case Intrinsic::x86_avx2_psrai_w:
11507 case Intrinsic::x86_avx2_psrai_d:
11508 Opcode = X86ISD::VSRAI;
11509 break;
11510 }
11511 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011512 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011513 }
11514
Craig Topper4feb6472012-08-06 06:22:36 +000011515 case Intrinsic::x86_sse42_pcmpistria128:
11516 case Intrinsic::x86_sse42_pcmpestria128:
11517 case Intrinsic::x86_sse42_pcmpistric128:
11518 case Intrinsic::x86_sse42_pcmpestric128:
11519 case Intrinsic::x86_sse42_pcmpistrio128:
11520 case Intrinsic::x86_sse42_pcmpestrio128:
11521 case Intrinsic::x86_sse42_pcmpistris128:
11522 case Intrinsic::x86_sse42_pcmpestris128:
11523 case Intrinsic::x86_sse42_pcmpistriz128:
11524 case Intrinsic::x86_sse42_pcmpestriz128: {
11525 unsigned Opcode;
11526 unsigned X86CC;
11527 switch (IntNo) {
11528 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11529 case Intrinsic::x86_sse42_pcmpistria128:
11530 Opcode = X86ISD::PCMPISTRI;
11531 X86CC = X86::COND_A;
11532 break;
11533 case Intrinsic::x86_sse42_pcmpestria128:
11534 Opcode = X86ISD::PCMPESTRI;
11535 X86CC = X86::COND_A;
11536 break;
11537 case Intrinsic::x86_sse42_pcmpistric128:
11538 Opcode = X86ISD::PCMPISTRI;
11539 X86CC = X86::COND_B;
11540 break;
11541 case Intrinsic::x86_sse42_pcmpestric128:
11542 Opcode = X86ISD::PCMPESTRI;
11543 X86CC = X86::COND_B;
11544 break;
11545 case Intrinsic::x86_sse42_pcmpistrio128:
11546 Opcode = X86ISD::PCMPISTRI;
11547 X86CC = X86::COND_O;
11548 break;
11549 case Intrinsic::x86_sse42_pcmpestrio128:
11550 Opcode = X86ISD::PCMPESTRI;
11551 X86CC = X86::COND_O;
11552 break;
11553 case Intrinsic::x86_sse42_pcmpistris128:
11554 Opcode = X86ISD::PCMPISTRI;
11555 X86CC = X86::COND_S;
11556 break;
11557 case Intrinsic::x86_sse42_pcmpestris128:
11558 Opcode = X86ISD::PCMPESTRI;
11559 X86CC = X86::COND_S;
11560 break;
11561 case Intrinsic::x86_sse42_pcmpistriz128:
11562 Opcode = X86ISD::PCMPISTRI;
11563 X86CC = X86::COND_E;
11564 break;
11565 case Intrinsic::x86_sse42_pcmpestriz128:
11566 Opcode = X86ISD::PCMPESTRI;
11567 X86CC = X86::COND_E;
11568 break;
11569 }
Craig Topper20b46b02013-08-06 04:12:40 +000011570 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011571 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11572 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11573 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11574 DAG.getConstant(X86CC, MVT::i8),
11575 SDValue(PCMP.getNode(), 1));
11576 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11577 }
Craig Topper6d688152012-08-14 07:43:25 +000011578
Craig Topper4feb6472012-08-06 06:22:36 +000011579 case Intrinsic::x86_sse42_pcmpistri128:
11580 case Intrinsic::x86_sse42_pcmpestri128: {
11581 unsigned Opcode;
11582 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11583 Opcode = X86ISD::PCMPISTRI;
11584 else
11585 Opcode = X86ISD::PCMPESTRI;
11586
Craig Topper20b46b02013-08-06 04:12:40 +000011587 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011588 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11589 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11590 }
Craig Topper0e292372012-08-24 04:03:22 +000011591 case Intrinsic::x86_fma_vfmadd_ps:
11592 case Intrinsic::x86_fma_vfmadd_pd:
11593 case Intrinsic::x86_fma_vfmsub_ps:
11594 case Intrinsic::x86_fma_vfmsub_pd:
11595 case Intrinsic::x86_fma_vfnmadd_ps:
11596 case Intrinsic::x86_fma_vfnmadd_pd:
11597 case Intrinsic::x86_fma_vfnmsub_ps:
11598 case Intrinsic::x86_fma_vfnmsub_pd:
11599 case Intrinsic::x86_fma_vfmaddsub_ps:
11600 case Intrinsic::x86_fma_vfmaddsub_pd:
11601 case Intrinsic::x86_fma_vfmsubadd_ps:
11602 case Intrinsic::x86_fma_vfmsubadd_pd:
11603 case Intrinsic::x86_fma_vfmadd_ps_256:
11604 case Intrinsic::x86_fma_vfmadd_pd_256:
11605 case Intrinsic::x86_fma_vfmsub_ps_256:
11606 case Intrinsic::x86_fma_vfmsub_pd_256:
11607 case Intrinsic::x86_fma_vfnmadd_ps_256:
11608 case Intrinsic::x86_fma_vfnmadd_pd_256:
11609 case Intrinsic::x86_fma_vfnmsub_ps_256:
11610 case Intrinsic::x86_fma_vfnmsub_pd_256:
11611 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11612 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11613 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11614 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011615 unsigned Opc;
11616 switch (IntNo) {
11617 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11618 case Intrinsic::x86_fma_vfmadd_ps:
11619 case Intrinsic::x86_fma_vfmadd_pd:
11620 case Intrinsic::x86_fma_vfmadd_ps_256:
11621 case Intrinsic::x86_fma_vfmadd_pd_256:
11622 Opc = X86ISD::FMADD;
11623 break;
11624 case Intrinsic::x86_fma_vfmsub_ps:
11625 case Intrinsic::x86_fma_vfmsub_pd:
11626 case Intrinsic::x86_fma_vfmsub_ps_256:
11627 case Intrinsic::x86_fma_vfmsub_pd_256:
11628 Opc = X86ISD::FMSUB;
11629 break;
11630 case Intrinsic::x86_fma_vfnmadd_ps:
11631 case Intrinsic::x86_fma_vfnmadd_pd:
11632 case Intrinsic::x86_fma_vfnmadd_ps_256:
11633 case Intrinsic::x86_fma_vfnmadd_pd_256:
11634 Opc = X86ISD::FNMADD;
11635 break;
11636 case Intrinsic::x86_fma_vfnmsub_ps:
11637 case Intrinsic::x86_fma_vfnmsub_pd:
11638 case Intrinsic::x86_fma_vfnmsub_ps_256:
11639 case Intrinsic::x86_fma_vfnmsub_pd_256:
11640 Opc = X86ISD::FNMSUB;
11641 break;
11642 case Intrinsic::x86_fma_vfmaddsub_ps:
11643 case Intrinsic::x86_fma_vfmaddsub_pd:
11644 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11645 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11646 Opc = X86ISD::FMADDSUB;
11647 break;
11648 case Intrinsic::x86_fma_vfmsubadd_ps:
11649 case Intrinsic::x86_fma_vfmsubadd_pd:
11650 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11651 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11652 Opc = X86ISD::FMSUBADD;
11653 break;
11654 }
11655
11656 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11657 Op.getOperand(2), Op.getOperand(3));
11658 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011659 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011660}
Evan Cheng72261582005-12-20 06:22:03 +000011661
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011662static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11663 SDValue Base, SDValue Index,
11664 SDValue ScaleOp, SDValue Chain,
11665 const X86Subtarget * Subtarget) {
11666 SDLoc dl(Op);
11667 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11668 assert(C && "Invalid scale type");
11669 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11670 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11671 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11672 Index.getValueType().getVectorNumElements());
11673 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11674 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11675 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11676 SDValue Segment = DAG.getRegister(0, MVT::i32);
11677 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11678 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11679 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11680 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11681}
11682
11683static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11684 SDValue Src, SDValue Mask, SDValue Base,
11685 SDValue Index, SDValue ScaleOp, SDValue Chain,
11686 const X86Subtarget * Subtarget) {
11687 SDLoc dl(Op);
11688 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11689 assert(C && "Invalid scale type");
11690 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11691 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11692 Index.getValueType().getVectorNumElements());
11693 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11694 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11695 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11696 SDValue Segment = DAG.getRegister(0, MVT::i32);
11697 if (Src.getOpcode() == ISD::UNDEF)
11698 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11699 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11700 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11701 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11702 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11703}
11704
11705static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11706 SDValue Src, SDValue Base, SDValue Index,
11707 SDValue ScaleOp, SDValue Chain) {
11708 SDLoc dl(Op);
11709 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11710 assert(C && "Invalid scale type");
11711 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11712 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11713 SDValue Segment = DAG.getRegister(0, MVT::i32);
11714 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11715 Index.getValueType().getVectorNumElements());
11716 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11717 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11718 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11719 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11720 return SDValue(Res, 1);
11721}
11722
11723static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11724 SDValue Src, SDValue Mask, SDValue Base,
11725 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11726 SDLoc dl(Op);
11727 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11728 assert(C && "Invalid scale type");
11729 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11730 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11731 SDValue Segment = DAG.getRegister(0, MVT::i32);
11732 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11733 Index.getValueType().getVectorNumElements());
11734 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11735 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11736 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11737 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11738 return SDValue(Res, 1);
11739}
11740
11741static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11742 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011743 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011744 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11745 switch (IntNo) {
11746 default: return SDValue(); // Don't custom lower most intrinsics.
11747
Michael Liaoc26392a2013-03-28 23:41:26 +000011748 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011749 case Intrinsic::x86_rdrand_16:
11750 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011751 case Intrinsic::x86_rdrand_64:
11752 case Intrinsic::x86_rdseed_16:
11753 case Intrinsic::x86_rdseed_32:
11754 case Intrinsic::x86_rdseed_64: {
11755 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11756 IntNo == Intrinsic::x86_rdseed_32 ||
11757 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11758 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011759 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011760 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011761 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011762
Michael Liaoc26392a2013-03-28 23:41:26 +000011763 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11764 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011765 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11766 DAG.getConstant(1, Op->getValueType(1)),
11767 DAG.getConstant(X86::COND_B, MVT::i32),
11768 SDValue(Result.getNode(), 1) };
11769 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11770 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011771 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011772
11773 // Return { result, isValid, chain }.
11774 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011775 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011776 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011777 //int_gather(index, base, scale);
11778 case Intrinsic::x86_avx512_gather_qpd_512:
11779 case Intrinsic::x86_avx512_gather_qps_512:
11780 case Intrinsic::x86_avx512_gather_dpd_512:
11781 case Intrinsic::x86_avx512_gather_qpi_512:
11782 case Intrinsic::x86_avx512_gather_qpq_512:
11783 case Intrinsic::x86_avx512_gather_dpq_512:
11784 case Intrinsic::x86_avx512_gather_dps_512:
11785 case Intrinsic::x86_avx512_gather_dpi_512: {
11786 unsigned Opc;
11787 switch (IntNo) {
11788 default: llvm_unreachable("Unexpected intrinsic!");
11789 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11790 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11791 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11792 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11793 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11794 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11795 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11796 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11797 }
11798 SDValue Chain = Op.getOperand(0);
11799 SDValue Index = Op.getOperand(2);
11800 SDValue Base = Op.getOperand(3);
11801 SDValue Scale = Op.getOperand(4);
11802 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11803 }
11804 //int_gather_mask(v1, mask, index, base, scale);
11805 case Intrinsic::x86_avx512_gather_qps_mask_512:
11806 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11807 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11808 case Intrinsic::x86_avx512_gather_dps_mask_512:
11809 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11810 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11811 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11812 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11813 unsigned Opc;
11814 switch (IntNo) {
11815 default: llvm_unreachable("Unexpected intrinsic!");
11816 case Intrinsic::x86_avx512_gather_qps_mask_512:
11817 Opc = X86::VGATHERQPSZrm; break;
11818 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11819 Opc = X86::VGATHERQPDZrm; break;
11820 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11821 Opc = X86::VGATHERDPDZrm; break;
11822 case Intrinsic::x86_avx512_gather_dps_mask_512:
11823 Opc = X86::VGATHERDPSZrm; break;
11824 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11825 Opc = X86::VPGATHERQDZrm; break;
11826 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11827 Opc = X86::VPGATHERQQZrm; break;
11828 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11829 Opc = X86::VPGATHERDDZrm; break;
11830 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11831 Opc = X86::VPGATHERDQZrm; break;
11832 }
11833 SDValue Chain = Op.getOperand(0);
11834 SDValue Src = Op.getOperand(2);
11835 SDValue Mask = Op.getOperand(3);
11836 SDValue Index = Op.getOperand(4);
11837 SDValue Base = Op.getOperand(5);
11838 SDValue Scale = Op.getOperand(6);
11839 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11840 Subtarget);
11841 }
11842 //int_scatter(base, index, v1, scale);
11843 case Intrinsic::x86_avx512_scatter_qpd_512:
11844 case Intrinsic::x86_avx512_scatter_qps_512:
11845 case Intrinsic::x86_avx512_scatter_dpd_512:
11846 case Intrinsic::x86_avx512_scatter_qpi_512:
11847 case Intrinsic::x86_avx512_scatter_qpq_512:
11848 case Intrinsic::x86_avx512_scatter_dpq_512:
11849 case Intrinsic::x86_avx512_scatter_dps_512:
11850 case Intrinsic::x86_avx512_scatter_dpi_512: {
11851 unsigned Opc;
11852 switch (IntNo) {
11853 default: llvm_unreachable("Unexpected intrinsic!");
11854 case Intrinsic::x86_avx512_scatter_qpd_512:
11855 Opc = X86::VSCATTERQPDZmr; break;
11856 case Intrinsic::x86_avx512_scatter_qps_512:
11857 Opc = X86::VSCATTERQPSZmr; break;
11858 case Intrinsic::x86_avx512_scatter_dpd_512:
11859 Opc = X86::VSCATTERDPDZmr; break;
11860 case Intrinsic::x86_avx512_scatter_dps_512:
11861 Opc = X86::VSCATTERDPSZmr; break;
11862 case Intrinsic::x86_avx512_scatter_qpi_512:
11863 Opc = X86::VPSCATTERQDZmr; break;
11864 case Intrinsic::x86_avx512_scatter_qpq_512:
11865 Opc = X86::VPSCATTERQQZmr; break;
11866 case Intrinsic::x86_avx512_scatter_dpq_512:
11867 Opc = X86::VPSCATTERDQZmr; break;
11868 case Intrinsic::x86_avx512_scatter_dpi_512:
11869 Opc = X86::VPSCATTERDDZmr; break;
11870 }
11871 SDValue Chain = Op.getOperand(0);
11872 SDValue Base = Op.getOperand(2);
11873 SDValue Index = Op.getOperand(3);
11874 SDValue Src = Op.getOperand(4);
11875 SDValue Scale = Op.getOperand(5);
11876 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11877 }
11878 //int_scatter_mask(base, mask, index, v1, scale);
11879 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11880 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11881 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11882 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11883 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11884 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11885 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11886 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11887 unsigned Opc;
11888 switch (IntNo) {
11889 default: llvm_unreachable("Unexpected intrinsic!");
11890 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11891 Opc = X86::VSCATTERQPDZmr; break;
11892 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11893 Opc = X86::VSCATTERQPSZmr; break;
11894 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11895 Opc = X86::VSCATTERDPDZmr; break;
11896 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11897 Opc = X86::VSCATTERDPSZmr; break;
11898 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11899 Opc = X86::VPSCATTERQDZmr; break;
11900 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11901 Opc = X86::VPSCATTERQQZmr; break;
11902 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11903 Opc = X86::VPSCATTERDQZmr; break;
11904 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11905 Opc = X86::VPSCATTERDDZmr; break;
11906 }
11907 SDValue Chain = Op.getOperand(0);
11908 SDValue Base = Op.getOperand(2);
11909 SDValue Mask = Op.getOperand(3);
11910 SDValue Index = Op.getOperand(4);
11911 SDValue Src = Op.getOperand(5);
11912 SDValue Scale = Op.getOperand(6);
11913 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11914 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011915 // XTEST intrinsics.
11916 case Intrinsic::x86_xtest: {
11917 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11918 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11919 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11920 DAG.getConstant(X86::COND_NE, MVT::i8),
11921 InTrans);
11922 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11923 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11924 Ret, SDValue(InTrans.getNode(), 1));
11925 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011926 }
11927}
11928
Dan Gohmand858e902010-04-17 15:26:15 +000011929SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11930 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011931 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11932 MFI->setReturnAddressIsTaken(true);
11933
Bill Wendling64e87322009-01-16 19:25:27 +000011934 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011935 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011936 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011937
11938 if (Depth > 0) {
11939 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011940 const X86RegisterInfo *RegInfo =
11941 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11942 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011943 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11944 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011945 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011946 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011947 }
11948
11949 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011950 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011951 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011952 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011953}
11954
Dan Gohmand858e902010-04-17 15:26:15 +000011955SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011956 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11957 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011958
Owen Andersone50ed302009-08-10 22:56:29 +000011959 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011960 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011961 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011962 const X86RegisterInfo *RegInfo =
11963 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011964 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11965 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011966 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11967 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011968 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011969 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000011970 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11971 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011972 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000011973 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000011974}
11975
Dan Gohman475871a2008-07-27 21:46:04 +000011976SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000011977 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011978 const X86RegisterInfo *RegInfo =
11979 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011980 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011981}
11982
Dan Gohmand858e902010-04-17 15:26:15 +000011983SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011984 SDValue Chain = Op.getOperand(0);
11985 SDValue Offset = Op.getOperand(1);
11986 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011987 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011988
Michael Liaodb7da202013-05-02 09:18:38 +000011989 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011990 const X86RegisterInfo *RegInfo =
11991 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000011992 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11993 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11994 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11995 "Invalid Frame Register!");
11996 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11997 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011998
Michael Liaodb7da202013-05-02 09:18:38 +000011999 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000012000 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000012001 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000012002 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12003 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000012004 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012005
Michael Liaodb7da202013-05-02 09:18:38 +000012006 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12007 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012008}
12009
Michael Liao6c0e04c2012-10-15 22:39:43 +000012010SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12011 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012012 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012013 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12014 DAG.getVTList(MVT::i32, MVT::Other),
12015 Op.getOperand(0), Op.getOperand(1));
12016}
12017
12018SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12019 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012020 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012021 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12022 Op.getOperand(0), Op.getOperand(1));
12023}
12024
Craig Topper55b24052012-09-11 06:15:32 +000012025static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000012026 return Op.getOperand(0);
12027}
12028
12029SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12030 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012031 SDValue Root = Op.getOperand(0);
12032 SDValue Trmp = Op.getOperand(1); // trampoline
12033 SDValue FPtr = Op.getOperand(2); // nested function
12034 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012035 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012036
Dan Gohman69de1932008-02-06 22:27:42 +000012037 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012038 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012039
12040 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012041 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012042
12043 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012044 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12045 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012046
Michael Liao7abf67a2012-10-04 19:50:43 +000012047 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12048 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012049
12050 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12051
12052 // Load the pointer to the nested function into R11.
12053 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012054 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012055 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012056 Addr, MachinePointerInfo(TrmpAddr),
12057 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012058
Owen Anderson825b72b2009-08-11 20:47:22 +000012059 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12060 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012061 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12062 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012063 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012064
12065 // Load the 'nest' parameter value into R10.
12066 // R10 is specified in X86CallingConv.td
12067 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012068 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12069 DAG.getConstant(10, MVT::i64));
12070 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012071 Addr, MachinePointerInfo(TrmpAddr, 10),
12072 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012073
Owen Anderson825b72b2009-08-11 20:47:22 +000012074 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12075 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012076 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12077 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012078 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012079
12080 // Jump to the nested function.
12081 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012082 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12083 DAG.getConstant(20, MVT::i64));
12084 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012085 Addr, MachinePointerInfo(TrmpAddr, 20),
12086 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012087
12088 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012089 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12090 DAG.getConstant(22, MVT::i64));
12091 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012092 MachinePointerInfo(TrmpAddr, 22),
12093 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012094
Duncan Sands4a544a72011-09-06 13:37:06 +000012095 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012096 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012097 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012098 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012099 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012100 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012101
12102 switch (CC) {
12103 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012104 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012105 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012106 case CallingConv::X86_StdCall: {
12107 // Pass 'nest' parameter in ECX.
12108 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012109 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012110
12111 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012112 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012113 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012114
Chris Lattner58d74912008-03-12 17:45:29 +000012115 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012116 unsigned InRegCount = 0;
12117 unsigned Idx = 1;
12118
12119 for (FunctionType::param_iterator I = FTy->param_begin(),
12120 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012121 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012122 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012123 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012124
12125 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012126 report_fatal_error("Nest register in use - reduce number of inreg"
12127 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012128 }
12129 }
12130 break;
12131 }
12132 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012133 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012134 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012135 // Pass 'nest' parameter in EAX.
12136 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012137 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012138 break;
12139 }
12140
Dan Gohman475871a2008-07-27 21:46:04 +000012141 SDValue OutChains[4];
12142 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012143
Owen Anderson825b72b2009-08-11 20:47:22 +000012144 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12145 DAG.getConstant(10, MVT::i32));
12146 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012147
Chris Lattnera62fe662010-02-05 19:20:30 +000012148 // This is storing the opcode for MOV32ri.
12149 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012150 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012151 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012152 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012153 Trmp, MachinePointerInfo(TrmpAddr),
12154 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012155
Owen Anderson825b72b2009-08-11 20:47:22 +000012156 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12157 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012158 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12159 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012160 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012161
Chris Lattnera62fe662010-02-05 19:20:30 +000012162 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012163 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12164 DAG.getConstant(5, MVT::i32));
12165 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012166 MachinePointerInfo(TrmpAddr, 5),
12167 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012168
Owen Anderson825b72b2009-08-11 20:47:22 +000012169 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12170 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012171 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12172 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012173 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012174
Duncan Sands4a544a72011-09-06 13:37:06 +000012175 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012176 }
12177}
12178
Dan Gohmand858e902010-04-17 15:26:15 +000012179SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12180 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012181 /*
12182 The rounding mode is in bits 11:10 of FPSR, and has the following
12183 settings:
12184 00 Round to nearest
12185 01 Round to -inf
12186 10 Round to +inf
12187 11 Round to 0
12188
12189 FLT_ROUNDS, on the other hand, expects the following:
12190 -1 Undefined
12191 0 Round to 0
12192 1 Round to nearest
12193 2 Round to +inf
12194 3 Round to -inf
12195
12196 To perform the conversion, we do:
12197 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12198 */
12199
12200 MachineFunction &MF = DAG.getMachineFunction();
12201 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012202 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012203 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012204 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012205 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012206
12207 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012208 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012209 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012210
Chris Lattner2156b792010-09-22 01:11:26 +000012211 MachineMemOperand *MMO =
12212 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12213 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012214
Chris Lattner2156b792010-09-22 01:11:26 +000012215 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12216 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12217 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012218 Ops, array_lengthof(Ops), MVT::i16,
12219 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012220
12221 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012222 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012223 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012224
12225 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012226 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012227 DAG.getNode(ISD::SRL, DL, MVT::i16,
12228 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012229 CWD, DAG.getConstant(0x800, MVT::i16)),
12230 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012231 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012232 DAG.getNode(ISD::SRL, DL, MVT::i16,
12233 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012234 CWD, DAG.getConstant(0x400, MVT::i16)),
12235 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012236
Dan Gohman475871a2008-07-27 21:46:04 +000012237 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012238 DAG.getNode(ISD::AND, DL, MVT::i16,
12239 DAG.getNode(ISD::ADD, DL, MVT::i16,
12240 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012241 DAG.getConstant(1, MVT::i16)),
12242 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012243
Duncan Sands83ec4b62008-06-06 12:08:01 +000012244 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012245 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012246}
12247
Craig Topper55b24052012-09-11 06:15:32 +000012248static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012249 EVT VT = Op.getValueType();
12250 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012251 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012252 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012253
12254 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012255 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012256 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012257 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012258 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012259 }
Evan Cheng18efe262007-12-14 02:13:44 +000012260
Evan Cheng152804e2007-12-14 08:30:15 +000012261 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012262 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012263 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012264
12265 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012266 SDValue Ops[] = {
12267 Op,
12268 DAG.getConstant(NumBits+NumBits-1, OpVT),
12269 DAG.getConstant(X86::COND_E, MVT::i8),
12270 Op.getValue(1)
12271 };
12272 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012273
12274 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012275 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012276
Owen Anderson825b72b2009-08-11 20:47:22 +000012277 if (VT == MVT::i8)
12278 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012279 return Op;
12280}
12281
Craig Topper55b24052012-09-11 06:15:32 +000012282static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012283 EVT VT = Op.getValueType();
12284 EVT OpVT = VT;
12285 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012286 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012287
12288 Op = Op.getOperand(0);
12289 if (VT == MVT::i8) {
12290 // Zero extend to i32 since there is not an i8 bsr.
12291 OpVT = MVT::i32;
12292 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12293 }
12294
12295 // Issue a bsr (scan bits in reverse).
12296 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12297 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12298
12299 // And xor with NumBits-1.
12300 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12301
12302 if (VT == MVT::i8)
12303 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12304 return Op;
12305}
12306
Craig Topper55b24052012-09-11 06:15:32 +000012307static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012308 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012309 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012310 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012311 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012312
12313 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012314 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012315 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012316
12317 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012318 SDValue Ops[] = {
12319 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012320 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012321 DAG.getConstant(X86::COND_E, MVT::i8),
12322 Op.getValue(1)
12323 };
Chandler Carruth77821022011-12-24 12:12:34 +000012324 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012325}
12326
Craig Topper13894fa2011-08-24 06:14:18 +000012327// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12328// ones, and then concatenate the result back.
12329static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012330 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012331
Craig Topper7a9a28b2012-08-12 02:23:29 +000012332 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012333 "Unsupported value type for operation");
12334
Craig Topper66ddd152012-04-27 22:54:43 +000012335 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012336 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012337
12338 // Extract the LHS vectors
12339 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012340 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12341 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012342
12343 // Extract the RHS vectors
12344 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012345 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12346 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012347
12348 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12349 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12350
12351 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12352 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12353 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12354}
12355
Craig Topper55b24052012-09-11 06:15:32 +000012356static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012357 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012358 Op.getValueType().isInteger() &&
12359 "Only handle AVX 256-bit vector integer operation");
12360 return Lower256IntArith(Op, DAG);
12361}
12362
Craig Topper55b24052012-09-11 06:15:32 +000012363static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012364 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012365 Op.getValueType().isInteger() &&
12366 "Only handle AVX 256-bit vector integer operation");
12367 return Lower256IntArith(Op, DAG);
12368}
12369
Craig Topper55b24052012-09-11 06:15:32 +000012370static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12371 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012372 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012373 EVT VT = Op.getValueType();
12374
12375 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012376 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012377 return Lower256IntArith(Op, DAG);
12378
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012379 SDValue A = Op.getOperand(0);
12380 SDValue B = Op.getOperand(1);
12381
12382 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12383 if (VT == MVT::v4i32) {
12384 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12385 "Should not custom lower when pmuldq is available!");
12386
12387 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012388 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012389 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12390 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12391
12392 // Multiply the even parts.
12393 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12394 // Now multiply odd parts.
12395 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12396
12397 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12398 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12399
12400 // Merge the two vectors back together with a shuffle. This expands into 2
12401 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012402 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012403 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12404 }
12405
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012406 assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12407 "Only know how to lower V2I64/V4I64/V8I64 multiply");
Craig Topper5b209e82012-02-05 03:14:49 +000012408
Craig Topper5b209e82012-02-05 03:14:49 +000012409 // Ahi = psrlqi(a, 32);
12410 // Bhi = psrlqi(b, 32);
12411 //
12412 // AloBlo = pmuludq(a, b);
12413 // AloBhi = pmuludq(a, Bhi);
12414 // AhiBlo = pmuludq(Ahi, b);
12415
12416 // AloBhi = psllqi(AloBhi, 32);
12417 // AhiBlo = psllqi(AhiBlo, 32);
12418 // return AloBlo + AloBhi + AhiBlo;
12419
Lang Hames1d825372013-10-21 17:51:24 +000012420 SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12421 SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
Craig Topperaaa643c2011-11-09 07:28:55 +000012422
Craig Topper5b209e82012-02-05 03:14:49 +000012423 // Bit cast to 32-bit vectors for MULUDQ
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012424 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12425 (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
Craig Topper5b209e82012-02-05 03:14:49 +000012426 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12427 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12428 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12429 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012430
Craig Topper5b209e82012-02-05 03:14:49 +000012431 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12432 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12433 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012434
Lang Hames1d825372013-10-21 17:51:24 +000012435 AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12436 AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012437
Dale Johannesene4d209d2009-02-03 20:21:25 +000012438 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012439 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012440}
12441
Craig Topper35e194f2013-08-14 07:53:41 +000012442static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012443 EVT VT = Op.getValueType();
12444 EVT EltTy = VT.getVectorElementType();
12445 unsigned NumElts = VT.getVectorNumElements();
12446 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012447 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012448
12449 // Lower sdiv X, pow2-const.
12450 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12451 if (!C)
12452 return SDValue();
12453
12454 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012455 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012456 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012457 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12458 HasAnyUndefs) ||
12459 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012460 return SDValue();
12461
12462 if ((SplatValue != 0) &&
12463 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
Lang Hames1d825372013-10-21 17:51:24 +000012464 unsigned Lg2 = SplatValue.countTrailingZeros();
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012465 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012466 SmallVector<SDValue, 16> Sz(NumElts,
12467 DAG.getConstant(EltTy.getSizeInBits() - 1,
12468 EltTy));
12469 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12470 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12471 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012472 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012473 SmallVector<SDValue, 16> Amt(NumElts,
Lang Hames1d825372013-10-21 17:51:24 +000012474 DAG.getConstant(EltTy.getSizeInBits() - Lg2,
Michael Liaodc8c0442013-10-15 17:51:02 +000012475 EltTy));
12476 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12477 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12478 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012479 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Lang Hames1d825372013-10-21 17:51:24 +000012480 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
Michael Liaodc8c0442013-10-15 17:51:02 +000012481 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12482 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12483 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012484
12485 // If we're dividing by a positive value, we're done. Otherwise, we must
12486 // negate the result.
12487 if (SplatValue.isNonNegative())
12488 return SRA;
12489
12490 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12491 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12492 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12493 }
12494 return SDValue();
12495}
12496
Michael Liao4b7ab122013-03-20 02:20:36 +000012497static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12498 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012499 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012500 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012501 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012502 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012503
Nadav Rotem43012222011-05-11 08:12:09 +000012504 // Optimize shl/srl/sra with constant shift amount.
12505 if (isSplatVector(Amt.getNode())) {
12506 SDValue SclrAmt = Amt->getOperand(0);
12507 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12508 uint64_t ShiftAmt = C->getZExtValue();
12509
Craig Toppered2e13d2012-01-22 19:15:14 +000012510 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012511 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012512 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12513 (Subtarget->hasAVX512() &&
12514 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012515 if (Op.getOpcode() == ISD::SHL)
Lang Hames1d825372013-10-21 17:51:24 +000012516 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12517 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012518 if (Op.getOpcode() == ISD::SRL)
Lang Hames1d825372013-10-21 17:51:24 +000012519 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12520 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012521 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
Lang Hames1d825372013-10-21 17:51:24 +000012522 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12523 DAG);
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012524 }
12525
Craig Toppered2e13d2012-01-22 19:15:14 +000012526 if (VT == MVT::v16i8) {
12527 if (Op.getOpcode() == ISD::SHL) {
12528 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012529 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12530 MVT::v8i16, R, ShiftAmt,
12531 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012532 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12533 // Zero out the rightmost bits.
12534 SmallVector<SDValue, 16> V(16,
12535 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12536 MVT::i8));
12537 return DAG.getNode(ISD::AND, dl, VT, SHL,
12538 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012539 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012540 if (Op.getOpcode() == ISD::SRL) {
12541 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012542 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12543 MVT::v8i16, R, ShiftAmt,
12544 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012545 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12546 // Zero out the leftmost bits.
12547 SmallVector<SDValue, 16> V(16,
12548 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12549 MVT::i8));
12550 return DAG.getNode(ISD::AND, dl, VT, SRL,
12551 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12552 }
12553 if (Op.getOpcode() == ISD::SRA) {
12554 if (ShiftAmt == 7) {
12555 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012556 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012557 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012558 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012559
Craig Toppered2e13d2012-01-22 19:15:14 +000012560 // R s>> a === ((R u>> a) ^ m) - m
12561 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12562 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12563 MVT::i8));
12564 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12565 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12566 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12567 return Res;
12568 }
Craig Topper731dfd02012-04-23 03:42:40 +000012569 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012570 }
Craig Topper46154eb2011-11-11 07:39:23 +000012571
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012572 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012573 if (Op.getOpcode() == ISD::SHL) {
12574 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012575 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12576 MVT::v16i16, R, ShiftAmt,
12577 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012578 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012579 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012580 SmallVector<SDValue, 32> V(32,
12581 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12582 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012583 return DAG.getNode(ISD::AND, dl, VT, SHL,
12584 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012585 }
Craig Topper0d86d462011-11-20 00:12:05 +000012586 if (Op.getOpcode() == ISD::SRL) {
12587 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012588 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12589 MVT::v16i16, R, ShiftAmt,
12590 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012591 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012592 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012593 SmallVector<SDValue, 32> V(32,
12594 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12595 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012596 return DAG.getNode(ISD::AND, dl, VT, SRL,
12597 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12598 }
12599 if (Op.getOpcode() == ISD::SRA) {
12600 if (ShiftAmt == 7) {
12601 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012602 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012603 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012604 }
12605
12606 // R s>> a === ((R u>> a) ^ m) - m
12607 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12608 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12609 MVT::i8));
12610 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12611 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12612 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12613 return Res;
12614 }
Craig Topper731dfd02012-04-23 03:42:40 +000012615 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012616 }
Nadav Rotem43012222011-05-11 08:12:09 +000012617 }
12618 }
12619
Michael Liao42317cc2013-03-20 02:33:21 +000012620 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12621 if (!Subtarget->is64Bit() &&
12622 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12623 Amt.getOpcode() == ISD::BITCAST &&
12624 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12625 Amt = Amt.getOperand(0);
12626 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12627 VT.getVectorNumElements();
12628 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12629 uint64_t ShiftAmt = 0;
12630 for (unsigned i = 0; i != Ratio; ++i) {
12631 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12632 if (C == 0)
12633 return SDValue();
12634 // 6 == Log2(64)
12635 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12636 }
12637 // Check remaining shift amounts.
12638 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12639 uint64_t ShAmt = 0;
12640 for (unsigned j = 0; j != Ratio; ++j) {
12641 ConstantSDNode *C =
12642 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12643 if (C == 0)
12644 return SDValue();
12645 // 6 == Log2(64)
12646 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12647 }
12648 if (ShAmt != ShiftAmt)
12649 return SDValue();
12650 }
12651 switch (Op.getOpcode()) {
12652 default:
12653 llvm_unreachable("Unknown shift opcode!");
12654 case ISD::SHL:
Lang Hames1d825372013-10-21 17:51:24 +000012655 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12656 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012657 case ISD::SRL:
Lang Hames1d825372013-10-21 17:51:24 +000012658 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12659 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012660 case ISD::SRA:
Lang Hames1d825372013-10-21 17:51:24 +000012661 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12662 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012663 }
12664 }
12665
12666 return SDValue();
12667}
12668
12669static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12670 const X86Subtarget* Subtarget) {
12671 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012672 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012673 SDValue R = Op.getOperand(0);
12674 SDValue Amt = Op.getOperand(1);
12675
12676 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12677 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12678 (Subtarget->hasInt256() &&
12679 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012680 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12681 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012682 SDValue BaseShAmt;
12683 EVT EltVT = VT.getVectorElementType();
12684
12685 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12686 unsigned NumElts = VT.getVectorNumElements();
12687 unsigned i, j;
12688 for (i = 0; i != NumElts; ++i) {
12689 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12690 continue;
12691 break;
12692 }
12693 for (j = i; j != NumElts; ++j) {
12694 SDValue Arg = Amt.getOperand(j);
12695 if (Arg.getOpcode() == ISD::UNDEF) continue;
12696 if (Arg != Amt.getOperand(i))
12697 break;
12698 }
12699 if (i != NumElts && j == NumElts)
12700 BaseShAmt = Amt.getOperand(i);
12701 } else {
12702 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12703 Amt = Amt.getOperand(0);
12704 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12705 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12706 SDValue InVec = Amt.getOperand(0);
12707 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12708 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12709 unsigned i = 0;
12710 for (; i != NumElts; ++i) {
12711 SDValue Arg = InVec.getOperand(i);
12712 if (Arg.getOpcode() == ISD::UNDEF) continue;
12713 BaseShAmt = Arg;
12714 break;
12715 }
12716 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12717 if (ConstantSDNode *C =
12718 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12719 unsigned SplatIdx =
12720 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12721 if (C->getZExtValue() == SplatIdx)
12722 BaseShAmt = InVec.getOperand(1);
12723 }
12724 }
12725 if (BaseShAmt.getNode() == 0)
12726 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12727 DAG.getIntPtrConstant(0));
12728 }
12729 }
12730
12731 if (BaseShAmt.getNode()) {
12732 if (EltVT.bitsGT(MVT::i32))
12733 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12734 else if (EltVT.bitsLT(MVT::i32))
12735 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12736
12737 switch (Op.getOpcode()) {
12738 default:
12739 llvm_unreachable("Unknown shift opcode!");
12740 case ISD::SHL:
12741 switch (VT.getSimpleVT().SimpleTy) {
12742 default: return SDValue();
12743 case MVT::v2i64:
12744 case MVT::v4i32:
12745 case MVT::v8i16:
12746 case MVT::v4i64:
12747 case MVT::v8i32:
12748 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012749 case MVT::v16i32:
12750 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012751 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12752 }
12753 case ISD::SRA:
12754 switch (VT.getSimpleVT().SimpleTy) {
12755 default: return SDValue();
12756 case MVT::v4i32:
12757 case MVT::v8i16:
12758 case MVT::v8i32:
12759 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012760 case MVT::v16i32:
12761 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012762 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12763 }
12764 case ISD::SRL:
12765 switch (VT.getSimpleVT().SimpleTy) {
12766 default: return SDValue();
12767 case MVT::v2i64:
12768 case MVT::v4i32:
12769 case MVT::v8i16:
12770 case MVT::v4i64:
12771 case MVT::v8i32:
12772 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012773 case MVT::v16i32:
12774 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012775 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12776 }
12777 }
12778 }
12779 }
12780
12781 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12782 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012783 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12784 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012785 Amt.getOpcode() == ISD::BITCAST &&
12786 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12787 Amt = Amt.getOperand(0);
12788 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12789 VT.getVectorNumElements();
12790 std::vector<SDValue> Vals(Ratio);
12791 for (unsigned i = 0; i != Ratio; ++i)
12792 Vals[i] = Amt.getOperand(i);
12793 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12794 for (unsigned j = 0; j != Ratio; ++j)
12795 if (Vals[j] != Amt.getOperand(i + j))
12796 return SDValue();
12797 }
12798 switch (Op.getOpcode()) {
12799 default:
12800 llvm_unreachable("Unknown shift opcode!");
12801 case ISD::SHL:
12802 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12803 case ISD::SRL:
12804 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12805 case ISD::SRA:
12806 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12807 }
12808 }
12809
Michael Liao4b7ab122013-03-20 02:20:36 +000012810 return SDValue();
12811}
12812
Craig Topper35e194f2013-08-14 07:53:41 +000012813static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12814 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012815
12816 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012817 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012818 SDValue R = Op.getOperand(0);
12819 SDValue Amt = Op.getOperand(1);
12820 SDValue V;
12821
12822 if (!Subtarget->hasSSE2())
12823 return SDValue();
12824
12825 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12826 if (V.getNode())
12827 return V;
12828
Michael Liao42317cc2013-03-20 02:33:21 +000012829 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12830 if (V.getNode())
12831 return V;
12832
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012833 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12834 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012835 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12836 if (Subtarget->hasInt256()) {
12837 if (Op.getOpcode() == ISD::SRL &&
12838 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12839 VT == MVT::v4i64 || VT == MVT::v8i32))
12840 return Op;
12841 if (Op.getOpcode() == ISD::SHL &&
12842 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12843 VT == MVT::v4i64 || VT == MVT::v8i32))
12844 return Op;
12845 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12846 return Op;
12847 }
12848
Nadav Rotem43012222011-05-11 08:12:09 +000012849 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012850 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012851 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012852
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012853 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012854 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012855 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12856 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12857 }
Nadav Rotem43012222011-05-11 08:12:09 +000012858 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012859 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012860
Nate Begeman51409212010-07-28 00:21:48 +000012861 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012862 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012863 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012864
Lang Hames8b99c1e2011-12-17 01:08:46 +000012865 // Turn 'a' into a mask suitable for VSELECT
12866 SDValue VSelM = DAG.getConstant(0x80, VT);
12867 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012868 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012869
Lang Hames8b99c1e2011-12-17 01:08:46 +000012870 SDValue CM1 = DAG.getConstant(0x0f, VT);
12871 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012872
Lang Hames8b99c1e2011-12-17 01:08:46 +000012873 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12874 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Lang Hames1d825372013-10-21 17:51:24 +000012875 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012876 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012877 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12878
Nate Begeman51409212010-07-28 00:21:48 +000012879 // a += a
12880 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012881 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012882 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012883
Lang Hames8b99c1e2011-12-17 01:08:46 +000012884 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12885 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Lang Hames1d825372013-10-21 17:51:24 +000012886 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012887 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012888 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12889
Nate Begeman51409212010-07-28 00:21:48 +000012890 // a += a
12891 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012892 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012893 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012894
Lang Hames8b99c1e2011-12-17 01:08:46 +000012895 // return VSELECT(r, r+r, a);
12896 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012897 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012898 return R;
12899 }
Craig Topper46154eb2011-11-11 07:39:23 +000012900
12901 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012902 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012903 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012904 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12905 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12906
12907 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012908 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12909 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012910
12911 // Recreate the shift amount vectors
12912 SDValue Amt1, Amt2;
12913 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12914 // Constant shift amount
12915 SmallVector<SDValue, 4> Amt1Csts;
12916 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012917 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012918 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012919 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012920 Amt2Csts.push_back(Amt->getOperand(i));
12921
12922 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12923 &Amt1Csts[0], NumElems/2);
12924 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12925 &Amt2Csts[0], NumElems/2);
12926 } else {
12927 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012928 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12929 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012930 }
12931
12932 // Issue new vector shifts for the smaller types
12933 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12934 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12935
12936 // Concatenate the result back
12937 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12938 }
12939
Nate Begeman51409212010-07-28 00:21:48 +000012940 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012941}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012942
Craig Topper55b24052012-09-11 06:15:32 +000012943static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012944 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12945 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012946 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12947 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012948 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012949 SDValue LHS = N->getOperand(0);
12950 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012951 unsigned BaseOp = 0;
12952 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012953 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012954 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012955 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012956 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012957 // A subtract of one will be selected as a INC. Note that INC doesn't
12958 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012959 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12960 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012961 BaseOp = X86ISD::INC;
12962 Cond = X86::COND_O;
12963 break;
12964 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012965 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012966 Cond = X86::COND_O;
12967 break;
12968 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012969 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012970 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012971 break;
12972 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012973 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12974 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012975 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12976 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012977 BaseOp = X86ISD::DEC;
12978 Cond = X86::COND_O;
12979 break;
12980 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012981 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012982 Cond = X86::COND_O;
12983 break;
12984 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012985 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012986 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012987 break;
12988 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000012989 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000012990 Cond = X86::COND_O;
12991 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012992 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12993 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12994 MVT::i32);
12995 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012996
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012997 SDValue SetCC =
12998 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12999 DAG.getConstant(X86::COND_O, MVT::i32),
13000 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013001
Dan Gohman6e5fda22011-07-22 18:45:15 +000013002 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013003 }
Bill Wendling74c37652008-12-09 22:08:41 +000013004 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013005
Bill Wendling61edeb52008-12-02 01:06:39 +000013006 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013007 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013008 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013009
Bill Wendling61edeb52008-12-02 01:06:39 +000013010 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013011 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13012 DAG.getConstant(Cond, MVT::i32),
13013 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013014
Dan Gohman6e5fda22011-07-22 18:45:15 +000013015 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013016}
13017
Chad Rosier30450e82011-12-22 22:35:21 +000013018SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13019 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013020 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013021 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13022 EVT VT = Op.getValueType();
13023
Craig Toppered2e13d2012-01-22 19:15:14 +000013024 if (!Subtarget->hasSSE2() || !VT.isVector())
13025 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013026
Craig Toppered2e13d2012-01-22 19:15:14 +000013027 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13028 ExtraVT.getScalarType().getSizeInBits();
Craig Toppered2e13d2012-01-22 19:15:14 +000013029
13030 switch (VT.getSimpleVT().SimpleTy) {
13031 default: return SDValue();
13032 case MVT::v8i32:
13033 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013034 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013035 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013036 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000013037 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000013038 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000013039
Craig Toppered2e13d2012-01-22 19:15:14 +000013040 // Extract the LHS vectors
13041 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000013042 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13043 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000013044
Craig Toppered2e13d2012-01-22 19:15:14 +000013045 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13046 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013047
Craig Toppered2e13d2012-01-22 19:15:14 +000013048 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013049 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013050 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13051 ExtraNumElems/2);
13052 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013053
Craig Toppered2e13d2012-01-22 19:15:14 +000013054 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13055 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013056
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013057 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013058 }
13059 // fall through
13060 case MVT::v4i32:
13061 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013062 // (sext (vzext x)) -> (vsext x)
13063 SDValue Op0 = Op.getOperand(0);
13064 SDValue Op00 = Op0.getOperand(0);
13065 SDValue Tmp1;
13066 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13067 if (Op0.getOpcode() == ISD::BITCAST &&
13068 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
Craig Topper158ec072013-08-14 07:34:43 +000013069 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Nadav Rotemb05130e2013-03-19 18:38:27 +000013070 if (Tmp1.getNode()) {
13071 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13072 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13073 "This optimization is invalid without a VZEXT.");
13074 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13075 }
13076
13077 // If the above didn't work, then just use Shift-Left + Shift-Right.
Lang Hames1d825372013-10-21 17:51:24 +000013078 Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13079 DAG);
13080 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13081 DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013082 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013083 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013084}
13085
Craig Topper55b24052012-09-11 06:15:32 +000013086static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13087 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013088 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013089 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13090 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13091 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13092 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13093
13094 // The only fence that needs an instruction is a sequentially-consistent
13095 // cross-thread fence.
13096 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13097 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13098 // no-sse2). There isn't any reason to disable it if the target processor
13099 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013100 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013101 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13102
13103 SDValue Chain = Op.getOperand(0);
13104 SDValue Zero = DAG.getConstant(0, MVT::i32);
13105 SDValue Ops[] = {
13106 DAG.getRegister(X86::ESP, MVT::i32), // Base
13107 DAG.getTargetConstant(1, MVT::i8), // Scale
13108 DAG.getRegister(0, MVT::i32), // Index
13109 DAG.getTargetConstant(0, MVT::i32), // Disp
13110 DAG.getRegister(0, MVT::i32), // Segment.
13111 Zero,
13112 Chain
13113 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013114 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013115 return SDValue(Res, 0);
13116 }
13117
13118 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13119 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13120}
13121
Craig Topper55b24052012-09-11 06:15:32 +000013122static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13123 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013124 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013125 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013126 unsigned Reg = 0;
13127 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013128 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013129 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013130 case MVT::i8: Reg = X86::AL; size = 1; break;
13131 case MVT::i16: Reg = X86::AX; size = 2; break;
13132 case MVT::i32: Reg = X86::EAX; size = 4; break;
13133 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013134 assert(Subtarget->is64Bit() && "Node not type legal!");
13135 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013136 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013137 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013138 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013139 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013140 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013141 Op.getOperand(1),
13142 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013143 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013144 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013145 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013146 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13147 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013148 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013149 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013150 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013151 return cpOut;
13152}
13153
Craig Topper55b24052012-09-11 06:15:32 +000013154static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13155 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013156 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013157 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013158 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013159 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013160 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013161 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13162 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013163 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013164 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13165 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013166 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013167 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013168 rdx.getValue(1)
13169 };
Michael Liao0ee17002013-04-19 04:03:37 +000013170 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013171}
13172
Craig Topper35e194f2013-08-14 07:53:41 +000013173static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13174 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013175 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13176 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013177 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013178 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013179 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013180 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013181 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013182 // i64 <=> MMX conversions are Legal.
13183 if (SrcVT==MVT::i64 && DstVT.isVector())
13184 return Op;
13185 if (DstVT==MVT::i64 && SrcVT.isVector())
13186 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013187 // MMX <=> MMX conversions are Legal.
13188 if (SrcVT.isVector() && DstVT.isVector())
13189 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013190 // All other conversions need to be expanded.
13191 return SDValue();
13192}
Chris Lattner5b856542010-12-20 00:59:46 +000013193
Craig Topper55b24052012-09-11 06:15:32 +000013194static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013195 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013196 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013197 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013198 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013199 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013200 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013201 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013202 Node->getOperand(0),
13203 Node->getOperand(1), negOp,
13204 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013205 cast<AtomicSDNode>(Node)->getAlignment(),
13206 cast<AtomicSDNode>(Node)->getOrdering(),
13207 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013208}
13209
Eli Friedman327236c2011-08-24 20:50:09 +000013210static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13211 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013212 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013213 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013214
13215 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013216 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13217 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13218 // (The only way to get a 16-byte store is cmpxchg16b)
13219 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13220 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13221 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013222 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13223 cast<AtomicSDNode>(Node)->getMemoryVT(),
13224 Node->getOperand(0),
13225 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013226 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013227 cast<AtomicSDNode>(Node)->getOrdering(),
13228 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013229 return Swap.getValue(1);
13230 }
13231 // Other atomic stores have a simple pattern.
13232 return Op;
13233}
13234
Chris Lattner5b856542010-12-20 00:59:46 +000013235static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13236 EVT VT = Op.getNode()->getValueType(0);
13237
13238 // Let legalize expand this if it isn't a legal type yet.
13239 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13240 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013241
Chris Lattner5b856542010-12-20 00:59:46 +000013242 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013243
Chris Lattner5b856542010-12-20 00:59:46 +000013244 unsigned Opc;
13245 bool ExtraOp = false;
13246 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013247 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013248 case ISD::ADDC: Opc = X86ISD::ADD; break;
13249 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13250 case ISD::SUBC: Opc = X86ISD::SUB; break;
13251 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13252 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013253
Chris Lattner5b856542010-12-20 00:59:46 +000013254 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013255 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013256 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013257 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013258 Op.getOperand(1), Op.getOperand(2));
13259}
13260
Craig Topper35e194f2013-08-14 07:53:41 +000013261static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13262 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013263 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013264
Evan Cheng8688a582013-01-29 02:32:37 +000013265 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013266 // which returns the values as { float, float } (in XMM0) or
13267 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013268 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013269 SDValue Arg = Op.getOperand(0);
13270 EVT ArgVT = Arg.getValueType();
13271 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013272
Craig Topper35e194f2013-08-14 07:53:41 +000013273 TargetLowering::ArgListTy Args;
13274 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013275
Evan Cheng8688a582013-01-29 02:32:37 +000013276 Entry.Node = Arg;
13277 Entry.Ty = ArgTy;
13278 Entry.isSExt = false;
13279 Entry.isZExt = false;
13280 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013281
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013282 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013283 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13284 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13285 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013286 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013287 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13288 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013289
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013290 Type *RetTy = isF64
13291 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13292 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013293 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013294 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13295 false, false, false, false, 0,
13296 CallingConv::C, /*isTaillCall=*/false,
13297 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13298 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013299 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013300
13301 if (isF64)
13302 // Returned in xmm0 and xmm1.
13303 return CallResult.first;
13304
13305 // Returned in bits 0:31 and 32:64 xmm0.
13306 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13307 CallResult.first, DAG.getIntPtrConstant(0));
13308 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13309 CallResult.first, DAG.getIntPtrConstant(1));
13310 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13311 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013312}
13313
Evan Cheng0db9fe62006-04-25 20:13:52 +000013314/// LowerOperation - Provide custom lowering hooks for some operations.
13315///
Dan Gohmand858e902010-04-17 15:26:15 +000013316SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013317 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013318 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013319 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013320 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13321 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013322 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013323 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013324 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013325 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013326 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13327 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13328 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013329 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13330 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013331 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13332 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13333 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013334 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013335 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013336 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013337 case ISD::SHL_PARTS:
13338 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013339 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013340 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013341 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013342 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013343 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13344 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13345 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013346 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013347 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013348 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013349 case ISD::FABS: return LowerFABS(Op, DAG);
13350 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013351 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013352 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013353 case ISD::SETCC: return LowerSETCC(Op, DAG);
13354 case ISD::SELECT: return LowerSELECT(Op, DAG);
13355 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013356 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013357 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013358 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013359 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013360 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013361 case ISD::INTRINSIC_VOID:
13362 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013363 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13364 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013365 case ISD::FRAME_TO_ARGS_OFFSET:
13366 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013367 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013368 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013369 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13370 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013371 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13372 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013373 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013374 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013375 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013376 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013377 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013378 case ISD::SRA:
13379 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013380 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013381 case ISD::SADDO:
13382 case ISD::UADDO:
13383 case ISD::SSUBO:
13384 case ISD::USUBO:
13385 case ISD::SMULO:
13386 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013387 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013388 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013389 case ISD::ADDC:
13390 case ISD::ADDE:
13391 case ISD::SUBC:
13392 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013393 case ISD::ADD: return LowerADD(Op, DAG);
13394 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013395 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013396 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013397 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013398}
13399
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013400static void ReplaceATOMIC_LOAD(SDNode *Node,
13401 SmallVectorImpl<SDValue> &Results,
13402 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013403 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013404 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13405
13406 // Convert wide load -> cmpxchg8b/cmpxchg16b
13407 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13408 // (The only way to get a 16-byte load is cmpxchg16b)
13409 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013410 SDValue Zero = DAG.getConstant(0, VT);
13411 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013412 Node->getOperand(0),
13413 Node->getOperand(1), Zero, Zero,
13414 cast<AtomicSDNode>(Node)->getMemOperand(),
13415 cast<AtomicSDNode>(Node)->getOrdering(),
13416 cast<AtomicSDNode>(Node)->getSynchScope());
13417 Results.push_back(Swap.getValue(0));
13418 Results.push_back(Swap.getValue(1));
13419}
13420
Craig Topperc0878702012-08-17 06:55:11 +000013421static void
Duncan Sands1607f052008-12-01 11:39:25 +000013422ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013423 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013424 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013425 assert (Node->getValueType(0) == MVT::i64 &&
13426 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013427
13428 SDValue Chain = Node->getOperand(0);
13429 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013430 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013431 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013432 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013433 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013434 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013435 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013436 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013437 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013438 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013439 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013440 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013441 Results.push_back(Result.getValue(2));
13442}
13443
Duncan Sands126d9072008-07-04 11:47:58 +000013444/// ReplaceNodeResults - Replace a node with an illegal result type
13445/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013446void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13447 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013448 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013449 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013450 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013451 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013452 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013453 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013454 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013455 case ISD::ADDC:
13456 case ISD::ADDE:
13457 case ISD::SUBC:
13458 case ISD::SUBE:
13459 // We don't want to expand or promote these.
13460 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013461 case ISD::FP_TO_SINT:
13462 case ISD::FP_TO_UINT: {
13463 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13464
13465 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13466 return;
13467
Eli Friedman948e95a2009-05-23 09:59:16 +000013468 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013469 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013470 SDValue FIST = Vals.first, StackSlot = Vals.second;
13471 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013472 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013473 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013474 if (StackSlot.getNode() != 0)
13475 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13476 MachinePointerInfo(),
13477 false, false, false, 0));
13478 else
13479 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013480 }
13481 return;
13482 }
Michael Liao991b6a22012-10-24 04:09:32 +000013483 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013484 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13485 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013486 N->getValueType(0) != MVT::v2f32)
13487 return;
13488 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13489 N->getOperand(0));
13490 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13491 MVT::f64);
13492 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13493 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13494 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13495 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13496 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13497 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13498 return;
13499 }
Michael Liao44c2d612012-10-10 16:53:28 +000013500 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013501 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13502 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013503 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13504 Results.push_back(V);
13505 return;
13506 }
Duncan Sands1607f052008-12-01 11:39:25 +000013507 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013508 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013509 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013510 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013511 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013512 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013513 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013514 eax.getValue(2));
13515 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13516 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013517 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13518 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013519 Results.push_back(edx.getValue(1));
13520 return;
13521 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013522 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013523 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013524 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013525 bool Regs64bit = T == MVT::i128;
13526 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013527 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013528 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13529 DAG.getConstant(0, HalfT));
13530 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13531 DAG.getConstant(1, HalfT));
13532 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13533 Regs64bit ? X86::RAX : X86::EAX,
13534 cpInL, SDValue());
13535 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13536 Regs64bit ? X86::RDX : X86::EDX,
13537 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013538 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013539 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13540 DAG.getConstant(0, HalfT));
13541 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13542 DAG.getConstant(1, HalfT));
13543 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13544 Regs64bit ? X86::RBX : X86::EBX,
13545 swapInL, cpInH.getValue(1));
13546 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013547 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013548 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013549 SDValue Ops[] = { swapInH.getValue(0),
13550 N->getOperand(1),
13551 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013552 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013553 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013554 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13555 X86ISD::LCMPXCHG8_DAG;
13556 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013557 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013558 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13559 Regs64bit ? X86::RAX : X86::EAX,
13560 HalfT, Result.getValue(1));
13561 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13562 Regs64bit ? X86::RDX : X86::EDX,
13563 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013564 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013565 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013566 Results.push_back(cpOutH.getValue(1));
13567 return;
13568 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013569 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013570 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013571 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013572 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013573 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013574 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013575 case ISD::ATOMIC_LOAD_MAX:
13576 case ISD::ATOMIC_LOAD_MIN:
13577 case ISD::ATOMIC_LOAD_UMAX:
13578 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013579 case ISD::ATOMIC_SWAP: {
13580 unsigned Opc;
13581 switch (N->getOpcode()) {
13582 default: llvm_unreachable("Unexpected opcode");
13583 case ISD::ATOMIC_LOAD_ADD:
13584 Opc = X86ISD::ATOMADD64_DAG;
13585 break;
13586 case ISD::ATOMIC_LOAD_AND:
13587 Opc = X86ISD::ATOMAND64_DAG;
13588 break;
13589 case ISD::ATOMIC_LOAD_NAND:
13590 Opc = X86ISD::ATOMNAND64_DAG;
13591 break;
13592 case ISD::ATOMIC_LOAD_OR:
13593 Opc = X86ISD::ATOMOR64_DAG;
13594 break;
13595 case ISD::ATOMIC_LOAD_SUB:
13596 Opc = X86ISD::ATOMSUB64_DAG;
13597 break;
13598 case ISD::ATOMIC_LOAD_XOR:
13599 Opc = X86ISD::ATOMXOR64_DAG;
13600 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013601 case ISD::ATOMIC_LOAD_MAX:
13602 Opc = X86ISD::ATOMMAX64_DAG;
13603 break;
13604 case ISD::ATOMIC_LOAD_MIN:
13605 Opc = X86ISD::ATOMMIN64_DAG;
13606 break;
13607 case ISD::ATOMIC_LOAD_UMAX:
13608 Opc = X86ISD::ATOMUMAX64_DAG;
13609 break;
13610 case ISD::ATOMIC_LOAD_UMIN:
13611 Opc = X86ISD::ATOMUMIN64_DAG;
13612 break;
Craig Topperc0878702012-08-17 06:55:11 +000013613 case ISD::ATOMIC_SWAP:
13614 Opc = X86ISD::ATOMSWAP64_DAG;
13615 break;
13616 }
13617 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013618 return;
Craig Topperc0878702012-08-17 06:55:11 +000013619 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013620 case ISD::ATOMIC_LOAD:
13621 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013622 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013623}
13624
Evan Cheng72261582005-12-20 06:22:03 +000013625const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13626 switch (Opcode) {
13627 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013628 case X86ISD::BSF: return "X86ISD::BSF";
13629 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013630 case X86ISD::SHLD: return "X86ISD::SHLD";
13631 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013632 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013633 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013634 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013635 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013636 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013637 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013638 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013639 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13640 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13641 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013642 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013643 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013644 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013645 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013646 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013647 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013648 case X86ISD::COMI: return "X86ISD::COMI";
13649 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013650 case X86ISD::CMPM: return "X86ISD::CMPM";
13651 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013652 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013653 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013654 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13655 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013656 case X86ISD::CMOV: return "X86ISD::CMOV";
13657 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013658 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013659 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13660 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013661 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013662 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013663 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013664 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013665 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013666 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13667 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013668 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013669 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013670 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013671 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013672 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013673 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013674 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013675 case X86ISD::HADD: return "X86ISD::HADD";
13676 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013677 case X86ISD::FHADD: return "X86ISD::FHADD";
13678 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013679 case X86ISD::UMAX: return "X86ISD::UMAX";
13680 case X86ISD::UMIN: return "X86ISD::UMIN";
13681 case X86ISD::SMAX: return "X86ISD::SMAX";
13682 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013683 case X86ISD::FMAX: return "X86ISD::FMAX";
13684 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013685 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13686 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013687 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13688 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013689 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013690 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013691 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013692 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13693 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013694 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013695 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013696 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013697 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013698 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13699 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013700 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13701 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13702 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13703 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13704 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13705 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013706 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013707 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013708 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013709 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13710 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013711 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13712 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013713 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013714 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013715 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013716 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13717 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013718 case X86ISD::VSHL: return "X86ISD::VSHL";
13719 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013720 case X86ISD::VSRA: return "X86ISD::VSRA";
13721 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13722 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13723 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013724 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013725 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13726 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013727 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13728 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013729 case X86ISD::ADD: return "X86ISD::ADD";
13730 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013731 case X86ISD::ADC: return "X86ISD::ADC";
13732 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013733 case X86ISD::SMUL: return "X86ISD::SMUL";
13734 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013735 case X86ISD::INC: return "X86ISD::INC";
13736 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013737 case X86ISD::OR: return "X86ISD::OR";
13738 case X86ISD::XOR: return "X86ISD::XOR";
13739 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013740 case X86ISD::BLSI: return "X86ISD::BLSI";
13741 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13742 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013743 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013744 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013745 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013746 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013747 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013748 case X86ISD::TESTM: return "X86ISD::TESTM";
13749 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13750 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013751 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013752 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13753 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013754 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013755 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013756 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013757 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013758 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013759 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13760 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013761 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13762 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13763 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013764 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13765 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013766 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13767 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013768 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013769 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013770 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013771 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013772 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013773 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013774 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013775 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013776 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013777 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013778 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013779 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013780 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013781 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013782 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013783 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013784 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013785 case X86ISD::FMADD: return "X86ISD::FMADD";
13786 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13787 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13788 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13789 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13790 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013791 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13792 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013793 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013794 }
13795}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013796
Chris Lattnerc9addb72007-03-30 23:15:24 +000013797// isLegalAddressingMode - Return true if the addressing mode represented
13798// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013799bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013800 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013801 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013802 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013803 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013804
Chris Lattnerc9addb72007-03-30 23:15:24 +000013805 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013806 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013807 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013808
Chris Lattnerc9addb72007-03-30 23:15:24 +000013809 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013810 unsigned GVFlags =
13811 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013812
Chris Lattnerdfed4132009-07-10 07:38:24 +000013813 // If a reference to this global requires an extra load, we can't fold it.
13814 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013815 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013816
Chris Lattnerdfed4132009-07-10 07:38:24 +000013817 // If BaseGV requires a register for the PIC base, we cannot also have a
13818 // BaseReg specified.
13819 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013820 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013821
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013822 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013823 if ((M != CodeModel::Small || R != Reloc::Static) &&
13824 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013825 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013826 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013827
Chris Lattnerc9addb72007-03-30 23:15:24 +000013828 switch (AM.Scale) {
13829 case 0:
13830 case 1:
13831 case 2:
13832 case 4:
13833 case 8:
13834 // These scales always work.
13835 break;
13836 case 3:
13837 case 5:
13838 case 9:
13839 // These scales are formed with basereg+scalereg. Only accept if there is
13840 // no basereg yet.
13841 if (AM.HasBaseReg)
13842 return false;
13843 break;
13844 default: // Other stuff never works.
13845 return false;
13846 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013847
Chris Lattnerc9addb72007-03-30 23:15:24 +000013848 return true;
13849}
13850
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013851bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013852 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013853 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013854 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13855 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013856 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013857}
13858
Tim Northoverd1134482013-08-06 09:12:35 +000013859bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13860 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13861 return false;
13862
13863 if (!isTypeLegal(EVT::getEVT(Ty1)))
13864 return false;
13865
13866 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13867
13868 // Assuming the caller doesn't have a zeroext or signext return parameter,
13869 // truncation all the way down to i1 is valid.
13870 return true;
13871}
13872
Evan Cheng70e10d32012-07-17 06:53:39 +000013873bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013874 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013875}
13876
13877bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013878 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013879 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013880}
13881
Owen Andersone50ed302009-08-10 22:56:29 +000013882bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013883 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013884 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013885 unsigned NumBits1 = VT1.getSizeInBits();
13886 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013887 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013888}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013889
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013890bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013891 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013892 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013893}
13894
Owen Andersone50ed302009-08-10 22:56:29 +000013895bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013896 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013897 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013898}
13899
Evan Cheng2766a472012-12-06 19:13:27 +000013900bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13901 EVT VT1 = Val.getValueType();
13902 if (isZExtFree(VT1, VT2))
13903 return true;
13904
13905 if (Val.getOpcode() != ISD::LOAD)
13906 return false;
13907
13908 if (!VT1.isSimple() || !VT1.isInteger() ||
13909 !VT2.isSimple() || !VT2.isInteger())
13910 return false;
13911
13912 switch (VT1.getSimpleVT().SimpleTy) {
13913 default: break;
13914 case MVT::i8:
13915 case MVT::i16:
13916 case MVT::i32:
13917 // X86 has 8, 16, and 32-bit zero-extending loads.
13918 return true;
13919 }
13920
13921 return false;
13922}
13923
Stephen Line54885a2013-07-09 18:16:56 +000013924bool
13925X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13926 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13927 return false;
13928
13929 VT = VT.getScalarType();
13930
13931 if (!VT.isSimple())
13932 return false;
13933
13934 switch (VT.getSimpleVT().SimpleTy) {
13935 case MVT::f32:
13936 case MVT::f64:
13937 return true;
13938 default:
13939 break;
13940 }
13941
13942 return false;
13943}
13944
Owen Andersone50ed302009-08-10 22:56:29 +000013945bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013946 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013947 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013948}
13949
Evan Cheng60c07e12006-07-05 22:17:51 +000013950/// isShuffleMaskLegal - Targets can use this to indicate that they only
13951/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13952/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13953/// are assumed to be legal.
13954bool
Eric Christopherfd179292009-08-27 18:07:15 +000013955X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013956 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013957 if (!VT.isSimple())
13958 return false;
13959
13960 MVT SVT = VT.getSimpleVT();
13961
Eric Christophercff6f852010-04-15 01:40:20 +000013962 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013963 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013964 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013965
Nate Begemana09008b2009-10-19 02:17:23 +000013966 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013967 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013968 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013969 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013970 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013971 isPSHUFDMask(M, SVT) ||
13972 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13973 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13974 isPALIGNRMask(M, SVT, Subtarget) ||
13975 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13976 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13977 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13978 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013979}
13980
Dan Gohman7d8143f2008-04-09 20:09:42 +000013981bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013982X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013983 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013984 if (!VT.isSimple())
13985 return false;
13986
13987 MVT SVT = VT.getSimpleVT();
13988 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000013989 // FIXME: This collection of masks seems suspect.
13990 if (NumElts == 2)
13991 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000013992 if (NumElts == 4 && SVT.is128BitVector()) {
13993 return (isMOVLMask(Mask, SVT) ||
13994 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013995 isSHUFPMask(Mask, SVT) ||
13996 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000013997 }
13998 return false;
13999}
14000
14001//===----------------------------------------------------------------------===//
14002// X86 Scheduler Hooks
14003//===----------------------------------------------------------------------===//
14004
Michael Liaobe02a902012-11-08 07:28:54 +000014005/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014006static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14007 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014008 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014009
14010 const BasicBlock *BB = MBB->getBasicBlock();
14011 MachineFunction::iterator I = MBB;
14012 ++I;
14013
14014 // For the v = xbegin(), we generate
14015 //
14016 // thisMBB:
14017 // xbegin sinkMBB
14018 //
14019 // mainMBB:
14020 // eax = -1
14021 //
14022 // sinkMBB:
14023 // v = eax
14024
14025 MachineBasicBlock *thisMBB = MBB;
14026 MachineFunction *MF = MBB->getParent();
14027 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14028 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14029 MF->insert(I, mainMBB);
14030 MF->insert(I, sinkMBB);
14031
14032 // Transfer the remainder of BB and its successor edges to sinkMBB.
14033 sinkMBB->splice(sinkMBB->begin(), MBB,
14034 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14035 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14036
14037 // thisMBB:
14038 // xbegin sinkMBB
14039 // # fallthrough to mainMBB
14040 // # abortion to sinkMBB
14041 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14042 thisMBB->addSuccessor(mainMBB);
14043 thisMBB->addSuccessor(sinkMBB);
14044
14045 // mainMBB:
14046 // EAX = -1
14047 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14048 mainMBB->addSuccessor(sinkMBB);
14049
14050 // sinkMBB:
14051 // EAX is live into the sinkMBB
14052 sinkMBB->addLiveIn(X86::EAX);
14053 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14054 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14055 .addReg(X86::EAX);
14056
14057 MI->eraseFromParent();
14058 return sinkMBB;
14059}
14060
Michael Liaob118a072012-09-20 03:06:15 +000014061// Get CMPXCHG opcode for the specified data type.
14062static unsigned getCmpXChgOpcode(EVT VT) {
14063 switch (VT.getSimpleVT().SimpleTy) {
14064 case MVT::i8: return X86::LCMPXCHG8;
14065 case MVT::i16: return X86::LCMPXCHG16;
14066 case MVT::i32: return X86::LCMPXCHG32;
14067 case MVT::i64: return X86::LCMPXCHG64;
14068 default:
14069 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014070 }
Michael Liaob118a072012-09-20 03:06:15 +000014071 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014072}
14073
Michael Liaob118a072012-09-20 03:06:15 +000014074// Get LOAD opcode for the specified data type.
14075static unsigned getLoadOpcode(EVT VT) {
14076 switch (VT.getSimpleVT().SimpleTy) {
14077 case MVT::i8: return X86::MOV8rm;
14078 case MVT::i16: return X86::MOV16rm;
14079 case MVT::i32: return X86::MOV32rm;
14080 case MVT::i64: return X86::MOV64rm;
14081 default:
14082 break;
14083 }
14084 llvm_unreachable("Invalid operand size!");
14085}
14086
14087// Get opcode of the non-atomic one from the specified atomic instruction.
14088static unsigned getNonAtomicOpcode(unsigned Opc) {
14089 switch (Opc) {
14090 case X86::ATOMAND8: return X86::AND8rr;
14091 case X86::ATOMAND16: return X86::AND16rr;
14092 case X86::ATOMAND32: return X86::AND32rr;
14093 case X86::ATOMAND64: return X86::AND64rr;
14094 case X86::ATOMOR8: return X86::OR8rr;
14095 case X86::ATOMOR16: return X86::OR16rr;
14096 case X86::ATOMOR32: return X86::OR32rr;
14097 case X86::ATOMOR64: return X86::OR64rr;
14098 case X86::ATOMXOR8: return X86::XOR8rr;
14099 case X86::ATOMXOR16: return X86::XOR16rr;
14100 case X86::ATOMXOR32: return X86::XOR32rr;
14101 case X86::ATOMXOR64: return X86::XOR64rr;
14102 }
14103 llvm_unreachable("Unhandled atomic-load-op opcode!");
14104}
14105
14106// Get opcode of the non-atomic one from the specified atomic instruction with
14107// extra opcode.
14108static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14109 unsigned &ExtraOpc) {
14110 switch (Opc) {
14111 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14112 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14113 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14114 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014115 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014116 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14117 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14118 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014119 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014120 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14121 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14122 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014123 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014124 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14125 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14126 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014127 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014128 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14129 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14130 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14131 }
14132 llvm_unreachable("Unhandled atomic-load-op opcode!");
14133}
14134
14135// Get opcode of the non-atomic one from the specified atomic instruction for
14136// 64-bit data type on 32-bit target.
14137static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14138 switch (Opc) {
14139 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14140 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14141 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14142 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14143 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14144 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014145 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14146 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14147 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14148 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014149 }
14150 llvm_unreachable("Unhandled atomic-load-op opcode!");
14151}
14152
14153// Get opcode of the non-atomic one from the specified atomic instruction for
14154// 64-bit data type on 32-bit target with extra opcode.
14155static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14156 unsigned &HiOpc,
14157 unsigned &ExtraOpc) {
14158 switch (Opc) {
14159 case X86::ATOMNAND6432:
14160 ExtraOpc = X86::NOT32r;
14161 HiOpc = X86::AND32rr;
14162 return X86::AND32rr;
14163 }
14164 llvm_unreachable("Unhandled atomic-load-op opcode!");
14165}
14166
14167// Get pseudo CMOV opcode from the specified data type.
14168static unsigned getPseudoCMOVOpc(EVT VT) {
14169 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014170 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014171 case MVT::i16: return X86::CMOV_GR16;
14172 case MVT::i32: return X86::CMOV_GR32;
14173 default:
14174 break;
14175 }
14176 llvm_unreachable("Unknown CMOV opcode!");
14177}
14178
14179// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14180// They will be translated into a spin-loop or compare-exchange loop from
14181//
14182// ...
14183// dst = atomic-fetch-op MI.addr, MI.val
14184// ...
14185//
14186// to
14187//
14188// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014189// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014190// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014191// t4 = phi(t1, t3 / loop)
14192// t2 = OP MI.val, t4
14193// EAX = t4
14194// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14195// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014196// JNE loop
14197// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014198// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014199// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014200MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014201X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14202 MachineBasicBlock *MBB) const {
14203 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14204 DebugLoc DL = MI->getDebugLoc();
14205
14206 MachineFunction *MF = MBB->getParent();
14207 MachineRegisterInfo &MRI = MF->getRegInfo();
14208
14209 const BasicBlock *BB = MBB->getBasicBlock();
14210 MachineFunction::iterator I = MBB;
14211 ++I;
14212
Michael Liao13d08bf2013-01-22 21:47:38 +000014213 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014214 "Unexpected number of operands");
14215
14216 assert(MI->hasOneMemOperand() &&
14217 "Expected atomic-load-op to have one memoperand");
14218
14219 // Memory Reference
14220 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14221 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14222
14223 unsigned DstReg, SrcReg;
14224 unsigned MemOpndSlot;
14225
14226 unsigned CurOp = 0;
14227
14228 DstReg = MI->getOperand(CurOp++).getReg();
14229 MemOpndSlot = CurOp;
14230 CurOp += X86::AddrNumOperands;
14231 SrcReg = MI->getOperand(CurOp++).getReg();
14232
14233 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014234 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014235 unsigned t1 = MRI.createVirtualRegister(RC);
14236 unsigned t2 = MRI.createVirtualRegister(RC);
14237 unsigned t3 = MRI.createVirtualRegister(RC);
14238 unsigned t4 = MRI.createVirtualRegister(RC);
14239 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014240
14241 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14242 unsigned LOADOpc = getLoadOpcode(VT);
14243
14244 // For the atomic load-arith operator, we generate
14245 //
14246 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014247 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014248 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014249 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014250 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014251 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014252 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014253 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014254 // JNE mainMBB
14255 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014256 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014257
14258 MachineBasicBlock *thisMBB = MBB;
14259 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14260 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14261 MF->insert(I, mainMBB);
14262 MF->insert(I, sinkMBB);
14263
14264 MachineInstrBuilder MIB;
14265
14266 // Transfer the remainder of BB and its successor edges to sinkMBB.
14267 sinkMBB->splice(sinkMBB->begin(), MBB,
14268 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14269 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14270
14271 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014272 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14273 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14274 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14275 if (NewMO.isReg())
14276 NewMO.setIsKill(false);
14277 MIB.addOperand(NewMO);
14278 }
14279 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14280 unsigned flags = (*MMOI)->getFlags();
14281 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14282 MachineMemOperand *MMO =
14283 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14284 (*MMOI)->getSize(),
14285 (*MMOI)->getBaseAlignment(),
14286 (*MMOI)->getTBAAInfo(),
14287 (*MMOI)->getRanges());
14288 MIB.addMemOperand(MMO);
14289 }
Michael Liaob118a072012-09-20 03:06:15 +000014290
14291 thisMBB->addSuccessor(mainMBB);
14292
14293 // mainMBB:
14294 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014295
Michael Liaoc537f792013-03-06 00:17:04 +000014296 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014297 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14298 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014299
Michael Liaob118a072012-09-20 03:06:15 +000014300 unsigned Opc = MI->getOpcode();
14301 switch (Opc) {
14302 default:
14303 llvm_unreachable("Unhandled atomic-load-op opcode!");
14304 case X86::ATOMAND8:
14305 case X86::ATOMAND16:
14306 case X86::ATOMAND32:
14307 case X86::ATOMAND64:
14308 case X86::ATOMOR8:
14309 case X86::ATOMOR16:
14310 case X86::ATOMOR32:
14311 case X86::ATOMOR64:
14312 case X86::ATOMXOR8:
14313 case X86::ATOMXOR16:
14314 case X86::ATOMXOR32:
14315 case X86::ATOMXOR64: {
14316 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014317 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14318 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014319 break;
14320 }
14321 case X86::ATOMNAND8:
14322 case X86::ATOMNAND16:
14323 case X86::ATOMNAND32:
14324 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014325 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014326 unsigned NOTOpc;
14327 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014328 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14329 .addReg(t4);
14330 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014331 break;
14332 }
Michael Liao08382492012-09-21 03:00:17 +000014333 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014334 case X86::ATOMMAX16:
14335 case X86::ATOMMAX32:
14336 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014337 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014338 case X86::ATOMMIN16:
14339 case X86::ATOMMIN32:
14340 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014341 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014342 case X86::ATOMUMAX16:
14343 case X86::ATOMUMAX32:
14344 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014345 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014346 case X86::ATOMUMIN16:
14347 case X86::ATOMUMIN32:
14348 case X86::ATOMUMIN64: {
14349 unsigned CMPOpc;
14350 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14351
14352 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14353 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014354 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014355
14356 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014357 if (VT != MVT::i8) {
14358 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014359 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014360 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014361 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014362 } else {
14363 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014364 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14365 const TargetRegisterClass *RC32 =
14366 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014367 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14368 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014369 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014370
14371 unsigned Undef = MRI.createVirtualRegister(RC32);
14372 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14373
14374 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14375 .addReg(Undef)
14376 .addReg(SrcReg)
14377 .addImm(X86::sub_8bit);
14378 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14379 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014380 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014381 .addImm(X86::sub_8bit);
14382
Michael Liaoc537f792013-03-06 00:17:04 +000014383 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014384 .addReg(SrcReg32)
14385 .addReg(AccReg32);
14386
Michael Liaoc537f792013-03-06 00:17:04 +000014387 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14388 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014389 }
Michael Liaob118a072012-09-20 03:06:15 +000014390 } else {
14391 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014392 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014393 "Invalid atomic-load-op transformation!");
14394 unsigned SelOpc = getPseudoCMOVOpc(VT);
14395 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14396 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014397 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14398 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014399 .addImm(CC);
14400 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014401 // Replace the original PHI node as mainMBB is changed after CMOV
14402 // lowering.
14403 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14404 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14405 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014406 }
14407 break;
14408 }
14409 }
14410
Michael Liaoc537f792013-03-06 00:17:04 +000014411 // Copy PhyReg back from virtual register.
14412 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14413 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014414
14415 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014416 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14417 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14418 if (NewMO.isReg())
14419 NewMO.setIsKill(false);
14420 MIB.addOperand(NewMO);
14421 }
14422 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014423 MIB.setMemRefs(MMOBegin, MMOEnd);
14424
Michael Liaoc537f792013-03-06 00:17:04 +000014425 // Copy PhyReg back to virtual register.
14426 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14427 .addReg(PhyReg);
14428
Michael Liaob118a072012-09-20 03:06:15 +000014429 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14430
14431 mainMBB->addSuccessor(origMainMBB);
14432 mainMBB->addSuccessor(sinkMBB);
14433
14434 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014435 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14436 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014437 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014438
14439 MI->eraseFromParent();
14440 return sinkMBB;
14441}
14442
14443// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14444// instructions. They will be translated into a spin-loop or compare-exchange
14445// loop from
14446//
14447// ...
14448// dst = atomic-fetch-op MI.addr, MI.val
14449// ...
14450//
14451// to
14452//
14453// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014454// t1L = LOAD [MI.addr + 0]
14455// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014456// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014457// t4L = phi(t1L, t3L / loop)
14458// t4H = phi(t1H, t3H / loop)
14459// t2L = OP MI.val.lo, t4L
14460// t2H = OP MI.val.hi, t4H
14461// EAX = t4L
14462// EDX = t4H
14463// EBX = t2L
14464// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014465// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014466// t3L = EAX
14467// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014468// JNE loop
14469// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014470// dstL = t3L
14471// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014472// ...
14473MachineBasicBlock *
14474X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14475 MachineBasicBlock *MBB) const {
14476 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14477 DebugLoc DL = MI->getDebugLoc();
14478
14479 MachineFunction *MF = MBB->getParent();
14480 MachineRegisterInfo &MRI = MF->getRegInfo();
14481
14482 const BasicBlock *BB = MBB->getBasicBlock();
14483 MachineFunction::iterator I = MBB;
14484 ++I;
14485
Michael Liao13d08bf2013-01-22 21:47:38 +000014486 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014487 "Unexpected number of operands");
14488
14489 assert(MI->hasOneMemOperand() &&
14490 "Expected atomic-load-op32 to have one memoperand");
14491
14492 // Memory Reference
14493 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14494 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14495
14496 unsigned DstLoReg, DstHiReg;
14497 unsigned SrcLoReg, SrcHiReg;
14498 unsigned MemOpndSlot;
14499
14500 unsigned CurOp = 0;
14501
14502 DstLoReg = MI->getOperand(CurOp++).getReg();
14503 DstHiReg = MI->getOperand(CurOp++).getReg();
14504 MemOpndSlot = CurOp;
14505 CurOp += X86::AddrNumOperands;
14506 SrcLoReg = MI->getOperand(CurOp++).getReg();
14507 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014508
Craig Topperc9099502012-04-20 06:31:50 +000014509 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014510 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014511
Michael Liaoc537f792013-03-06 00:17:04 +000014512 unsigned t1L = MRI.createVirtualRegister(RC);
14513 unsigned t1H = MRI.createVirtualRegister(RC);
14514 unsigned t2L = MRI.createVirtualRegister(RC);
14515 unsigned t2H = MRI.createVirtualRegister(RC);
14516 unsigned t3L = MRI.createVirtualRegister(RC);
14517 unsigned t3H = MRI.createVirtualRegister(RC);
14518 unsigned t4L = MRI.createVirtualRegister(RC);
14519 unsigned t4H = MRI.createVirtualRegister(RC);
14520
Michael Liaob118a072012-09-20 03:06:15 +000014521 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14522 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014523
Michael Liaob118a072012-09-20 03:06:15 +000014524 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014525 //
Michael Liaob118a072012-09-20 03:06:15 +000014526 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014527 // t1L = LOAD [MI.addr + 0]
14528 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014529 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014530 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14531 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14532 // t2L = OP MI.val.lo, t4L
14533 // t2H = OP MI.val.hi, t4H
14534 // EBX = t2L
14535 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014536 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014537 // t3L = EAX
14538 // t3H = EDX
14539 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014540 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014541 // dstL = t3L
14542 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014543
Mon P Wang63307c32008-05-05 19:05:59 +000014544 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014545 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14546 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14547 MF->insert(I, mainMBB);
14548 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014549
Michael Liaob118a072012-09-20 03:06:15 +000014550 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014551
Michael Liaob118a072012-09-20 03:06:15 +000014552 // Transfer the remainder of BB and its successor edges to sinkMBB.
14553 sinkMBB->splice(sinkMBB->begin(), MBB,
14554 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14555 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014556
Michael Liaob118a072012-09-20 03:06:15 +000014557 // thisMBB:
14558 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014559 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014560 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014561 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14562 if (NewMO.isReg())
14563 NewMO.setIsKill(false);
14564 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014565 }
Michael Liaoc537f792013-03-06 00:17:04 +000014566 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14567 unsigned flags = (*MMOI)->getFlags();
14568 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14569 MachineMemOperand *MMO =
14570 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14571 (*MMOI)->getSize(),
14572 (*MMOI)->getBaseAlignment(),
14573 (*MMOI)->getTBAAInfo(),
14574 (*MMOI)->getRanges());
14575 MIB.addMemOperand(MMO);
14576 };
14577 MachineInstr *LowMI = MIB;
14578
14579 // Hi
14580 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14581 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14582 if (i == X86::AddrDisp) {
14583 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14584 } else {
14585 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14586 if (NewMO.isReg())
14587 NewMO.setIsKill(false);
14588 MIB.addOperand(NewMO);
14589 }
14590 }
14591 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014592
Michael Liaob118a072012-09-20 03:06:15 +000014593 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014594
Michael Liaob118a072012-09-20 03:06:15 +000014595 // mainMBB:
14596 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014597
Michael Liaoc537f792013-03-06 00:17:04 +000014598 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014599 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14600 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14601 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14602 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014603
Michael Liaob118a072012-09-20 03:06:15 +000014604 unsigned Opc = MI->getOpcode();
14605 switch (Opc) {
14606 default:
14607 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14608 case X86::ATOMAND6432:
14609 case X86::ATOMOR6432:
14610 case X86::ATOMXOR6432:
14611 case X86::ATOMADD6432:
14612 case X86::ATOMSUB6432: {
14613 unsigned HiOpc;
14614 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014615 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14616 .addReg(SrcLoReg);
14617 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14618 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014619 break;
14620 }
14621 case X86::ATOMNAND6432: {
14622 unsigned HiOpc, NOTOpc;
14623 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014624 unsigned TmpL = MRI.createVirtualRegister(RC);
14625 unsigned TmpH = MRI.createVirtualRegister(RC);
14626 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14627 .addReg(t4L);
14628 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14629 .addReg(t4H);
14630 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14631 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014632 break;
14633 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014634 case X86::ATOMMAX6432:
14635 case X86::ATOMMIN6432:
14636 case X86::ATOMUMAX6432:
14637 case X86::ATOMUMIN6432: {
14638 unsigned HiOpc;
14639 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14640 unsigned cL = MRI.createVirtualRegister(RC8);
14641 unsigned cH = MRI.createVirtualRegister(RC8);
14642 unsigned cL32 = MRI.createVirtualRegister(RC);
14643 unsigned cH32 = MRI.createVirtualRegister(RC);
14644 unsigned cc = MRI.createVirtualRegister(RC);
14645 // cl := cmp src_lo, lo
14646 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014647 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014648 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14649 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14650 // ch := cmp src_hi, hi
14651 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014652 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014653 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14654 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14655 // cc := if (src_hi == hi) ? cl : ch;
14656 if (Subtarget->hasCMov()) {
14657 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14658 .addReg(cH32).addReg(cL32);
14659 } else {
14660 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14661 .addReg(cH32).addReg(cL32)
14662 .addImm(X86::COND_E);
14663 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14664 }
14665 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14666 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014667 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14668 .addReg(SrcLoReg).addReg(t4L);
14669 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14670 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014671 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014672 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14673 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014674 .addImm(X86::COND_NE);
14675 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014676 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14677 // 2nd CMOV lowering.
14678 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014679 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14680 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014681 .addImm(X86::COND_NE);
14682 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014683 // Replace the original PHI node as mainMBB is changed after CMOV
14684 // lowering.
14685 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14686 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14687 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14688 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14689 PhiL->eraseFromParent();
14690 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014691 }
14692 break;
14693 }
Michael Liaob118a072012-09-20 03:06:15 +000014694 case X86::ATOMSWAP6432: {
14695 unsigned HiOpc;
14696 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014697 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14698 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014699 break;
14700 }
14701 }
Mon P Wang63307c32008-05-05 19:05:59 +000014702
Michael Liaob118a072012-09-20 03:06:15 +000014703 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014704 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14705 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014706 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014707 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14708 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014709
Michael Liaob118a072012-09-20 03:06:15 +000014710 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014711 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14712 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14713 if (NewMO.isReg())
14714 NewMO.setIsKill(false);
14715 MIB.addOperand(NewMO);
14716 }
Michael Liaob118a072012-09-20 03:06:15 +000014717 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014718
Michael Liaoc537f792013-03-06 00:17:04 +000014719 // Copy EDX:EAX back to t3H:t3L
14720 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14721 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14722
Michael Liaob118a072012-09-20 03:06:15 +000014723 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014724
Michael Liaob118a072012-09-20 03:06:15 +000014725 mainMBB->addSuccessor(origMainMBB);
14726 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014727
Michael Liaob118a072012-09-20 03:06:15 +000014728 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014729 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14730 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014731 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014732 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14733 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014734 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014735
Michael Liaob118a072012-09-20 03:06:15 +000014736 MI->eraseFromParent();
14737 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014738}
14739
Eric Christopherf83a5de2009-08-27 18:08:16 +000014740// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014741// or XMM0_V32I8 in AVX all of this code can be replaced with that
14742// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014743static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14744 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014745 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014746 switch (MI->getOpcode()) {
14747 default: llvm_unreachable("illegal opcode!");
14748 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14749 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14750 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14751 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14752 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14753 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14754 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14755 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014756 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014757
Craig Topper8aae8dd2012-11-10 08:57:41 +000014758 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014759 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014760
Craig Topper52ea2452012-11-10 09:25:36 +000014761 unsigned NumArgs = MI->getNumOperands();
14762 for (unsigned i = 1; i < NumArgs; ++i) {
14763 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014764 if (!(Op.isReg() && Op.isImplicit()))
14765 MIB.addOperand(Op);
14766 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014767 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014768 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14769
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014770 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014771 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014772 .addReg(X86::XMM0);
14773
Dan Gohman14152b42010-07-06 20:24:04 +000014774 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014775 return BB;
14776}
14777
Craig Topper9c7ae012012-11-10 01:23:36 +000014778// FIXME: Custom handling because TableGen doesn't support multiple implicit
14779// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014780static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14781 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014782 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014783 switch (MI->getOpcode()) {
14784 default: llvm_unreachable("illegal opcode!");
14785 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14786 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14787 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14788 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14789 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14790 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14791 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14792 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014793 }
14794
Craig Topper8aae8dd2012-11-10 08:57:41 +000014795 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014796 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014797
Craig Topper52ea2452012-11-10 09:25:36 +000014798 unsigned NumArgs = MI->getNumOperands(); // remove the results
14799 for (unsigned i = 1; i < NumArgs; ++i) {
14800 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014801 if (!(Op.isReg() && Op.isImplicit()))
14802 MIB.addOperand(Op);
14803 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014804 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014805 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14806
14807 BuildMI(*BB, MI, dl,
14808 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14809 .addReg(X86::ECX);
14810
14811 MI->eraseFromParent();
14812 return BB;
14813}
14814
Craig Topper2da36912012-11-11 22:45:02 +000014815static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14816 const TargetInstrInfo *TII,
14817 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014818 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014819
Eric Christopher228232b2010-11-30 07:20:12 +000014820 // Address into RAX/EAX, other two args into ECX, EDX.
14821 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14822 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14823 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14824 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014825 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014826
Eric Christopher228232b2010-11-30 07:20:12 +000014827 unsigned ValOps = X86::AddrNumOperands;
14828 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14829 .addReg(MI->getOperand(ValOps).getReg());
14830 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14831 .addReg(MI->getOperand(ValOps+1).getReg());
14832
14833 // The instruction doesn't actually take any operands though.
14834 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014835
Eric Christopher228232b2010-11-30 07:20:12 +000014836 MI->eraseFromParent(); // The pseudo is gone now.
14837 return BB;
14838}
14839
14840MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014841X86TargetLowering::EmitVAARG64WithCustomInserter(
14842 MachineInstr *MI,
14843 MachineBasicBlock *MBB) const {
14844 // Emit va_arg instruction on X86-64.
14845
14846 // Operands to this pseudo-instruction:
14847 // 0 ) Output : destination address (reg)
14848 // 1-5) Input : va_list address (addr, i64mem)
14849 // 6 ) ArgSize : Size (in bytes) of vararg type
14850 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14851 // 8 ) Align : Alignment of type
14852 // 9 ) EFLAGS (implicit-def)
14853
14854 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14855 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14856
14857 unsigned DestReg = MI->getOperand(0).getReg();
14858 MachineOperand &Base = MI->getOperand(1);
14859 MachineOperand &Scale = MI->getOperand(2);
14860 MachineOperand &Index = MI->getOperand(3);
14861 MachineOperand &Disp = MI->getOperand(4);
14862 MachineOperand &Segment = MI->getOperand(5);
14863 unsigned ArgSize = MI->getOperand(6).getImm();
14864 unsigned ArgMode = MI->getOperand(7).getImm();
14865 unsigned Align = MI->getOperand(8).getImm();
14866
14867 // Memory Reference
14868 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14869 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14870 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14871
14872 // Machine Information
14873 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14874 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14875 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14876 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14877 DebugLoc DL = MI->getDebugLoc();
14878
14879 // struct va_list {
14880 // i32 gp_offset
14881 // i32 fp_offset
14882 // i64 overflow_area (address)
14883 // i64 reg_save_area (address)
14884 // }
14885 // sizeof(va_list) = 24
14886 // alignment(va_list) = 8
14887
14888 unsigned TotalNumIntRegs = 6;
14889 unsigned TotalNumXMMRegs = 8;
14890 bool UseGPOffset = (ArgMode == 1);
14891 bool UseFPOffset = (ArgMode == 2);
14892 unsigned MaxOffset = TotalNumIntRegs * 8 +
14893 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14894
14895 /* Align ArgSize to a multiple of 8 */
14896 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14897 bool NeedsAlign = (Align > 8);
14898
14899 MachineBasicBlock *thisMBB = MBB;
14900 MachineBasicBlock *overflowMBB;
14901 MachineBasicBlock *offsetMBB;
14902 MachineBasicBlock *endMBB;
14903
14904 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14905 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14906 unsigned OffsetReg = 0;
14907
14908 if (!UseGPOffset && !UseFPOffset) {
14909 // If we only pull from the overflow region, we don't create a branch.
14910 // We don't need to alter control flow.
14911 OffsetDestReg = 0; // unused
14912 OverflowDestReg = DestReg;
14913
14914 offsetMBB = NULL;
14915 overflowMBB = thisMBB;
14916 endMBB = thisMBB;
14917 } else {
14918 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14919 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14920 // If not, pull from overflow_area. (branch to overflowMBB)
14921 //
14922 // thisMBB
14923 // | .
14924 // | .
14925 // offsetMBB overflowMBB
14926 // | .
14927 // | .
14928 // endMBB
14929
14930 // Registers for the PHI in endMBB
14931 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14932 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14933
14934 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14935 MachineFunction *MF = MBB->getParent();
14936 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14937 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14938 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14939
14940 MachineFunction::iterator MBBIter = MBB;
14941 ++MBBIter;
14942
14943 // Insert the new basic blocks
14944 MF->insert(MBBIter, offsetMBB);
14945 MF->insert(MBBIter, overflowMBB);
14946 MF->insert(MBBIter, endMBB);
14947
14948 // Transfer the remainder of MBB and its successor edges to endMBB.
14949 endMBB->splice(endMBB->begin(), thisMBB,
14950 llvm::next(MachineBasicBlock::iterator(MI)),
14951 thisMBB->end());
14952 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14953
14954 // Make offsetMBB and overflowMBB successors of thisMBB
14955 thisMBB->addSuccessor(offsetMBB);
14956 thisMBB->addSuccessor(overflowMBB);
14957
14958 // endMBB is a successor of both offsetMBB and overflowMBB
14959 offsetMBB->addSuccessor(endMBB);
14960 overflowMBB->addSuccessor(endMBB);
14961
14962 // Load the offset value into a register
14963 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14964 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14965 .addOperand(Base)
14966 .addOperand(Scale)
14967 .addOperand(Index)
14968 .addDisp(Disp, UseFPOffset ? 4 : 0)
14969 .addOperand(Segment)
14970 .setMemRefs(MMOBegin, MMOEnd);
14971
14972 // Check if there is enough room left to pull this argument.
14973 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14974 .addReg(OffsetReg)
14975 .addImm(MaxOffset + 8 - ArgSizeA8);
14976
14977 // Branch to "overflowMBB" if offset >= max
14978 // Fall through to "offsetMBB" otherwise
14979 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14980 .addMBB(overflowMBB);
14981 }
14982
14983 // In offsetMBB, emit code to use the reg_save_area.
14984 if (offsetMBB) {
14985 assert(OffsetReg != 0);
14986
14987 // Read the reg_save_area address.
14988 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14989 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14990 .addOperand(Base)
14991 .addOperand(Scale)
14992 .addOperand(Index)
14993 .addDisp(Disp, 16)
14994 .addOperand(Segment)
14995 .setMemRefs(MMOBegin, MMOEnd);
14996
14997 // Zero-extend the offset
14998 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14999 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15000 .addImm(0)
15001 .addReg(OffsetReg)
15002 .addImm(X86::sub_32bit);
15003
15004 // Add the offset to the reg_save_area to get the final address.
15005 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15006 .addReg(OffsetReg64)
15007 .addReg(RegSaveReg);
15008
15009 // Compute the offset for the next argument
15010 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15011 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15012 .addReg(OffsetReg)
15013 .addImm(UseFPOffset ? 16 : 8);
15014
15015 // Store it back into the va_list.
15016 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15017 .addOperand(Base)
15018 .addOperand(Scale)
15019 .addOperand(Index)
15020 .addDisp(Disp, UseFPOffset ? 4 : 0)
15021 .addOperand(Segment)
15022 .addReg(NextOffsetReg)
15023 .setMemRefs(MMOBegin, MMOEnd);
15024
15025 // Jump to endMBB
15026 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15027 .addMBB(endMBB);
15028 }
15029
15030 //
15031 // Emit code to use overflow area
15032 //
15033
15034 // Load the overflow_area address into a register.
15035 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15036 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15037 .addOperand(Base)
15038 .addOperand(Scale)
15039 .addOperand(Index)
15040 .addDisp(Disp, 8)
15041 .addOperand(Segment)
15042 .setMemRefs(MMOBegin, MMOEnd);
15043
15044 // If we need to align it, do so. Otherwise, just copy the address
15045 // to OverflowDestReg.
15046 if (NeedsAlign) {
15047 // Align the overflow address
15048 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15049 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15050
15051 // aligned_addr = (addr + (align-1)) & ~(align-1)
15052 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15053 .addReg(OverflowAddrReg)
15054 .addImm(Align-1);
15055
15056 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15057 .addReg(TmpReg)
15058 .addImm(~(uint64_t)(Align-1));
15059 } else {
15060 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15061 .addReg(OverflowAddrReg);
15062 }
15063
15064 // Compute the next overflow address after this argument.
15065 // (the overflow address should be kept 8-byte aligned)
15066 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15067 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15068 .addReg(OverflowDestReg)
15069 .addImm(ArgSizeA8);
15070
15071 // Store the new overflow address.
15072 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15073 .addOperand(Base)
15074 .addOperand(Scale)
15075 .addOperand(Index)
15076 .addDisp(Disp, 8)
15077 .addOperand(Segment)
15078 .addReg(NextAddrReg)
15079 .setMemRefs(MMOBegin, MMOEnd);
15080
15081 // If we branched, emit the PHI to the front of endMBB.
15082 if (offsetMBB) {
15083 BuildMI(*endMBB, endMBB->begin(), DL,
15084 TII->get(X86::PHI), DestReg)
15085 .addReg(OffsetDestReg).addMBB(offsetMBB)
15086 .addReg(OverflowDestReg).addMBB(overflowMBB);
15087 }
15088
15089 // Erase the pseudo instruction
15090 MI->eraseFromParent();
15091
15092 return endMBB;
15093}
15094
15095MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015096X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15097 MachineInstr *MI,
15098 MachineBasicBlock *MBB) const {
15099 // Emit code to save XMM registers to the stack. The ABI says that the
15100 // number of registers to save is given in %al, so it's theoretically
15101 // possible to do an indirect jump trick to avoid saving all of them,
15102 // however this code takes a simpler approach and just executes all
15103 // of the stores if %al is non-zero. It's less code, and it's probably
15104 // easier on the hardware branch predictor, and stores aren't all that
15105 // expensive anyway.
15106
15107 // Create the new basic blocks. One block contains all the XMM stores,
15108 // and one block is the final destination regardless of whether any
15109 // stores were performed.
15110 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15111 MachineFunction *F = MBB->getParent();
15112 MachineFunction::iterator MBBIter = MBB;
15113 ++MBBIter;
15114 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15115 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15116 F->insert(MBBIter, XMMSaveMBB);
15117 F->insert(MBBIter, EndMBB);
15118
Dan Gohman14152b42010-07-06 20:24:04 +000015119 // Transfer the remainder of MBB and its successor edges to EndMBB.
15120 EndMBB->splice(EndMBB->begin(), MBB,
15121 llvm::next(MachineBasicBlock::iterator(MI)),
15122 MBB->end());
15123 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15124
Dan Gohmand6708ea2009-08-15 01:38:56 +000015125 // The original block will now fall through to the XMM save block.
15126 MBB->addSuccessor(XMMSaveMBB);
15127 // The XMMSaveMBB will fall through to the end block.
15128 XMMSaveMBB->addSuccessor(EndMBB);
15129
15130 // Now add the instructions.
15131 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15132 DebugLoc DL = MI->getDebugLoc();
15133
15134 unsigned CountReg = MI->getOperand(0).getReg();
15135 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15136 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15137
15138 if (!Subtarget->isTargetWin64()) {
15139 // If %al is 0, branch around the XMM save block.
15140 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015141 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015142 MBB->addSuccessor(EndMBB);
15143 }
15144
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015145 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015146 // In the XMM save block, save all the XMM argument registers.
15147 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15148 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015149 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015150 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015151 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015152 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015153 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015154 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015155 .addFrameIndex(RegSaveFrameIndex)
15156 .addImm(/*Scale=*/1)
15157 .addReg(/*IndexReg=*/0)
15158 .addImm(/*Disp=*/Offset)
15159 .addReg(/*Segment=*/0)
15160 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015161 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015162 }
15163
Dan Gohman14152b42010-07-06 20:24:04 +000015164 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015165
15166 return EndMBB;
15167}
Mon P Wang63307c32008-05-05 19:05:59 +000015168
Lang Hames6e3f7e42012-02-03 01:13:49 +000015169// The EFLAGS operand of SelectItr might be missing a kill marker
15170// because there were multiple uses of EFLAGS, and ISel didn't know
15171// which to mark. Figure out whether SelectItr should have had a
15172// kill marker, and set it if it should. Returns the correct kill
15173// marker value.
15174static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15175 MachineBasicBlock* BB,
15176 const TargetRegisterInfo* TRI) {
15177 // Scan forward through BB for a use/def of EFLAGS.
15178 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15179 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015180 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015181 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015182 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015183 if (mi.definesRegister(X86::EFLAGS))
15184 break; // Should have kill-flag - update below.
15185 }
15186
15187 // If we hit the end of the block, check whether EFLAGS is live into a
15188 // successor.
15189 if (miI == BB->end()) {
15190 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15191 sEnd = BB->succ_end();
15192 sItr != sEnd; ++sItr) {
15193 MachineBasicBlock* succ = *sItr;
15194 if (succ->isLiveIn(X86::EFLAGS))
15195 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015196 }
15197 }
15198
Lang Hames6e3f7e42012-02-03 01:13:49 +000015199 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15200 // out. SelectMI should have a kill flag on EFLAGS.
15201 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015202 return true;
15203}
15204
Evan Cheng60c07e12006-07-05 22:17:51 +000015205MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015206X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015207 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015208 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15209 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015210
Chris Lattner52600972009-09-02 05:57:00 +000015211 // To "insert" a SELECT_CC instruction, we actually have to insert the
15212 // diamond control-flow pattern. The incoming instruction knows the
15213 // destination vreg to set, the condition code register to branch on, the
15214 // true/false values to select between, and a branch opcode to use.
15215 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15216 MachineFunction::iterator It = BB;
15217 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015218
Chris Lattner52600972009-09-02 05:57:00 +000015219 // thisMBB:
15220 // ...
15221 // TrueVal = ...
15222 // cmpTY ccX, r1, r2
15223 // bCC copy1MBB
15224 // fallthrough --> copy0MBB
15225 MachineBasicBlock *thisMBB = BB;
15226 MachineFunction *F = BB->getParent();
15227 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15228 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015229 F->insert(It, copy0MBB);
15230 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015231
Bill Wendling730c07e2010-06-25 20:48:10 +000015232 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15233 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015234 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15235 if (!MI->killsRegister(X86::EFLAGS) &&
15236 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15237 copy0MBB->addLiveIn(X86::EFLAGS);
15238 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015239 }
15240
Dan Gohman14152b42010-07-06 20:24:04 +000015241 // Transfer the remainder of BB and its successor edges to sinkMBB.
15242 sinkMBB->splice(sinkMBB->begin(), BB,
15243 llvm::next(MachineBasicBlock::iterator(MI)),
15244 BB->end());
15245 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15246
15247 // Add the true and fallthrough blocks as its successors.
15248 BB->addSuccessor(copy0MBB);
15249 BB->addSuccessor(sinkMBB);
15250
15251 // Create the conditional branch instruction.
15252 unsigned Opc =
15253 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15254 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15255
Chris Lattner52600972009-09-02 05:57:00 +000015256 // copy0MBB:
15257 // %FalseValue = ...
15258 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015259 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015260
Chris Lattner52600972009-09-02 05:57:00 +000015261 // sinkMBB:
15262 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15263 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015264 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15265 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015266 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15267 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15268
Dan Gohman14152b42010-07-06 20:24:04 +000015269 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015270 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015271}
15272
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015273MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015274X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15275 bool Is64Bit) const {
15276 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15277 DebugLoc DL = MI->getDebugLoc();
15278 MachineFunction *MF = BB->getParent();
15279 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15280
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015281 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015282
15283 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15284 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15285
15286 // BB:
15287 // ... [Till the alloca]
15288 // If stacklet is not large enough, jump to mallocMBB
15289 //
15290 // bumpMBB:
15291 // Allocate by subtracting from RSP
15292 // Jump to continueMBB
15293 //
15294 // mallocMBB:
15295 // Allocate by call to runtime
15296 //
15297 // continueMBB:
15298 // ...
15299 // [rest of original BB]
15300 //
15301
15302 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15303 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15304 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15305
15306 MachineRegisterInfo &MRI = MF->getRegInfo();
15307 const TargetRegisterClass *AddrRegClass =
15308 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15309
15310 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15311 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15312 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015313 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015314 sizeVReg = MI->getOperand(1).getReg(),
15315 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15316
15317 MachineFunction::iterator MBBIter = BB;
15318 ++MBBIter;
15319
15320 MF->insert(MBBIter, bumpMBB);
15321 MF->insert(MBBIter, mallocMBB);
15322 MF->insert(MBBIter, continueMBB);
15323
15324 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15325 (MachineBasicBlock::iterator(MI)), BB->end());
15326 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15327
15328 // Add code to the main basic block to check if the stack limit has been hit,
15329 // and if so, jump to mallocMBB otherwise to bumpMBB.
15330 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015331 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015332 .addReg(tmpSPVReg).addReg(sizeVReg);
15333 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015334 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015335 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015336 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15337
15338 // bumpMBB simply decreases the stack pointer, since we know the current
15339 // stacklet has enough space.
15340 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015341 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015342 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015343 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015344 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15345
15346 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015347 const uint32_t *RegMask =
15348 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015349 if (Is64Bit) {
15350 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15351 .addReg(sizeVReg);
15352 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015353 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015354 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015355 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015356 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015357 } else {
15358 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15359 .addImm(12);
15360 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15361 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015362 .addExternalSymbol("__morestack_allocate_stack_space")
15363 .addRegMask(RegMask)
15364 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015365 }
15366
15367 if (!Is64Bit)
15368 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15369 .addImm(16);
15370
15371 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15372 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15373 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15374
15375 // Set up the CFG correctly.
15376 BB->addSuccessor(bumpMBB);
15377 BB->addSuccessor(mallocMBB);
15378 mallocMBB->addSuccessor(continueMBB);
15379 bumpMBB->addSuccessor(continueMBB);
15380
15381 // Take care of the PHI nodes.
15382 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15383 MI->getOperand(0).getReg())
15384 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15385 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15386
15387 // Delete the original pseudo instruction.
15388 MI->eraseFromParent();
15389
15390 // And we're done.
15391 return continueMBB;
15392}
15393
15394MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015395X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015396 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015397 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15398 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015399
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015400 assert(!Subtarget->isTargetEnvMacho());
15401
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015402 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15403 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015404
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015405 if (Subtarget->isTargetWin64()) {
15406 if (Subtarget->isTargetCygMing()) {
15407 // ___chkstk(Mingw64):
15408 // Clobbers R10, R11, RAX and EFLAGS.
15409 // Updates RSP.
15410 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15411 .addExternalSymbol("___chkstk")
15412 .addReg(X86::RAX, RegState::Implicit)
15413 .addReg(X86::RSP, RegState::Implicit)
15414 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15415 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15416 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15417 } else {
15418 // __chkstk(MSVCRT): does not update stack pointer.
15419 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015420 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15421 .addExternalSymbol("__chkstk")
15422 .addReg(X86::RAX, RegState::Implicit)
15423 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015424 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015425 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15426 .addReg(X86::RSP)
15427 .addReg(X86::RAX);
15428 }
15429 } else {
15430 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015431 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15432
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015433 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15434 .addExternalSymbol(StackProbeSymbol)
15435 .addReg(X86::EAX, RegState::Implicit)
15436 .addReg(X86::ESP, RegState::Implicit)
15437 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15438 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15439 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15440 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015441
Dan Gohman14152b42010-07-06 20:24:04 +000015442 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015443 return BB;
15444}
Chris Lattner52600972009-09-02 05:57:00 +000015445
15446MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015447X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15448 MachineBasicBlock *BB) const {
15449 // This is pretty easy. We're taking the value that we received from
15450 // our load from the relocation, sticking it in either RDI (x86-64)
15451 // or EAX and doing an indirect call. The return value will then
15452 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015453 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015454 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015455 DebugLoc DL = MI->getDebugLoc();
15456 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015457
15458 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015459 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015460
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015461 // Get a register mask for the lowered call.
15462 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15463 // proper register mask.
15464 const uint32_t *RegMask =
15465 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015466 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015467 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15468 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015469 .addReg(X86::RIP)
15470 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015471 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015472 MI->getOperand(3).getTargetFlags())
15473 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015474 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015475 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015476 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015477 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015478 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15479 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015480 .addReg(0)
15481 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015482 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015483 MI->getOperand(3).getTargetFlags())
15484 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015485 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015486 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015487 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015488 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015489 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15490 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015491 .addReg(TII->getGlobalBaseReg(F))
15492 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015493 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015494 MI->getOperand(3).getTargetFlags())
15495 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015496 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015497 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015498 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015499 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015500
Dan Gohman14152b42010-07-06 20:24:04 +000015501 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015502 return BB;
15503}
15504
15505MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015506X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15507 MachineBasicBlock *MBB) const {
15508 DebugLoc DL = MI->getDebugLoc();
15509 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15510
15511 MachineFunction *MF = MBB->getParent();
15512 MachineRegisterInfo &MRI = MF->getRegInfo();
15513
15514 const BasicBlock *BB = MBB->getBasicBlock();
15515 MachineFunction::iterator I = MBB;
15516 ++I;
15517
15518 // Memory Reference
15519 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15520 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15521
15522 unsigned DstReg;
15523 unsigned MemOpndSlot = 0;
15524
15525 unsigned CurOp = 0;
15526
15527 DstReg = MI->getOperand(CurOp++).getReg();
15528 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15529 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15530 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15531 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15532
15533 MemOpndSlot = CurOp;
15534
15535 MVT PVT = getPointerTy();
15536 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15537 "Invalid Pointer Size!");
15538
15539 // For v = setjmp(buf), we generate
15540 //
15541 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015542 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015543 // SjLjSetup restoreMBB
15544 //
15545 // mainMBB:
15546 // v_main = 0
15547 //
15548 // sinkMBB:
15549 // v = phi(main, restore)
15550 //
15551 // restoreMBB:
15552 // v_restore = 1
15553
15554 MachineBasicBlock *thisMBB = MBB;
15555 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15556 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15557 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15558 MF->insert(I, mainMBB);
15559 MF->insert(I, sinkMBB);
15560 MF->push_back(restoreMBB);
15561
15562 MachineInstrBuilder MIB;
15563
15564 // Transfer the remainder of BB and its successor edges to sinkMBB.
15565 sinkMBB->splice(sinkMBB->begin(), MBB,
15566 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15567 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15568
15569 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015570 unsigned PtrStoreOpc = 0;
15571 unsigned LabelReg = 0;
15572 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15573 Reloc::Model RM = getTargetMachine().getRelocationModel();
15574 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15575 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015576
Michael Liao281ae5a2012-10-17 02:22:27 +000015577 // Prepare IP either in reg or imm.
15578 if (!UseImmLabel) {
15579 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15580 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15581 LabelReg = MRI.createVirtualRegister(PtrRC);
15582 if (Subtarget->is64Bit()) {
15583 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15584 .addReg(X86::RIP)
15585 .addImm(0)
15586 .addReg(0)
15587 .addMBB(restoreMBB)
15588 .addReg(0);
15589 } else {
15590 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15591 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15592 .addReg(XII->getGlobalBaseReg(MF))
15593 .addImm(0)
15594 .addReg(0)
15595 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15596 .addReg(0);
15597 }
15598 } else
15599 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015600 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015601 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015602 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15603 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015604 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015605 else
15606 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15607 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015608 if (!UseImmLabel)
15609 MIB.addReg(LabelReg);
15610 else
15611 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015612 MIB.setMemRefs(MMOBegin, MMOEnd);
15613 // Setup
15614 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15615 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015616
15617 const X86RegisterInfo *RegInfo =
15618 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015619 MIB.addRegMask(RegInfo->getNoPreservedMask());
15620 thisMBB->addSuccessor(mainMBB);
15621 thisMBB->addSuccessor(restoreMBB);
15622
15623 // mainMBB:
15624 // EAX = 0
15625 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15626 mainMBB->addSuccessor(sinkMBB);
15627
15628 // sinkMBB:
15629 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15630 TII->get(X86::PHI), DstReg)
15631 .addReg(mainDstReg).addMBB(mainMBB)
15632 .addReg(restoreDstReg).addMBB(restoreMBB);
15633
15634 // restoreMBB:
15635 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15636 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15637 restoreMBB->addSuccessor(sinkMBB);
15638
15639 MI->eraseFromParent();
15640 return sinkMBB;
15641}
15642
15643MachineBasicBlock *
15644X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15645 MachineBasicBlock *MBB) const {
15646 DebugLoc DL = MI->getDebugLoc();
15647 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15648
15649 MachineFunction *MF = MBB->getParent();
15650 MachineRegisterInfo &MRI = MF->getRegInfo();
15651
15652 // Memory Reference
15653 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15654 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15655
15656 MVT PVT = getPointerTy();
15657 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15658 "Invalid Pointer Size!");
15659
15660 const TargetRegisterClass *RC =
15661 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15662 unsigned Tmp = MRI.createVirtualRegister(RC);
15663 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015664 const X86RegisterInfo *RegInfo =
15665 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015666 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15667 unsigned SP = RegInfo->getStackRegister();
15668
15669 MachineInstrBuilder MIB;
15670
Michael Liao281ae5a2012-10-17 02:22:27 +000015671 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15672 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015673
15674 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15675 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15676
15677 // Reload FP
15678 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15679 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15680 MIB.addOperand(MI->getOperand(i));
15681 MIB.setMemRefs(MMOBegin, MMOEnd);
15682 // Reload IP
15683 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15684 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15685 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015686 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015687 else
15688 MIB.addOperand(MI->getOperand(i));
15689 }
15690 MIB.setMemRefs(MMOBegin, MMOEnd);
15691 // Reload SP
15692 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15693 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15694 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015695 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015696 else
15697 MIB.addOperand(MI->getOperand(i));
15698 }
15699 MIB.setMemRefs(MMOBegin, MMOEnd);
15700 // Jump
15701 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15702
15703 MI->eraseFromParent();
15704 return MBB;
15705}
15706
15707MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015708X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015709 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015710 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015711 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015712 case X86::TAILJMPd64:
15713 case X86::TAILJMPr64:
15714 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015715 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015716 case X86::TCRETURNdi64:
15717 case X86::TCRETURNri64:
15718 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015719 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015720 case X86::WIN_ALLOCA:
15721 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015722 case X86::SEG_ALLOCA_32:
15723 return EmitLoweredSegAlloca(MI, BB, false);
15724 case X86::SEG_ALLOCA_64:
15725 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015726 case X86::TLSCall_32:
15727 case X86::TLSCall_64:
15728 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015729 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015730 case X86::CMOV_FR32:
15731 case X86::CMOV_FR64:
15732 case X86::CMOV_V4F32:
15733 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015734 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015735 case X86::CMOV_V8F32:
15736 case X86::CMOV_V4F64:
15737 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015738 case X86::CMOV_GR16:
15739 case X86::CMOV_GR32:
15740 case X86::CMOV_RFP32:
15741 case X86::CMOV_RFP64:
15742 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015743 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015744
Dale Johannesen849f2142007-07-03 00:53:03 +000015745 case X86::FP32_TO_INT16_IN_MEM:
15746 case X86::FP32_TO_INT32_IN_MEM:
15747 case X86::FP32_TO_INT64_IN_MEM:
15748 case X86::FP64_TO_INT16_IN_MEM:
15749 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015750 case X86::FP64_TO_INT64_IN_MEM:
15751 case X86::FP80_TO_INT16_IN_MEM:
15752 case X86::FP80_TO_INT32_IN_MEM:
15753 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015754 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15755 DebugLoc DL = MI->getDebugLoc();
15756
Evan Cheng60c07e12006-07-05 22:17:51 +000015757 // Change the floating point control register to use "round towards zero"
15758 // mode when truncating to an integer value.
15759 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015760 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015761 addFrameReference(BuildMI(*BB, MI, DL,
15762 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015763
15764 // Load the old value of the high byte of the control word...
15765 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015766 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015767 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015768 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015769
15770 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015771 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015772 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015773
15774 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015775 addFrameReference(BuildMI(*BB, MI, DL,
15776 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015777
15778 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015779 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015780 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015781
15782 // Get the X86 opcode to use.
15783 unsigned Opc;
15784 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015785 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015786 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15787 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15788 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15789 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15790 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15791 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015792 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15793 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15794 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015795 }
15796
15797 X86AddressMode AM;
15798 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015799 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015800 AM.BaseType = X86AddressMode::RegBase;
15801 AM.Base.Reg = Op.getReg();
15802 } else {
15803 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015804 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015805 }
15806 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015807 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015808 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015809 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015810 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015811 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015812 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015813 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015814 AM.GV = Op.getGlobal();
15815 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015816 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015817 }
Dan Gohman14152b42010-07-06 20:24:04 +000015818 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015819 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015820
15821 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015822 addFrameReference(BuildMI(*BB, MI, DL,
15823 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015824
Dan Gohman14152b42010-07-06 20:24:04 +000015825 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015826 return BB;
15827 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015828 // String/text processing lowering.
15829 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015830 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015831 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015832 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015833 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015834 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015835 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015836 case X86::VPCMPESTRM128MEM:
15837 assert(Subtarget->hasSSE42() &&
15838 "Target must have SSE4.2 or AVX features enabled");
15839 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015840
15841 // String/text processing lowering.
15842 case X86::PCMPISTRIREG:
15843 case X86::VPCMPISTRIREG:
15844 case X86::PCMPISTRIMEM:
15845 case X86::VPCMPISTRIMEM:
15846 case X86::PCMPESTRIREG:
15847 case X86::VPCMPESTRIREG:
15848 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015849 case X86::VPCMPESTRIMEM:
15850 assert(Subtarget->hasSSE42() &&
15851 "Target must have SSE4.2 or AVX features enabled");
15852 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015853
Craig Topper8aae8dd2012-11-10 08:57:41 +000015854 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015855 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015856 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015857
Michael Liaobe02a902012-11-08 07:28:54 +000015858 // xbegin
15859 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015860 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015861
Craig Topper8aae8dd2012-11-10 08:57:41 +000015862 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015863 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015864 case X86::ATOMAND16:
15865 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015866 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015867 // Fall through
15868 case X86::ATOMOR8:
15869 case X86::ATOMOR16:
15870 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015871 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015872 // Fall through
15873 case X86::ATOMXOR16:
15874 case X86::ATOMXOR8:
15875 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015876 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015877 // Fall through
15878 case X86::ATOMNAND8:
15879 case X86::ATOMNAND16:
15880 case X86::ATOMNAND32:
15881 case X86::ATOMNAND64:
15882 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015883 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015884 case X86::ATOMMAX16:
15885 case X86::ATOMMAX32:
15886 case X86::ATOMMAX64:
15887 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015888 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015889 case X86::ATOMMIN16:
15890 case X86::ATOMMIN32:
15891 case X86::ATOMMIN64:
15892 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015893 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015894 case X86::ATOMUMAX16:
15895 case X86::ATOMUMAX32:
15896 case X86::ATOMUMAX64:
15897 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015898 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015899 case X86::ATOMUMIN16:
15900 case X86::ATOMUMIN32:
15901 case X86::ATOMUMIN64:
15902 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015903
15904 // This group does 64-bit operations on a 32-bit host.
15905 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015906 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015907 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015908 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015909 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015910 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015911 case X86::ATOMMAX6432:
15912 case X86::ATOMMIN6432:
15913 case X86::ATOMUMAX6432:
15914 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015915 case X86::ATOMSWAP6432:
15916 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015917
Dan Gohmand6708ea2009-08-15 01:38:56 +000015918 case X86::VASTART_SAVE_XMM_REGS:
15919 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015920
15921 case X86::VAARG_64:
15922 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015923
15924 case X86::EH_SjLj_SetJmp32:
15925 case X86::EH_SjLj_SetJmp64:
15926 return emitEHSjLjSetJmp(MI, BB);
15927
15928 case X86::EH_SjLj_LongJmp32:
15929 case X86::EH_SjLj_LongJmp64:
15930 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015931 }
15932}
15933
15934//===----------------------------------------------------------------------===//
15935// X86 Optimization Hooks
15936//===----------------------------------------------------------------------===//
15937
Dan Gohman475871a2008-07-27 21:46:04 +000015938void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015939 APInt &KnownZero,
15940 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015941 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015942 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015943 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015944 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015945 assert((Opc >= ISD::BUILTIN_OP_END ||
15946 Opc == ISD::INTRINSIC_WO_CHAIN ||
15947 Opc == ISD::INTRINSIC_W_CHAIN ||
15948 Opc == ISD::INTRINSIC_VOID) &&
15949 "Should use MaskedValueIsZero if you don't know whether Op"
15950 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015951
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015952 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015953 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015954 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015955 case X86ISD::ADD:
15956 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015957 case X86ISD::ADC:
15958 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015959 case X86ISD::SMUL:
15960 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015961 case X86ISD::INC:
15962 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015963 case X86ISD::OR:
15964 case X86ISD::XOR:
15965 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015966 // These nodes' second result is a boolean.
15967 if (Op.getResNo() == 0)
15968 break;
15969 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015970 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015971 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015972 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015973 case ISD::INTRINSIC_WO_CHAIN: {
15974 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15975 unsigned NumLoBits = 0;
15976 switch (IntId) {
15977 default: break;
15978 case Intrinsic::x86_sse_movmsk_ps:
15979 case Intrinsic::x86_avx_movmsk_ps_256:
15980 case Intrinsic::x86_sse2_movmsk_pd:
15981 case Intrinsic::x86_avx_movmsk_pd_256:
15982 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015983 case Intrinsic::x86_sse2_pmovmskb_128:
15984 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015985 // High bits of movmskp{s|d}, pmovmskb are known zero.
15986 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015987 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015988 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
15989 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
15990 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
15991 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
15992 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
15993 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000015994 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015995 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015996 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000015997 break;
15998 }
15999 }
16000 break;
16001 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016002 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016003}
Chris Lattner259e97c2006-01-31 19:43:35 +000016004
Owen Andersonbc146b02010-09-21 20:42:50 +000016005unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16006 unsigned Depth) const {
16007 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16008 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16009 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016010
Owen Andersonbc146b02010-09-21 20:42:50 +000016011 // Fallback case.
16012 return 1;
16013}
16014
Evan Cheng206ee9d2006-07-07 08:33:52 +000016015/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016016/// node is a GlobalAddress + offset.
16017bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016018 const GlobalValue* &GA,
16019 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016020 if (N->getOpcode() == X86ISD::Wrapper) {
16021 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016022 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016023 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016024 return true;
16025 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016026 }
Evan Chengad4196b2008-05-12 19:56:52 +000016027 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016028}
16029
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016030/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16031/// same as extracting the high 128-bit part of 256-bit vector and then
16032/// inserting the result into the low part of a new 256-bit vector
16033static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16034 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016035 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016036
16037 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016038 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016039 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16040 SVOp->getMaskElt(j) >= 0)
16041 return false;
16042
16043 return true;
16044}
16045
16046/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16047/// same as extracting the low 128-bit part of 256-bit vector and then
16048/// inserting the result into the high part of a new 256-bit vector
16049static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16050 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016051 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016052
16053 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016054 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016055 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16056 SVOp->getMaskElt(j) >= 0)
16057 return false;
16058
16059 return true;
16060}
16061
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016062/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16063static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016064 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016065 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016066 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016067 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16068 SDValue V1 = SVOp->getOperand(0);
16069 SDValue V2 = SVOp->getOperand(1);
16070 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016071 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016072
16073 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16074 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16075 //
16076 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016077 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016078 // V UNDEF BUILD_VECTOR UNDEF
16079 // \ / \ /
16080 // CONCAT_VECTOR CONCAT_VECTOR
16081 // \ /
16082 // \ /
16083 // RESULT: V + zero extended
16084 //
16085 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16086 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16087 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16088 return SDValue();
16089
16090 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16091 return SDValue();
16092
16093 // To match the shuffle mask, the first half of the mask should
16094 // be exactly the first vector, and all the rest a splat with the
16095 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016096 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016097 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16098 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16099 return SDValue();
16100
Chad Rosier3d1161e2012-01-03 21:05:52 +000016101 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16102 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016103 if (Ld->hasNUsesOfValue(1, 0)) {
16104 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16105 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16106 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016107 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16108 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016109 Ld->getMemoryVT(),
16110 Ld->getPointerInfo(),
16111 Ld->getAlignment(),
16112 false/*isVolatile*/, true/*ReadMem*/,
16113 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016114
16115 // Make sure the newly-created LOAD is in the same position as Ld in
16116 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16117 // and update uses of Ld's output chain to use the TokenFactor.
16118 if (Ld->hasAnyUseOfValue(1)) {
16119 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16120 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16121 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16122 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16123 SDValue(ResNode.getNode(), 1));
16124 }
16125
Chad Rosier42726832012-05-07 18:47:44 +000016126 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16127 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016128 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016129
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016130 // Emit a zeroed vector and insert the desired subvector on its
16131 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016132 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016133 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016134 return DCI.CombineTo(N, InsV);
16135 }
16136
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016137 //===--------------------------------------------------------------------===//
16138 // Combine some shuffles into subvector extracts and inserts:
16139 //
16140
16141 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16142 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016143 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16144 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016145 return DCI.CombineTo(N, InsV);
16146 }
16147
16148 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16149 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016150 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16151 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016152 return DCI.CombineTo(N, InsV);
16153 }
16154
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016155 return SDValue();
16156}
16157
Jim Grosbach49af3802013-10-17 02:58:06 +000016158static SDValue PerformConcatCombine(SDNode *N, SelectionDAG &DAG,
16159 TargetLowering::DAGCombinerInfo &DCI,
16160 const X86Subtarget *Subtarget) {
16161 // Creating a v8i16 from a v4i16 argument and an undef runs into trouble in
16162 // type legalization and ends up spilling to the stack. Avoid that by
16163 // creating a vector first and bitcasting the result rather than
16164 // bitcasting the source then creating the vector. Similar problems with
16165 // v8i8.
16166
16167 // No point in doing this after legalize, so early exit for that.
16168 if (!DCI.isBeforeLegalize())
16169 return SDValue();
16170
16171 EVT VT = N->getValueType(0);
16172 SDValue Op0 = N->getOperand(0);
16173 SDValue Op1 = N->getOperand(1);
16174 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16175 if (VT.getSizeInBits() == 128 && N->getNumOperands() == 2 &&
16176 Op1->getOpcode() == ISD::UNDEF &&
16177 Op0->getOpcode() == ISD::BITCAST &&
16178 !TLI.isTypeLegal(Op0->getValueType(0)) &&
16179 TLI.isTypeLegal(Op0->getOperand(0)->getValueType(0))) {
Jim Grosbach20b27742013-10-23 17:37:40 +000016180 if (Op0->getOperand(0)->getValueType(0).isVector())
16181 return SDValue();
Jim Grosbach49af3802013-10-17 02:58:06 +000016182 SDValue Scalar = Op0->getOperand(0);
16183 // Any legal type here will be a simple value type.
16184 MVT SVT = Scalar->getValueType(0).getSimpleVT();
16185 // As a special case, bail out on MMX values.
16186 if (SVT == MVT::x86mmx)
16187 return SDValue();
16188 EVT NVT = MVT::getVectorVT(SVT, 2);
Jim Grosbach20b27742013-10-23 17:37:40 +000016189 // If the result vector type isn't legal, this transform won't really
16190 // help, so bail on that, too.
16191 if (!TLI.isTypeLegal(NVT))
16192 return SDValue();
Jim Grosbach49af3802013-10-17 02:58:06 +000016193 SDLoc dl = SDLoc(N);
16194 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NVT, Scalar);
16195 Res = DAG.getNode(ISD::BITCAST, dl, VT, Res);
16196 return Res;
16197 }
16198
16199 return SDValue();
16200}
16201
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016202/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016203static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016204 TargetLowering::DAGCombinerInfo &DCI,
16205 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016206 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016207 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016208
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016209 // Don't create instructions with illegal types after legalize types has run.
16210 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16211 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16212 return SDValue();
16213
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016214 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016215 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016216 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016217 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016218
16219 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016220 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016221 return SDValue();
16222
16223 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16224 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16225 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016226 SmallVector<SDValue, 16> Elts;
16227 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016228 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016229
Nate Begemanfdea31a2010-03-24 20:49:50 +000016230 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016231}
Evan Chengd880b972008-05-09 21:53:03 +000016232
Nadav Roteme12bf182013-01-04 17:35:21 +000016233/// PerformTruncateCombine - Converts truncate operation to
16234/// a sequence of vector shuffle operations.
16235/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016236static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16237 TargetLowering::DAGCombinerInfo &DCI,
16238 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016239 return SDValue();
16240}
16241
Craig Topper89f4e662012-03-20 07:17:59 +000016242/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16243/// specific shuffle of a load can be folded into a single element load.
16244/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16245/// shuffles have been customed lowered so we need to handle those here.
16246static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16247 TargetLowering::DAGCombinerInfo &DCI) {
16248 if (DCI.isBeforeLegalizeOps())
16249 return SDValue();
16250
16251 SDValue InVec = N->getOperand(0);
16252 SDValue EltNo = N->getOperand(1);
16253
16254 if (!isa<ConstantSDNode>(EltNo))
16255 return SDValue();
16256
16257 EVT VT = InVec.getValueType();
16258
16259 bool HasShuffleIntoBitcast = false;
16260 if (InVec.getOpcode() == ISD::BITCAST) {
16261 // Don't duplicate a load with other uses.
16262 if (!InVec.hasOneUse())
16263 return SDValue();
16264 EVT BCVT = InVec.getOperand(0).getValueType();
16265 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16266 return SDValue();
16267 InVec = InVec.getOperand(0);
16268 HasShuffleIntoBitcast = true;
16269 }
16270
16271 if (!isTargetShuffle(InVec.getOpcode()))
16272 return SDValue();
16273
16274 // Don't duplicate a load with other uses.
16275 if (!InVec.hasOneUse())
16276 return SDValue();
16277
16278 SmallVector<int, 16> ShuffleMask;
16279 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016280 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16281 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016282 return SDValue();
16283
16284 // Select the input vector, guarding against out of range extract vector.
16285 unsigned NumElems = VT.getVectorNumElements();
16286 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16287 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16288 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16289 : InVec.getOperand(1);
16290
16291 // If inputs to shuffle are the same for both ops, then allow 2 uses
16292 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16293
16294 if (LdNode.getOpcode() == ISD::BITCAST) {
16295 // Don't duplicate a load with other uses.
16296 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16297 return SDValue();
16298
16299 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16300 LdNode = LdNode.getOperand(0);
16301 }
16302
16303 if (!ISD::isNormalLoad(LdNode.getNode()))
16304 return SDValue();
16305
16306 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16307
16308 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16309 return SDValue();
16310
16311 if (HasShuffleIntoBitcast) {
16312 // If there's a bitcast before the shuffle, check if the load type and
16313 // alignment is valid.
16314 unsigned Align = LN0->getAlignment();
16315 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016316 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016317 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16318
16319 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16320 return SDValue();
16321 }
16322
16323 // All checks match so transform back to vector_shuffle so that DAG combiner
16324 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016325 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016326
16327 // Create shuffle node taking into account the case that its a unary shuffle
16328 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16329 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16330 InVec.getOperand(0), Shuffle,
16331 &ShuffleMask[0]);
16332 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16333 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16334 EltNo);
16335}
16336
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016337/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16338/// generation and convert it from being a bunch of shuffles and extracts
16339/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016340static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016341 TargetLowering::DAGCombinerInfo &DCI) {
16342 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16343 if (NewOp.getNode())
16344 return NewOp;
16345
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016346 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016347 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16348 // from mmx to v2i32 has a single usage.
16349 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16350 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16351 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016352 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016353 N->getValueType(0),
16354 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016355
16356 // Only operate on vectors of 4 elements, where the alternative shuffling
16357 // gets to be more expensive.
16358 if (InputVector.getValueType() != MVT::v4i32)
16359 return SDValue();
16360
16361 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16362 // single use which is a sign-extend or zero-extend, and all elements are
16363 // used.
16364 SmallVector<SDNode *, 4> Uses;
16365 unsigned ExtractedElements = 0;
16366 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16367 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16368 if (UI.getUse().getResNo() != InputVector.getResNo())
16369 return SDValue();
16370
16371 SDNode *Extract = *UI;
16372 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16373 return SDValue();
16374
16375 if (Extract->getValueType(0) != MVT::i32)
16376 return SDValue();
16377 if (!Extract->hasOneUse())
16378 return SDValue();
16379 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16380 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16381 return SDValue();
16382 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16383 return SDValue();
16384
16385 // Record which element was extracted.
16386 ExtractedElements |=
16387 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16388
16389 Uses.push_back(Extract);
16390 }
16391
16392 // If not all the elements were used, this may not be worthwhile.
16393 if (ExtractedElements != 15)
16394 return SDValue();
16395
16396 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016397 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016398
16399 // Store the value to a temporary stack slot.
16400 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016401 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16402 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016403
16404 // Replace each use (extract) with a load of the appropriate element.
16405 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16406 UE = Uses.end(); UI != UE; ++UI) {
16407 SDNode *Extract = *UI;
16408
Nadav Rotem86694292011-05-17 08:31:57 +000016409 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016410 SDValue Idx = Extract->getOperand(1);
16411 unsigned EltSize =
16412 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16413 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016414 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016415 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16416
Nadav Rotem86694292011-05-17 08:31:57 +000016417 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016418 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016419
16420 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016421 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016422 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016423 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016424
16425 // Replace the exact with the load.
16426 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16427 }
16428
16429 // The replacement was made in place; don't return anything.
16430 return SDValue();
16431}
16432
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016433/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016434static std::pair<unsigned, bool>
16435matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16436 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016437 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016438 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016439
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016440 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016441 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016442 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016443 case MVT::v32i8:
16444 case MVT::v16i16:
16445 case MVT::v8i32:
16446 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016447 NeedSplit = true;
16448 if (!Subtarget->hasAVX())
16449 return std::make_pair(0, false);
16450 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016451 case MVT::v16i8:
16452 case MVT::v8i16:
16453 case MVT::v4i32:
16454 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016455 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016456 }
16457
16458 // SSE2 has only a small subset of the operations.
16459 bool hasUnsigned = Subtarget->hasSSE41() ||
16460 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16461 bool hasSigned = Subtarget->hasSSE41() ||
16462 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16463
16464 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16465
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016466 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016467 // Check for x CC y ? x : y.
16468 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16469 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16470 switch (CC) {
16471 default: break;
16472 case ISD::SETULT:
16473 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016474 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016475 case ISD::SETUGT:
16476 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016477 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016478 case ISD::SETLT:
16479 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016480 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016481 case ISD::SETGT:
16482 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016483 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016484 }
16485 // Check for x CC y ? y : x -- a min/max with reversed arms.
16486 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16487 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16488 switch (CC) {
16489 default: break;
16490 case ISD::SETULT:
16491 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016492 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016493 case ISD::SETUGT:
16494 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016495 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016496 case ISD::SETLT:
16497 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016498 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016499 case ISD::SETGT:
16500 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016501 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016502 }
16503 }
16504
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016505 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016506}
16507
Duncan Sands6bcd2192011-09-17 16:49:39 +000016508/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16509/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016510static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016511 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016512 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016513 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016514 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016515 // Get the LHS/RHS of the select.
16516 SDValue LHS = N->getOperand(1);
16517 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016518 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016519 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016520
Dan Gohman670e5392009-09-21 18:03:22 +000016521 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016522 // instructions match the semantics of the common C idiom x<y?x:y but not
16523 // x<=y?x:y, because of how they handle negative zero (which can be
16524 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016525 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016526 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016527 (Subtarget->hasSSE2() ||
16528 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016529 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016530
Chris Lattner47b4ce82009-03-11 05:48:52 +000016531 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016532 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016533 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16534 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016535 switch (CC) {
16536 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016537 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016538 // Converting this to a min would handle NaNs incorrectly, and swapping
16539 // the operands would cause it to handle comparisons between positive
16540 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016541 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016542 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016543 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16544 break;
16545 std::swap(LHS, RHS);
16546 }
Dan Gohman670e5392009-09-21 18:03:22 +000016547 Opcode = X86ISD::FMIN;
16548 break;
16549 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016550 // Converting this to a min would handle comparisons between positive
16551 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016552 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016553 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16554 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016555 Opcode = X86ISD::FMIN;
16556 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016557 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016558 // Converting this to a min would handle both negative zeros and NaNs
16559 // incorrectly, but we can swap the operands to fix both.
16560 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016561 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016562 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016563 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016564 Opcode = X86ISD::FMIN;
16565 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016566
Dan Gohman670e5392009-09-21 18:03:22 +000016567 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016568 // Converting this to a max would handle comparisons between positive
16569 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016570 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016571 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016572 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016573 Opcode = X86ISD::FMAX;
16574 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016575 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016576 // Converting this to a max would handle NaNs incorrectly, and swapping
16577 // the operands would cause it to handle comparisons between positive
16578 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016579 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016580 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016581 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16582 break;
16583 std::swap(LHS, RHS);
16584 }
Dan Gohman670e5392009-09-21 18:03:22 +000016585 Opcode = X86ISD::FMAX;
16586 break;
16587 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016588 // Converting this to a max would handle both negative zeros and NaNs
16589 // incorrectly, but we can swap the operands to fix both.
16590 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016591 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016592 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016593 case ISD::SETGE:
16594 Opcode = X86ISD::FMAX;
16595 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016596 }
Dan Gohman670e5392009-09-21 18:03:22 +000016597 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016598 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16599 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016600 switch (CC) {
16601 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016602 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016603 // Converting this to a min would handle comparisons between positive
16604 // and negative zero incorrectly, and swapping the operands would
16605 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016606 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016607 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016608 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016609 break;
16610 std::swap(LHS, RHS);
16611 }
Dan Gohman670e5392009-09-21 18:03:22 +000016612 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016613 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016614 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016615 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016616 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016617 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16618 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016619 Opcode = X86ISD::FMIN;
16620 break;
16621 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016622 // Converting this to a min would handle both negative zeros and NaNs
16623 // incorrectly, but we can swap the operands to fix both.
16624 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016625 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016626 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016627 case ISD::SETGE:
16628 Opcode = X86ISD::FMIN;
16629 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016630
Dan Gohman670e5392009-09-21 18:03:22 +000016631 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016632 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016633 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016634 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016635 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016636 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016637 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016638 // Converting this to a max would handle comparisons between positive
16639 // and negative zero incorrectly, and swapping the operands would
16640 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016641 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016642 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016643 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016644 break;
16645 std::swap(LHS, RHS);
16646 }
Dan Gohman670e5392009-09-21 18:03:22 +000016647 Opcode = X86ISD::FMAX;
16648 break;
16649 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016650 // Converting this to a max would handle both negative zeros and NaNs
16651 // incorrectly, but we can swap the operands to fix both.
16652 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016653 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016654 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016655 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016656 Opcode = X86ISD::FMAX;
16657 break;
16658 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016659 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016660
Chris Lattner47b4ce82009-03-11 05:48:52 +000016661 if (Opcode)
16662 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016663 }
Eric Christopherfd179292009-08-27 18:07:15 +000016664
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016665 if (Subtarget->hasAVX512() && VT.isVector() &&
16666 Cond.getValueType().getVectorElementType() == MVT::i1) {
16667 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16668 // lowering on AVX-512. In this case we convert it to
16669 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16670 // The same situation for all 128 and 256-bit vectors of i8 and i16
16671 EVT OpVT = LHS.getValueType();
16672 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16673 (OpVT.getVectorElementType() == MVT::i8 ||
16674 OpVT.getVectorElementType() == MVT::i16)) {
16675 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16676 DCI.AddToWorklist(Cond.getNode());
16677 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16678 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016679 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016680 // If this is a select between two integer constants, try to do some
16681 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016682 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16683 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016684 // Don't do this for crazy integer types.
16685 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16686 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016687 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016688 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016689
Chris Lattnercee56e72009-03-13 05:53:31 +000016690 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016691 // Efficiently invertible.
16692 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16693 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16694 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16695 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016696 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016697 }
Eric Christopherfd179292009-08-27 18:07:15 +000016698
Chris Lattnerd1980a52009-03-12 06:52:53 +000016699 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016700 if (FalseC->getAPIntValue() == 0 &&
16701 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016702 if (NeedsCondInvert) // Invert the condition if needed.
16703 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16704 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016705
Chris Lattnerd1980a52009-03-12 06:52:53 +000016706 // Zero extend the condition if needed.
16707 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016708
Chris Lattnercee56e72009-03-13 05:53:31 +000016709 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016710 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016711 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016712 }
Eric Christopherfd179292009-08-27 18:07:15 +000016713
Chris Lattner97a29a52009-03-13 05:22:11 +000016714 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016715 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016716 if (NeedsCondInvert) // Invert the condition if needed.
16717 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16718 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016719
Chris Lattner97a29a52009-03-13 05:22:11 +000016720 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016721 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16722 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016723 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016724 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016725 }
Eric Christopherfd179292009-08-27 18:07:15 +000016726
Chris Lattnercee56e72009-03-13 05:53:31 +000016727 // Optimize cases that will turn into an LEA instruction. This requires
16728 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016729 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016730 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016731 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016732
Chris Lattnercee56e72009-03-13 05:53:31 +000016733 bool isFastMultiplier = false;
16734 if (Diff < 10) {
16735 switch ((unsigned char)Diff) {
16736 default: break;
16737 case 1: // result = add base, cond
16738 case 2: // result = lea base( , cond*2)
16739 case 3: // result = lea base(cond, cond*2)
16740 case 4: // result = lea base( , cond*4)
16741 case 5: // result = lea base(cond, cond*4)
16742 case 8: // result = lea base( , cond*8)
16743 case 9: // result = lea base(cond, cond*8)
16744 isFastMultiplier = true;
16745 break;
16746 }
16747 }
Eric Christopherfd179292009-08-27 18:07:15 +000016748
Chris Lattnercee56e72009-03-13 05:53:31 +000016749 if (isFastMultiplier) {
16750 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16751 if (NeedsCondInvert) // Invert the condition if needed.
16752 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16753 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016754
Chris Lattnercee56e72009-03-13 05:53:31 +000016755 // Zero extend the condition if needed.
16756 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16757 Cond);
16758 // Scale the condition by the difference.
16759 if (Diff != 1)
16760 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16761 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016762
Chris Lattnercee56e72009-03-13 05:53:31 +000016763 // Add the base if non-zero.
16764 if (FalseC->getAPIntValue() != 0)
16765 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16766 SDValue(FalseC, 0));
16767 return Cond;
16768 }
Eric Christopherfd179292009-08-27 18:07:15 +000016769 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016770 }
16771 }
Eric Christopherfd179292009-08-27 18:07:15 +000016772
Evan Cheng56f582d2012-01-04 01:41:39 +000016773 // Canonicalize max and min:
16774 // (x > y) ? x : y -> (x >= y) ? x : y
16775 // (x < y) ? x : y -> (x <= y) ? x : y
16776 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16777 // the need for an extra compare
16778 // against zero. e.g.
16779 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16780 // subl %esi, %edi
16781 // testl %edi, %edi
16782 // movl $0, %eax
16783 // cmovgl %edi, %eax
16784 // =>
16785 // xorl %eax, %eax
16786 // subl %esi, $edi
16787 // cmovsl %eax, %edi
16788 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16789 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16790 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16791 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16792 switch (CC) {
16793 default: break;
16794 case ISD::SETLT:
16795 case ISD::SETGT: {
16796 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016797 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016798 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16799 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16800 }
16801 }
16802 }
16803
Juergen Ributzkad7174712013-09-05 23:02:56 +000016804 // Early exit check
16805 if (!TLI.isTypeLegal(VT))
16806 return SDValue();
16807
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016808 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016809 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016810 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16811 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16812 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16813 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16814
16815 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16816 // left side invert the predicate to simplify logic below.
16817 SDValue Other;
16818 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16819 Other = RHS;
16820 CC = ISD::getSetCCInverse(CC, true);
16821 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16822 Other = LHS;
16823 }
16824
16825 if (Other.getNode() && Other->getNumOperands() == 2 &&
16826 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16827 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16828 SDValue CondRHS = Cond->getOperand(1);
16829
16830 // Look for a general sub with unsigned saturation first.
16831 // x >= y ? x-y : 0 --> subus x, y
16832 // x > y ? x-y : 0 --> subus x, y
16833 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16834 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16835 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16836
16837 // If the RHS is a constant we have to reverse the const canonicalization.
16838 // x > C-1 ? x+-C : 0 --> subus x, C
16839 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16840 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16841 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016842 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016843 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016844 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016845 }
16846
16847 // Another special case: If C was a sign bit, the sub has been
16848 // canonicalized into a xor.
16849 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16850 // it's safe to decanonicalize the xor?
16851 // x s< 0 ? x^C : 0 --> subus x, C
16852 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16853 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16854 isSplatVector(OpRHS.getNode())) {
16855 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16856 if (A.isSignBit())
16857 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16858 }
16859 }
16860 }
16861
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016862 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016863 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016864 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16865 unsigned Opc = ret.first;
16866 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016867
16868 if (Opc && NeedSplit) {
16869 unsigned NumElems = VT.getVectorNumElements();
16870 // Extract the LHS vectors
16871 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16872 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16873
16874 // Extract the RHS vectors
16875 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16876 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16877
16878 // Create min/max for each subvector
16879 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16880 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16881
16882 // Merge the result
16883 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16884 } else if (Opc)
16885 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16886 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016887
Michael Liaobf538412013-04-11 05:15:54 +000016888 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016889 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16890 // Check if SETCC has already been promoted
16891 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016892
16893 assert(Cond.getValueType().isVector() &&
16894 "vector select expects a vector selector!");
16895
16896 EVT IntVT = Cond.getValueType();
16897 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16898 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16899
16900 if (!TValIsAllOnes && !FValIsAllZeros) {
16901 // Try invert the condition if true value is not all 1s and false value
16902 // is not all 0s.
16903 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16904 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16905
16906 if (TValIsAllZeros || FValIsAllOnes) {
16907 SDValue CC = Cond.getOperand(2);
16908 ISD::CondCode NewCC =
16909 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16910 Cond.getOperand(0).getValueType().isInteger());
16911 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16912 std::swap(LHS, RHS);
16913 TValIsAllOnes = FValIsAllOnes;
16914 FValIsAllZeros = TValIsAllZeros;
16915 }
16916 }
16917
16918 if (TValIsAllOnes || FValIsAllZeros) {
16919 SDValue Ret;
16920
16921 if (TValIsAllOnes && FValIsAllZeros)
16922 Ret = Cond;
16923 else if (TValIsAllOnes)
16924 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16925 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16926 else if (FValIsAllZeros)
16927 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16928 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16929
16930 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16931 }
16932 }
16933
Nadav Rotemcc616562012-01-15 19:27:55 +000016934 // If we know that this node is legal then we know that it is going to be
16935 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16936 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16937 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000016938 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016939 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016940 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016941
16942 // Don't optimize vector selects that map to mask-registers.
16943 if (BitWidth == 1)
16944 return SDValue();
16945
Nadav Rotemcc616562012-01-15 19:27:55 +000016946 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16947 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16948
16949 APInt KnownZero, KnownOne;
16950 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16951 DCI.isBeforeLegalizeOps());
16952 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16953 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16954 DCI.CommitTargetLoweringOpt(TLO);
16955 }
16956
Dan Gohman475871a2008-07-27 21:46:04 +000016957 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016958}
16959
Michael Liao2a33cec2012-08-10 19:58:13 +000016960// Check whether a boolean test is testing a boolean value generated by
16961// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16962// code.
16963//
16964// Simplify the following patterns:
16965// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16966// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16967// to (Op EFLAGS Cond)
16968//
16969// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16970// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16971// to (Op EFLAGS !Cond)
16972//
16973// where Op could be BRCOND or CMOV.
16974//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016975static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016976 // Quit if not CMP and SUB with its value result used.
16977 if (Cmp.getOpcode() != X86ISD::CMP &&
16978 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16979 return SDValue();
16980
16981 // Quit if not used as a boolean value.
16982 if (CC != X86::COND_E && CC != X86::COND_NE)
16983 return SDValue();
16984
16985 // Check CMP operands. One of them should be 0 or 1 and the other should be
16986 // an SetCC or extended from it.
16987 SDValue Op1 = Cmp.getOperand(0);
16988 SDValue Op2 = Cmp.getOperand(1);
16989
16990 SDValue SetCC;
16991 const ConstantSDNode* C = 0;
16992 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016993 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016994
16995 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16996 SetCC = Op2;
16997 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16998 SetCC = Op1;
16999 else // Quit if all operands are not constants.
17000 return SDValue();
17001
Michael Liao959ddbb2013-04-11 04:43:09 +000017002 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000017003 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000017004 checkAgainstTrue = true;
17005 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000017006 // Quit if the constant is neither 0 or 1.
17007 return SDValue();
17008
Michael Liao959ddbb2013-04-11 04:43:09 +000017009 bool truncatedToBoolWithAnd = false;
17010 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17011 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17012 SetCC.getOpcode() == ISD::TRUNCATE ||
17013 SetCC.getOpcode() == ISD::AND) {
17014 if (SetCC.getOpcode() == ISD::AND) {
17015 int OpIdx = -1;
17016 ConstantSDNode *CS;
17017 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17018 CS->getZExtValue() == 1)
17019 OpIdx = 1;
17020 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17021 CS->getZExtValue() == 1)
17022 OpIdx = 0;
17023 if (OpIdx == -1)
17024 break;
17025 SetCC = SetCC.getOperand(OpIdx);
17026 truncatedToBoolWithAnd = true;
17027 } else
17028 SetCC = SetCC.getOperand(0);
17029 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017030
Michael Liao7fdc66b2012-09-10 16:36:16 +000017031 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000017032 case X86ISD::SETCC_CARRY:
17033 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17034 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17035 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17036 // truncated to i1 using 'and'.
17037 if (checkAgainstTrue && !truncatedToBoolWithAnd)
17038 break;
17039 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17040 "Invalid use of SETCC_CARRY!");
17041 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000017042 case X86ISD::SETCC:
17043 // Set the condition code or opposite one if necessary.
17044 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17045 if (needOppositeCond)
17046 CC = X86::GetOppositeBranchCondition(CC);
17047 return SetCC.getOperand(1);
17048 case X86ISD::CMOV: {
17049 // Check whether false/true value has canonical one, i.e. 0 or 1.
17050 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17051 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17052 // Quit if true value is not a constant.
17053 if (!TVal)
17054 return SDValue();
17055 // Quit if false value is not a constant.
17056 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017057 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017058 // Skip 'zext' or 'trunc' node.
17059 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17060 Op.getOpcode() == ISD::TRUNCATE)
17061 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017062 // A special case for rdrand/rdseed, where 0 is set if false cond is
17063 // found.
17064 if ((Op.getOpcode() != X86ISD::RDRAND &&
17065 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017066 return SDValue();
17067 }
17068 // Quit if false value is not the constant 0 or 1.
17069 bool FValIsFalse = true;
17070 if (FVal && FVal->getZExtValue() != 0) {
17071 if (FVal->getZExtValue() != 1)
17072 return SDValue();
17073 // If FVal is 1, opposite cond is needed.
17074 needOppositeCond = !needOppositeCond;
17075 FValIsFalse = false;
17076 }
17077 // Quit if TVal is not the constant opposite of FVal.
17078 if (FValIsFalse && TVal->getZExtValue() != 1)
17079 return SDValue();
17080 if (!FValIsFalse && TVal->getZExtValue() != 0)
17081 return SDValue();
17082 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17083 if (needOppositeCond)
17084 CC = X86::GetOppositeBranchCondition(CC);
17085 return SetCC.getOperand(3);
17086 }
17087 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017088
Michael Liao7fdc66b2012-09-10 16:36:16 +000017089 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017090}
17091
Chris Lattnerd1980a52009-03-12 06:52:53 +000017092/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17093static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017094 TargetLowering::DAGCombinerInfo &DCI,
17095 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017096 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017097
Chris Lattnerd1980a52009-03-12 06:52:53 +000017098 // If the flag operand isn't dead, don't touch this CMOV.
17099 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17100 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017101
Evan Chengb5a55d92011-05-24 01:48:22 +000017102 SDValue FalseOp = N->getOperand(0);
17103 SDValue TrueOp = N->getOperand(1);
17104 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17105 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017106
Evan Chengb5a55d92011-05-24 01:48:22 +000017107 if (CC == X86::COND_E || CC == X86::COND_NE) {
17108 switch (Cond.getOpcode()) {
17109 default: break;
17110 case X86ISD::BSR:
17111 case X86ISD::BSF:
17112 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17113 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17114 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17115 }
17116 }
17117
Michael Liao2a33cec2012-08-10 19:58:13 +000017118 SDValue Flags;
17119
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017120 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017121 if (Flags.getNode() &&
17122 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017123 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017124 SDValue Ops[] = { FalseOp, TrueOp,
17125 DAG.getConstant(CC, MVT::i8), Flags };
17126 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17127 Ops, array_lengthof(Ops));
17128 }
17129
Chris Lattnerd1980a52009-03-12 06:52:53 +000017130 // If this is a select between two integer constants, try to do some
17131 // optimizations. Note that the operands are ordered the opposite of SELECT
17132 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017133 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17134 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017135 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17136 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017137 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17138 CC = X86::GetOppositeBranchCondition(CC);
17139 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017140 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017141 }
Eric Christopherfd179292009-08-27 18:07:15 +000017142
Chris Lattnerd1980a52009-03-12 06:52:53 +000017143 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017144 // This is efficient for any integer data type (including i8/i16) and
17145 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017146 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017147 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17148 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017149
Chris Lattnerd1980a52009-03-12 06:52:53 +000017150 // Zero extend the condition if needed.
17151 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017152
Chris Lattnerd1980a52009-03-12 06:52:53 +000017153 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17154 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017155 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017156 if (N->getNumValues() == 2) // Dead flag value?
17157 return DCI.CombineTo(N, Cond, SDValue());
17158 return Cond;
17159 }
Eric Christopherfd179292009-08-27 18:07:15 +000017160
Chris Lattnercee56e72009-03-13 05:53:31 +000017161 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17162 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017163 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017164 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17165 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017166
Chris Lattner97a29a52009-03-13 05:22:11 +000017167 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017168 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17169 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017170 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17171 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017172
Chris Lattner97a29a52009-03-13 05:22:11 +000017173 if (N->getNumValues() == 2) // Dead flag value?
17174 return DCI.CombineTo(N, Cond, SDValue());
17175 return Cond;
17176 }
Eric Christopherfd179292009-08-27 18:07:15 +000017177
Chris Lattnercee56e72009-03-13 05:53:31 +000017178 // Optimize cases that will turn into an LEA instruction. This requires
17179 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017180 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017181 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017182 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017183
Chris Lattnercee56e72009-03-13 05:53:31 +000017184 bool isFastMultiplier = false;
17185 if (Diff < 10) {
17186 switch ((unsigned char)Diff) {
17187 default: break;
17188 case 1: // result = add base, cond
17189 case 2: // result = lea base( , cond*2)
17190 case 3: // result = lea base(cond, cond*2)
17191 case 4: // result = lea base( , cond*4)
17192 case 5: // result = lea base(cond, cond*4)
17193 case 8: // result = lea base( , cond*8)
17194 case 9: // result = lea base(cond, cond*8)
17195 isFastMultiplier = true;
17196 break;
17197 }
17198 }
Eric Christopherfd179292009-08-27 18:07:15 +000017199
Chris Lattnercee56e72009-03-13 05:53:31 +000017200 if (isFastMultiplier) {
17201 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017202 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17203 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017204 // Zero extend the condition if needed.
17205 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17206 Cond);
17207 // Scale the condition by the difference.
17208 if (Diff != 1)
17209 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17210 DAG.getConstant(Diff, Cond.getValueType()));
17211
17212 // Add the base if non-zero.
17213 if (FalseC->getAPIntValue() != 0)
17214 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17215 SDValue(FalseC, 0));
17216 if (N->getNumValues() == 2) // Dead flag value?
17217 return DCI.CombineTo(N, Cond, SDValue());
17218 return Cond;
17219 }
Eric Christopherfd179292009-08-27 18:07:15 +000017220 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017221 }
17222 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017223
17224 // Handle these cases:
17225 // (select (x != c), e, c) -> select (x != c), e, x),
17226 // (select (x == c), c, e) -> select (x == c), x, e)
17227 // where the c is an integer constant, and the "select" is the combination
17228 // of CMOV and CMP.
17229 //
17230 // The rationale for this change is that the conditional-move from a constant
17231 // needs two instructions, however, conditional-move from a register needs
17232 // only one instruction.
17233 //
17234 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17235 // some instruction-combining opportunities. This opt needs to be
17236 // postponed as late as possible.
17237 //
17238 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17239 // the DCI.xxxx conditions are provided to postpone the optimization as
17240 // late as possible.
17241
17242 ConstantSDNode *CmpAgainst = 0;
17243 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17244 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017245 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017246
17247 if (CC == X86::COND_NE &&
17248 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17249 CC = X86::GetOppositeBranchCondition(CC);
17250 std::swap(TrueOp, FalseOp);
17251 }
17252
17253 if (CC == X86::COND_E &&
17254 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17255 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17256 DAG.getConstant(CC, MVT::i8), Cond };
17257 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17258 array_lengthof(Ops));
17259 }
17260 }
17261 }
17262
Chris Lattnerd1980a52009-03-12 06:52:53 +000017263 return SDValue();
17264}
17265
Evan Cheng0b0cd912009-03-28 05:57:29 +000017266/// PerformMulCombine - Optimize a single multiply with constant into two
17267/// in order to implement it with two cheaper instructions, e.g.
17268/// LEA + SHL, LEA + LEA.
17269static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17270 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017271 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17272 return SDValue();
17273
Owen Andersone50ed302009-08-10 22:56:29 +000017274 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017275 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017276 return SDValue();
17277
17278 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17279 if (!C)
17280 return SDValue();
17281 uint64_t MulAmt = C->getZExtValue();
17282 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17283 return SDValue();
17284
17285 uint64_t MulAmt1 = 0;
17286 uint64_t MulAmt2 = 0;
17287 if ((MulAmt % 9) == 0) {
17288 MulAmt1 = 9;
17289 MulAmt2 = MulAmt / 9;
17290 } else if ((MulAmt % 5) == 0) {
17291 MulAmt1 = 5;
17292 MulAmt2 = MulAmt / 5;
17293 } else if ((MulAmt % 3) == 0) {
17294 MulAmt1 = 3;
17295 MulAmt2 = MulAmt / 3;
17296 }
17297 if (MulAmt2 &&
17298 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017299 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017300
17301 if (isPowerOf2_64(MulAmt2) &&
17302 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17303 // If second multiplifer is pow2, issue it first. We want the multiply by
17304 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17305 // is an add.
17306 std::swap(MulAmt1, MulAmt2);
17307
17308 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017309 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017310 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017311 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017312 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017313 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017314 DAG.getConstant(MulAmt1, VT));
17315
Eric Christopherfd179292009-08-27 18:07:15 +000017316 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017317 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017318 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017319 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017320 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017321 DAG.getConstant(MulAmt2, VT));
17322
17323 // Do not add new nodes to DAG combiner worklist.
17324 DCI.CombineTo(N, NewMul, false);
17325 }
17326 return SDValue();
17327}
17328
Evan Chengad9c0a32009-12-15 00:53:42 +000017329static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17330 SDValue N0 = N->getOperand(0);
17331 SDValue N1 = N->getOperand(1);
17332 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17333 EVT VT = N0.getValueType();
17334
17335 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17336 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017337 if (VT.isInteger() && !VT.isVector() &&
17338 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017339 N0.getOperand(1).getOpcode() == ISD::Constant) {
17340 SDValue N00 = N0.getOperand(0);
17341 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17342 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17343 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17344 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17345 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17346 APInt ShAmt = N1C->getAPIntValue();
17347 Mask = Mask.shl(ShAmt);
17348 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017349 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017350 N00, DAG.getConstant(Mask, VT));
17351 }
17352 }
17353
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017354 // Hardware support for vector shifts is sparse which makes us scalarize the
17355 // vector operations in many cases. Also, on sandybridge ADD is faster than
17356 // shl.
17357 // (shl V, 1) -> add V,V
17358 if (isSplatVector(N1.getNode())) {
17359 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17360 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17361 // We shift all of the values by one. In many cases we do not have
17362 // hardware support for this operation. This is better expressed as an ADD
17363 // of two values.
17364 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017365 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017366 }
17367 }
17368
Evan Chengad9c0a32009-12-15 00:53:42 +000017369 return SDValue();
17370}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017371
Stephen Linfff96732013-07-12 15:31:36 +000017372/// \brief Returns a vector of 0s if the node in input is a vector logical
17373/// shift by a constant amount which is known to be bigger than or equal
17374/// to the vector element size in bits.
17375static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17376 const X86Subtarget *Subtarget) {
17377 EVT VT = N->getValueType(0);
17378
17379 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17380 (!Subtarget->hasInt256() ||
17381 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17382 return SDValue();
17383
17384 SDValue Amt = N->getOperand(1);
17385 SDLoc DL(N);
17386 if (isSplatVector(Amt.getNode())) {
17387 SDValue SclrAmt = Amt->getOperand(0);
17388 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17389 APInt ShiftAmt = C->getAPIntValue();
17390 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17391
17392 // SSE2/AVX2 logical shifts always return a vector of 0s
17393 // if the shift amount is bigger than or equal to
17394 // the element size. The constant shift amount will be
17395 // encoded as a 8-bit immediate.
17396 if (ShiftAmt.trunc(8).uge(MaxAmount))
17397 return getZeroVector(VT, Subtarget, DAG, DL);
17398 }
17399 }
17400
17401 return SDValue();
17402}
17403
Nadav Rotem0fb65232013-05-04 23:24:56 +000017404/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017405static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017406 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017407 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017408 if (N->getOpcode() == ISD::SHL) {
17409 SDValue V = PerformSHLCombine(N, DAG);
17410 if (V.getNode()) return V;
17411 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017412
Stephen Linfff96732013-07-12 15:31:36 +000017413 if (N->getOpcode() != ISD::SRA) {
17414 // Try to fold this logical shift into a zero vector.
17415 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17416 if (V.getNode()) return V;
17417 }
17418
Michael Liao42317cc2013-03-20 02:33:21 +000017419 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017420}
17421
Stuart Hastings865f0932011-06-03 23:53:54 +000017422// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17423// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17424// and friends. Likewise for OR -> CMPNEQSS.
17425static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17426 TargetLowering::DAGCombinerInfo &DCI,
17427 const X86Subtarget *Subtarget) {
17428 unsigned opcode;
17429
17430 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17431 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017432 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017433 SDValue N0 = N->getOperand(0);
17434 SDValue N1 = N->getOperand(1);
17435 SDValue CMP0 = N0->getOperand(1);
17436 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017437 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017438
17439 // The SETCCs should both refer to the same CMP.
17440 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17441 return SDValue();
17442
17443 SDValue CMP00 = CMP0->getOperand(0);
17444 SDValue CMP01 = CMP0->getOperand(1);
17445 EVT VT = CMP00.getValueType();
17446
17447 if (VT == MVT::f32 || VT == MVT::f64) {
17448 bool ExpectingFlags = false;
17449 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017450 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017451 !ExpectingFlags && UI != UE; ++UI)
17452 switch (UI->getOpcode()) {
17453 default:
17454 case ISD::BR_CC:
17455 case ISD::BRCOND:
17456 case ISD::SELECT:
17457 ExpectingFlags = true;
17458 break;
17459 case ISD::CopyToReg:
17460 case ISD::SIGN_EXTEND:
17461 case ISD::ZERO_EXTEND:
17462 case ISD::ANY_EXTEND:
17463 break;
17464 }
17465
17466 if (!ExpectingFlags) {
17467 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17468 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17469
17470 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17471 X86::CondCode tmp = cc0;
17472 cc0 = cc1;
17473 cc1 = tmp;
17474 }
17475
17476 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17477 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17478 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17479 X86ISD::NodeType NTOperator = is64BitFP ?
17480 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17481 // FIXME: need symbolic constants for these magic numbers.
17482 // See X86ATTInstPrinter.cpp:printSSECC().
17483 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17484 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17485 DAG.getConstant(x86cc, MVT::i8));
17486 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17487 OnesOrZeroesF);
17488 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17489 DAG.getConstant(1, MVT::i32));
17490 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17491 return OneBitOfTruth;
17492 }
17493 }
17494 }
17495 }
17496 return SDValue();
17497}
17498
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017499/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17500/// so it can be folded inside ANDNP.
17501static bool CanFoldXORWithAllOnes(const SDNode *N) {
17502 EVT VT = N->getValueType(0);
17503
17504 // Match direct AllOnes for 128 and 256-bit vectors
17505 if (ISD::isBuildVectorAllOnes(N))
17506 return true;
17507
17508 // Look through a bit convert.
17509 if (N->getOpcode() == ISD::BITCAST)
17510 N = N->getOperand(0).getNode();
17511
17512 // Sometimes the operand may come from a insert_subvector building a 256-bit
17513 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017514 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017515 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17516 SDValue V1 = N->getOperand(0);
17517 SDValue V2 = N->getOperand(1);
17518
17519 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17520 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17521 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17522 ISD::isBuildVectorAllOnes(V2.getNode()))
17523 return true;
17524 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017525
17526 return false;
17527}
17528
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017529// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17530// register. In most cases we actually compare or select YMM-sized registers
17531// and mixing the two types creates horrible code. This method optimizes
17532// some of the transition sequences.
17533static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17534 TargetLowering::DAGCombinerInfo &DCI,
17535 const X86Subtarget *Subtarget) {
17536 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017537 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017538 return SDValue();
17539
17540 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17541 N->getOpcode() == ISD::ZERO_EXTEND ||
17542 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17543
17544 SDValue Narrow = N->getOperand(0);
17545 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017546 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017547 return SDValue();
17548
17549 if (Narrow->getOpcode() != ISD::XOR &&
17550 Narrow->getOpcode() != ISD::AND &&
17551 Narrow->getOpcode() != ISD::OR)
17552 return SDValue();
17553
17554 SDValue N0 = Narrow->getOperand(0);
17555 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017556 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017557
17558 // The Left side has to be a trunc.
17559 if (N0.getOpcode() != ISD::TRUNCATE)
17560 return SDValue();
17561
17562 // The type of the truncated inputs.
17563 EVT WideVT = N0->getOperand(0)->getValueType(0);
17564 if (WideVT != VT)
17565 return SDValue();
17566
17567 // The right side has to be a 'trunc' or a constant vector.
17568 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17569 bool RHSConst = (isSplatVector(N1.getNode()) &&
17570 isa<ConstantSDNode>(N1->getOperand(0)));
17571 if (!RHSTrunc && !RHSConst)
17572 return SDValue();
17573
17574 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17575
17576 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17577 return SDValue();
17578
17579 // Set N0 and N1 to hold the inputs to the new wide operation.
17580 N0 = N0->getOperand(0);
17581 if (RHSConst) {
17582 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17583 N1->getOperand(0));
17584 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17585 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17586 } else if (RHSTrunc) {
17587 N1 = N1->getOperand(0);
17588 }
17589
17590 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017591 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017592 unsigned Opcode = N->getOpcode();
17593 switch (Opcode) {
17594 case ISD::ANY_EXTEND:
17595 return Op;
17596 case ISD::ZERO_EXTEND: {
17597 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17598 APInt Mask = APInt::getAllOnesValue(InBits);
17599 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17600 return DAG.getNode(ISD::AND, DL, VT,
17601 Op, DAG.getConstant(Mask, VT));
17602 }
17603 case ISD::SIGN_EXTEND:
17604 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17605 Op, DAG.getValueType(NarrowVT));
17606 default:
17607 llvm_unreachable("Unexpected opcode");
17608 }
17609}
17610
Nate Begemanb65c1752010-12-17 22:55:37 +000017611static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17612 TargetLowering::DAGCombinerInfo &DCI,
17613 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017614 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017615 if (DCI.isBeforeLegalizeOps())
17616 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017617
Stuart Hastings865f0932011-06-03 23:53:54 +000017618 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17619 if (R.getNode())
17620 return R;
17621
Craig Topperb6ac30a2013-08-30 06:52:21 +000017622 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017623 // BLSI is X & (-X)
17624 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017625 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017626 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017627 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017628 SDValue N0 = N->getOperand(0);
17629 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017630 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017631
Craig Topperb6ac30a2013-08-30 06:52:21 +000017632 if (Subtarget->hasBMI()) {
17633 // Check LHS for neg
17634 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17635 isZero(N0.getOperand(0)))
17636 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017637
Craig Topperb6ac30a2013-08-30 06:52:21 +000017638 // Check RHS for neg
17639 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17640 isZero(N1.getOperand(0)))
17641 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017642
Craig Topperb6ac30a2013-08-30 06:52:21 +000017643 // Check LHS for X-1
17644 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17645 isAllOnes(N0.getOperand(1)))
17646 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017647
Craig Topperb6ac30a2013-08-30 06:52:21 +000017648 // Check RHS for X-1
17649 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17650 isAllOnes(N1.getOperand(1)))
17651 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17652 }
17653
17654 if (Subtarget->hasBMI2()) {
17655 // Check for (and (add (shl 1, Y), -1), X)
17656 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17657 SDValue N00 = N0.getOperand(0);
17658 if (N00.getOpcode() == ISD::SHL) {
17659 SDValue N001 = N00.getOperand(1);
17660 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17661 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17662 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017663 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017664 }
17665 }
17666
17667 // Check for (and X, (add (shl 1, Y), -1))
17668 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17669 SDValue N10 = N1.getOperand(0);
17670 if (N10.getOpcode() == ISD::SHL) {
17671 SDValue N101 = N10.getOperand(1);
17672 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17673 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17674 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017675 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017676 }
17677 }
17678 }
Craig Topperb4c94572011-10-21 06:55:01 +000017679
Craig Topperfafe4bb2013-10-03 04:16:45 +000017680 // Check for BEXTR.
17681 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17682 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17683 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17684 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17685 if (MaskNode && ShiftNode) {
17686 uint64_t Mask = MaskNode->getZExtValue();
17687 uint64_t Shift = ShiftNode->getZExtValue();
17688 if (isMask_64(Mask)) {
17689 uint64_t MaskSize = CountPopulation_64(Mask);
17690 if (Shift + MaskSize <= VT.getSizeInBits())
17691 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17692 DAG.getConstant(Shift | (MaskSize << 8), VT));
17693 }
17694 }
17695 } // BEXTR
17696
Craig Topper54a11172011-10-14 07:06:56 +000017697 return SDValue();
17698 }
17699
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017700 // Want to form ANDNP nodes:
17701 // 1) In the hopes of then easily combining them with OR and AND nodes
17702 // to form PBLEND/PSIGN.
17703 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017704 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017705 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017706
Nate Begemanb65c1752010-12-17 22:55:37 +000017707 SDValue N0 = N->getOperand(0);
17708 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017709 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017710
Nate Begemanb65c1752010-12-17 22:55:37 +000017711 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017712 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017713 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17714 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017715 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017716
17717 // Check RHS for vnot
17718 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017719 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17720 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017721 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017722
Nate Begemanb65c1752010-12-17 22:55:37 +000017723 return SDValue();
17724}
17725
Evan Cheng760d1942010-01-04 21:22:48 +000017726static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017727 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017728 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017729 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017730 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017731 return SDValue();
17732
Stuart Hastings865f0932011-06-03 23:53:54 +000017733 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17734 if (R.getNode())
17735 return R;
17736
Evan Cheng760d1942010-01-04 21:22:48 +000017737 SDValue N0 = N->getOperand(0);
17738 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017739
Nate Begemanb65c1752010-12-17 22:55:37 +000017740 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017741 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017742 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017743 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017744 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017745
Craig Topper1666cb62011-11-19 07:07:26 +000017746 // Canonicalize pandn to RHS
17747 if (N0.getOpcode() == X86ISD::ANDNP)
17748 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017749 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017750 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17751 SDValue Mask = N1.getOperand(0);
17752 SDValue X = N1.getOperand(1);
17753 SDValue Y;
17754 if (N0.getOperand(0) == Mask)
17755 Y = N0.getOperand(1);
17756 if (N0.getOperand(1) == Mask)
17757 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017758
Craig Topper1666cb62011-11-19 07:07:26 +000017759 // Check to see if the mask appeared in both the AND and ANDNP and
17760 if (!Y.getNode())
17761 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017762
Craig Topper1666cb62011-11-19 07:07:26 +000017763 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017764 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017765 if (Mask.getOpcode() == ISD::BITCAST)
17766 Mask = Mask.getOperand(0);
17767 if (X.getOpcode() == ISD::BITCAST)
17768 X = X.getOperand(0);
17769 if (Y.getOpcode() == ISD::BITCAST)
17770 Y = Y.getOperand(0);
17771
Craig Topper1666cb62011-11-19 07:07:26 +000017772 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017773
Craig Toppered2e13d2012-01-22 19:15:14 +000017774 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017775 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17776 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017777 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017778 unsigned SraAmt = ~0;
17779 if (Mask.getOpcode() == ISD::SRA) {
17780 SDValue Amt = Mask.getOperand(1);
17781 if (isSplatVector(Amt.getNode())) {
17782 SDValue SclrAmt = Amt->getOperand(0);
17783 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17784 SraAmt = C->getZExtValue();
17785 }
17786 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17787 SDValue SraC = Mask.getOperand(1);
17788 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17789 }
Craig Topper1666cb62011-11-19 07:07:26 +000017790 if ((SraAmt + 1) != EltBits)
17791 return SDValue();
17792
Andrew Trickac6d9be2013-05-25 02:42:55 +000017793 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017794
17795 // Now we know we at least have a plendvb with the mask val. See if
17796 // we can form a psignb/w/d.
17797 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017798 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17799 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017800 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17801 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17802 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017803 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017804 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017805 }
17806 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017807 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017808 return SDValue();
17809
17810 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17811
17812 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17813 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17814 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017815 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017816 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017817 }
17818 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017819
Craig Topper1666cb62011-11-19 07:07:26 +000017820 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17821 return SDValue();
17822
Nate Begemanb65c1752010-12-17 22:55:37 +000017823 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017824 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17825 std::swap(N0, N1);
17826 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17827 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017828 if (!N0.hasOneUse() || !N1.hasOneUse())
17829 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017830
17831 SDValue ShAmt0 = N0.getOperand(1);
17832 if (ShAmt0.getValueType() != MVT::i8)
17833 return SDValue();
17834 SDValue ShAmt1 = N1.getOperand(1);
17835 if (ShAmt1.getValueType() != MVT::i8)
17836 return SDValue();
17837 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17838 ShAmt0 = ShAmt0.getOperand(0);
17839 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17840 ShAmt1 = ShAmt1.getOperand(0);
17841
Andrew Trickac6d9be2013-05-25 02:42:55 +000017842 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017843 unsigned Opc = X86ISD::SHLD;
17844 SDValue Op0 = N0.getOperand(0);
17845 SDValue Op1 = N1.getOperand(0);
17846 if (ShAmt0.getOpcode() == ISD::SUB) {
17847 Opc = X86ISD::SHRD;
17848 std::swap(Op0, Op1);
17849 std::swap(ShAmt0, ShAmt1);
17850 }
17851
Evan Cheng8b1190a2010-04-28 01:18:01 +000017852 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017853 if (ShAmt1.getOpcode() == ISD::SUB) {
17854 SDValue Sum = ShAmt1.getOperand(0);
17855 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017856 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17857 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17858 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17859 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017860 return DAG.getNode(Opc, DL, VT,
17861 Op0, Op1,
17862 DAG.getNode(ISD::TRUNCATE, DL,
17863 MVT::i8, ShAmt0));
17864 }
17865 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17866 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17867 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017868 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017869 return DAG.getNode(Opc, DL, VT,
17870 N0.getOperand(0), N1.getOperand(0),
17871 DAG.getNode(ISD::TRUNCATE, DL,
17872 MVT::i8, ShAmt0));
17873 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017874
Evan Cheng760d1942010-01-04 21:22:48 +000017875 return SDValue();
17876}
17877
Manman Ren92363622012-06-07 22:39:10 +000017878// Generate NEG and CMOV for integer abs.
17879static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17880 EVT VT = N->getValueType(0);
17881
17882 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17883 // 8-bit integer abs to NEG and CMOV.
17884 if (VT.isInteger() && VT.getSizeInBits() == 8)
17885 return SDValue();
17886
17887 SDValue N0 = N->getOperand(0);
17888 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017889 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017890
17891 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17892 // and change it to SUB and CMOV.
17893 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17894 N0.getOpcode() == ISD::ADD &&
17895 N0.getOperand(1) == N1 &&
17896 N1.getOpcode() == ISD::SRA &&
17897 N1.getOperand(0) == N0.getOperand(0))
17898 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17899 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17900 // Generate SUB & CMOV.
17901 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17902 DAG.getConstant(0, VT), N0.getOperand(0));
17903
17904 SDValue Ops[] = { N0.getOperand(0), Neg,
17905 DAG.getConstant(X86::COND_GE, MVT::i8),
17906 SDValue(Neg.getNode(), 1) };
17907 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17908 Ops, array_lengthof(Ops));
17909 }
17910 return SDValue();
17911}
17912
Craig Topper3738ccd2011-12-27 06:27:23 +000017913// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017914static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17915 TargetLowering::DAGCombinerInfo &DCI,
17916 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017917 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017918 if (DCI.isBeforeLegalizeOps())
17919 return SDValue();
17920
Manman Ren45d53b82012-06-08 18:58:26 +000017921 if (Subtarget->hasCMov()) {
17922 SDValue RV = performIntegerAbsCombine(N, DAG);
17923 if (RV.getNode())
17924 return RV;
17925 }
Manman Ren92363622012-06-07 22:39:10 +000017926
17927 // Try forming BMI if it is available.
17928 if (!Subtarget->hasBMI())
17929 return SDValue();
17930
Craig Topperb4c94572011-10-21 06:55:01 +000017931 if (VT != MVT::i32 && VT != MVT::i64)
17932 return SDValue();
17933
Craig Topper3738ccd2011-12-27 06:27:23 +000017934 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17935
Craig Topperb4c94572011-10-21 06:55:01 +000017936 // Create BLSMSK instructions by finding X ^ (X-1)
17937 SDValue N0 = N->getOperand(0);
17938 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017939 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017940
17941 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17942 isAllOnes(N0.getOperand(1)))
17943 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17944
17945 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17946 isAllOnes(N1.getOperand(1)))
17947 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17948
17949 return SDValue();
17950}
17951
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017952/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17953static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017954 TargetLowering::DAGCombinerInfo &DCI,
17955 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017956 LoadSDNode *Ld = cast<LoadSDNode>(N);
17957 EVT RegVT = Ld->getValueType(0);
17958 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017959 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017960 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017961 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017962
Michael Liaod4584c92013-03-25 23:50:10 +000017963 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017964 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017965 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017966 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017967 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017968 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017969 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017970 if (NumElems < 2)
17971 return SDValue();
17972
Nadav Rotem48177ac2013-01-18 23:10:30 +000017973 SDValue Ptr = Ld->getBasePtr();
17974 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17975
17976 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17977 NumElems/2);
17978 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17979 Ld->getPointerInfo(), Ld->isVolatile(),
17980 Ld->isNonTemporal(), Ld->isInvariant(),
17981 Alignment);
17982 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17983 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17984 Ld->getPointerInfo(), Ld->isVolatile(),
17985 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017986 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017987 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17988 Load1.getValue(1),
17989 Load2.getValue(1));
17990
17991 SDValue NewVec = DAG.getUNDEF(RegVT);
17992 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17993 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17994 return DCI.CombineTo(N, NewVec, TF, true);
17995 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017996
Nadav Rotemca6f2962011-09-18 19:00:23 +000017997 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017998 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17999 // expansion is still better than scalar code.
18000 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18001 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018002 // TODO: It is possible to support ZExt by zeroing the undef values
18003 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000018004 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18005 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018006 assert(MemVT != RegVT && "Cannot extend to the same type");
18007 assert(MemVT.isVector() && "Must load a vector from memory");
18008
18009 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018010 unsigned MemSz = MemVT.getSizeInBits();
18011 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018012
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018013 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18014 return SDValue();
18015
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018016 // All sizes must be a power of two.
18017 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18018 return SDValue();
18019
18020 // Attempt to load the original value using scalar loads.
18021 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018022 MVT SclrLoadTy = MVT::i8;
18023 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18024 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18025 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018026 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018027 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018028 }
18029 }
18030
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018031 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18032 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18033 (64 <= MemSz))
18034 SclrLoadTy = MVT::f64;
18035
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018036 // Calculate the number of scalar loads that we need to perform
18037 // in order to load our vector from memory.
18038 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018039 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18040 return SDValue();
18041
18042 unsigned loadRegZize = RegSz;
18043 if (Ext == ISD::SEXTLOAD && RegSz == 256)
18044 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018045
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018046 // Represent our vector as a sequence of elements which are the
18047 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018048 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018049 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018050
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018051 // Represent the data using the same element type that is stored in
18052 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018053 EVT WideVecVT =
18054 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018055 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018056
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018057 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18058 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018059
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018060 // We can't shuffle using an illegal type.
18061 if (!TLI.isTypeLegal(WideVecVT))
18062 return SDValue();
18063
18064 SmallVector<SDValue, 8> Chains;
18065 SDValue Ptr = Ld->getBasePtr();
18066 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18067 TLI.getPointerTy());
18068 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18069
18070 for (unsigned i = 0; i < NumLoads; ++i) {
18071 // Perform a single load.
18072 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18073 Ptr, Ld->getPointerInfo(),
18074 Ld->isVolatile(), Ld->isNonTemporal(),
18075 Ld->isInvariant(), Ld->getAlignment());
18076 Chains.push_back(ScalarLoad.getValue(1));
18077 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18078 // another round of DAGCombining.
18079 if (i == 0)
18080 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18081 else
18082 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18083 ScalarLoad, DAG.getIntPtrConstant(i));
18084
18085 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18086 }
18087
18088 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18089 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018090
18091 // Bitcast the loaded value to a vector of the original element type, in
18092 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018093 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018094 unsigned SizeRatio = RegSz/MemSz;
18095
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018096 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018097 // If we have SSE4.1 we can directly emit a VSEXT node.
18098 if (Subtarget->hasSSE41()) {
18099 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18100 return DCI.CombineTo(N, Sext, TF, true);
18101 }
18102
18103 // Otherwise we'll shuffle the small elements in the high bits of the
18104 // larger type and perform an arithmetic shift. If the shift is not legal
18105 // it's better to scalarize.
18106 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18107 return SDValue();
18108
18109 // Redistribute the loaded elements into the different locations.
18110 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18111 for (unsigned i = 0; i != NumElems; ++i)
18112 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18113
18114 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18115 DAG.getUNDEF(WideVecVT),
18116 &ShuffleVec[0]);
18117
18118 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18119
18120 // Build the arithmetic shift.
18121 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18122 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018123 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18124 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018125
18126 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018127 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018128
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018129 // Redistribute the loaded elements into the different locations.
18130 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018131 for (unsigned i = 0; i != NumElems; ++i)
18132 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018133
18134 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018135 DAG.getUNDEF(WideVecVT),
18136 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018137
18138 // Bitcast to the requested type.
18139 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18140 // Replace the original load with the new sequence
18141 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018142 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018143 }
18144
18145 return SDValue();
18146}
18147
Chris Lattner149a4e52008-02-22 02:09:43 +000018148/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018149static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018150 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018151 StoreSDNode *St = cast<StoreSDNode>(N);
18152 EVT VT = St->getValue().getValueType();
18153 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018154 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018155 SDValue StoredVal = St->getOperand(1);
18156 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18157
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018158 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018159 // On Sandy Bridge, 256-bit memory operations are executed by two
18160 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18161 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018162 unsigned Alignment = St->getAlignment();
18163 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018164 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018165 StVT == VT && !IsAligned) {
18166 unsigned NumElems = VT.getVectorNumElements();
18167 if (NumElems < 2)
18168 return SDValue();
18169
18170 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18171 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018172
18173 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18174 SDValue Ptr0 = St->getBasePtr();
18175 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18176
18177 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18178 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018179 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018180 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18181 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018182 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018183 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018184 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18185 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018186
18187 // Optimize trunc store (of multiple scalars) to shuffle and store.
18188 // First, pack all of the elements in one place. Next, store to memory
18189 // in fewer chunks.
18190 if (St->isTruncatingStore() && VT.isVector()) {
18191 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18192 unsigned NumElems = VT.getVectorNumElements();
18193 assert(StVT != VT && "Cannot truncate to the same type");
18194 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18195 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18196
18197 // From, To sizes and ElemCount must be pow of two
18198 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018199 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018200 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018201 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018202
Nadav Rotem614061b2011-08-10 19:30:14 +000018203 unsigned SizeRatio = FromSz / ToSz;
18204
18205 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18206
18207 // Create a type on which we perform the shuffle
18208 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18209 StVT.getScalarType(), NumElems*SizeRatio);
18210
18211 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18212
18213 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18214 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018215 for (unsigned i = 0; i != NumElems; ++i)
18216 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018217
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018218 // Can't shuffle using an illegal type.
18219 if (!TLI.isTypeLegal(WideVecVT))
18220 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018221
18222 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018223 DAG.getUNDEF(WideVecVT),
18224 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018225 // At this point all of the data is stored at the bottom of the
18226 // register. We now need to save it to mem.
18227
18228 // Find the largest store unit
18229 MVT StoreType = MVT::i8;
18230 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18231 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18232 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018233 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018234 StoreType = Tp;
18235 }
18236
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018237 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18238 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18239 (64 <= NumElems * ToSz))
18240 StoreType = MVT::f64;
18241
Nadav Rotem614061b2011-08-10 19:30:14 +000018242 // Bitcast the original vector into a vector of store-size units
18243 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018244 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018245 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18246 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18247 SmallVector<SDValue, 8> Chains;
18248 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18249 TLI.getPointerTy());
18250 SDValue Ptr = St->getBasePtr();
18251
18252 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018253 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018254 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18255 StoreType, ShuffWide,
18256 DAG.getIntPtrConstant(i));
18257 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18258 St->getPointerInfo(), St->isVolatile(),
18259 St->isNonTemporal(), St->getAlignment());
18260 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18261 Chains.push_back(Ch);
18262 }
18263
18264 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18265 Chains.size());
18266 }
18267
Chris Lattner149a4e52008-02-22 02:09:43 +000018268 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18269 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018270 // A preferable solution to the general problem is to figure out the right
18271 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018272
18273 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018274 if (VT.getSizeInBits() != 64)
18275 return SDValue();
18276
Devang Patel578efa92009-06-05 21:57:13 +000018277 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018278 bool NoImplicitFloatOps = F->getAttributes().
18279 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018280 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018281 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018282 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018283 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018284 isa<LoadSDNode>(St->getValue()) &&
18285 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18286 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018287 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018288 LoadSDNode *Ld = 0;
18289 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018290 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018291 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018292 // Must be a store of a load. We currently handle two cases: the load
18293 // is a direct child, and it's under an intervening TokenFactor. It is
18294 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018295 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018296 Ld = cast<LoadSDNode>(St->getChain());
18297 else if (St->getValue().hasOneUse() &&
18298 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018299 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018300 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018301 TokenFactorIndex = i;
18302 Ld = cast<LoadSDNode>(St->getValue());
18303 } else
18304 Ops.push_back(ChainVal->getOperand(i));
18305 }
18306 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018307
Evan Cheng536e6672009-03-12 05:59:15 +000018308 if (!Ld || !ISD::isNormalLoad(Ld))
18309 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018310
Evan Cheng536e6672009-03-12 05:59:15 +000018311 // If this is not the MMX case, i.e. we are just turning i64 load/store
18312 // into f64 load/store, avoid the transformation if there are multiple
18313 // uses of the loaded value.
18314 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18315 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018316
Andrew Trickac6d9be2013-05-25 02:42:55 +000018317 SDLoc LdDL(Ld);
18318 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018319 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18320 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18321 // pair instead.
18322 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018323 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018324 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18325 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018326 Ld->isNonTemporal(), Ld->isInvariant(),
18327 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018328 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018329 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018330 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018331 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018332 Ops.size());
18333 }
Evan Cheng536e6672009-03-12 05:59:15 +000018334 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018335 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018336 St->isVolatile(), St->isNonTemporal(),
18337 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018338 }
Evan Cheng536e6672009-03-12 05:59:15 +000018339
18340 // Otherwise, lower to two pairs of 32-bit loads / stores.
18341 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018342 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18343 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018344
Owen Anderson825b72b2009-08-11 20:47:22 +000018345 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018346 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018347 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018348 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018349 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018350 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018351 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018352 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018353 MinAlign(Ld->getAlignment(), 4));
18354
18355 SDValue NewChain = LoLd.getValue(1);
18356 if (TokenFactorIndex != -1) {
18357 Ops.push_back(LoLd);
18358 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018359 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018360 Ops.size());
18361 }
18362
18363 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018364 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18365 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018366
18367 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018368 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018369 St->isVolatile(), St->isNonTemporal(),
18370 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018371 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018372 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018373 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018374 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018375 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018376 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018377 }
Dan Gohman475871a2008-07-27 21:46:04 +000018378 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018379}
18380
Duncan Sands17470be2011-09-22 20:15:48 +000018381/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18382/// and return the operands for the horizontal operation in LHS and RHS. A
18383/// horizontal operation performs the binary operation on successive elements
18384/// of its first operand, then on successive elements of its second operand,
18385/// returning the resulting values in a vector. For example, if
18386/// A = < float a0, float a1, float a2, float a3 >
18387/// and
18388/// B = < float b0, float b1, float b2, float b3 >
18389/// then the result of doing a horizontal operation on A and B is
18390/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18391/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18392/// A horizontal-op B, for some already available A and B, and if so then LHS is
18393/// set to A, RHS to B, and the routine returns 'true'.
18394/// Note that the binary operation should have the property that if one of the
18395/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018396static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018397 // Look for the following pattern: if
18398 // A = < float a0, float a1, float a2, float a3 >
18399 // B = < float b0, float b1, float b2, float b3 >
18400 // and
18401 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18402 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18403 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18404 // which is A horizontal-op B.
18405
18406 // At least one of the operands should be a vector shuffle.
18407 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18408 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18409 return false;
18410
Craig Topper5a0910b2013-08-15 02:33:50 +000018411 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018412
18413 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18414 "Unsupported vector type for horizontal add/sub");
18415
18416 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18417 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018418 unsigned NumElts = VT.getVectorNumElements();
18419 unsigned NumLanes = VT.getSizeInBits()/128;
18420 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018421 assert((NumLaneElts % 2 == 0) &&
18422 "Vector type should have an even number of elements in each lane");
18423 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018424
18425 // View LHS in the form
18426 // LHS = VECTOR_SHUFFLE A, B, LMask
18427 // If LHS is not a shuffle then pretend it is the shuffle
18428 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18429 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18430 // type VT.
18431 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018432 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018433 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18434 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18435 A = LHS.getOperand(0);
18436 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18437 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018438 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18439 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018440 } else {
18441 if (LHS.getOpcode() != ISD::UNDEF)
18442 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018443 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018444 LMask[i] = i;
18445 }
18446
18447 // Likewise, view RHS in the form
18448 // RHS = VECTOR_SHUFFLE C, D, RMask
18449 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018450 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018451 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18452 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18453 C = RHS.getOperand(0);
18454 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18455 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018456 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18457 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018458 } else {
18459 if (RHS.getOpcode() != ISD::UNDEF)
18460 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018461 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018462 RMask[i] = i;
18463 }
18464
18465 // Check that the shuffles are both shuffling the same vectors.
18466 if (!(A == C && B == D) && !(A == D && B == C))
18467 return false;
18468
18469 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18470 if (!A.getNode() && !B.getNode())
18471 return false;
18472
18473 // If A and B occur in reverse order in RHS, then "swap" them (which means
18474 // rewriting the mask).
18475 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018476 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018477
18478 // At this point LHS and RHS are equivalent to
18479 // LHS = VECTOR_SHUFFLE A, B, LMask
18480 // RHS = VECTOR_SHUFFLE A, B, RMask
18481 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018482 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18483 for (unsigned i = 0; i != NumLaneElts; ++i) {
18484 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018485
Craig Topper57bc5a02013-08-06 06:54:25 +000018486 // Ignore any UNDEF components.
18487 if (LIdx < 0 || RIdx < 0 ||
18488 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18489 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18490 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018491
Craig Topper57bc5a02013-08-06 06:54:25 +000018492 // Check that successive elements are being operated on. If not, this is
18493 // not a horizontal operation.
18494 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18495 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18496 if (!(LIdx == Index && RIdx == Index + 1) &&
18497 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18498 return false;
18499 }
Duncan Sands17470be2011-09-22 20:15:48 +000018500 }
18501
18502 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18503 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18504 return true;
18505}
18506
18507/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18508static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18509 const X86Subtarget *Subtarget) {
18510 EVT VT = N->getValueType(0);
18511 SDValue LHS = N->getOperand(0);
18512 SDValue RHS = N->getOperand(1);
18513
18514 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018515 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018516 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018517 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018518 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018519 return SDValue();
18520}
18521
18522/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18523static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18524 const X86Subtarget *Subtarget) {
18525 EVT VT = N->getValueType(0);
18526 SDValue LHS = N->getOperand(0);
18527 SDValue RHS = N->getOperand(1);
18528
18529 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018530 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018531 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018532 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018533 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018534 return SDValue();
18535}
18536
Chris Lattner6cf73262008-01-25 06:14:17 +000018537/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18538/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018539static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018540 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18541 // F[X]OR(0.0, x) -> x
18542 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018543 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18544 if (C->getValueAPF().isPosZero())
18545 return N->getOperand(1);
18546 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18547 if (C->getValueAPF().isPosZero())
18548 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018549 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018550}
18551
Nadav Rotemd60cb112012-08-19 13:06:16 +000018552/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18553/// X86ISD::FMAX nodes.
18554static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18555 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18556
18557 // Only perform optimizations if UnsafeMath is used.
18558 if (!DAG.getTarget().Options.UnsafeFPMath)
18559 return SDValue();
18560
18561 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018562 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018563 unsigned NewOp = 0;
18564 switch (N->getOpcode()) {
18565 default: llvm_unreachable("unknown opcode");
18566 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18567 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18568 }
18569
Andrew Trickac6d9be2013-05-25 02:42:55 +000018570 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018571 N->getOperand(0), N->getOperand(1));
18572}
18573
Chris Lattneraf723b92008-01-25 05:46:26 +000018574/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018575static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018576 // FAND(0.0, x) -> 0.0
18577 // FAND(x, 0.0) -> 0.0
18578 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18579 if (C->getValueAPF().isPosZero())
18580 return N->getOperand(0);
18581 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18582 if (C->getValueAPF().isPosZero())
18583 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018584 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018585}
18586
Benjamin Kramer75311b72013-08-04 12:05:16 +000018587/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18588static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18589 // FANDN(x, 0.0) -> 0.0
18590 // FANDN(0.0, x) -> x
18591 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18592 if (C->getValueAPF().isPosZero())
18593 return N->getOperand(1);
18594 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18595 if (C->getValueAPF().isPosZero())
18596 return N->getOperand(1);
18597 return SDValue();
18598}
18599
Dan Gohmane5af2d32009-01-29 01:59:02 +000018600static SDValue PerformBTCombine(SDNode *N,
18601 SelectionDAG &DAG,
18602 TargetLowering::DAGCombinerInfo &DCI) {
18603 // BT ignores high bits in the bit index operand.
18604 SDValue Op1 = N->getOperand(1);
18605 if (Op1.hasOneUse()) {
18606 unsigned BitWidth = Op1.getValueSizeInBits();
18607 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18608 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018609 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18610 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018611 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018612 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18613 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18614 DCI.CommitTargetLoweringOpt(TLO);
18615 }
18616 return SDValue();
18617}
Chris Lattner83e6c992006-10-04 06:57:07 +000018618
Eli Friedman7a5e5552009-06-07 06:52:44 +000018619static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18620 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018621 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018622 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018623 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018624 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018625 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018626 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018627 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018628 }
18629 return SDValue();
18630}
18631
Matt Arsenault225ed702013-05-18 00:21:46 +000018632static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018633 const X86Subtarget *Subtarget) {
18634 EVT VT = N->getValueType(0);
18635 if (!VT.isVector())
18636 return SDValue();
18637
18638 SDValue N0 = N->getOperand(0);
18639 SDValue N1 = N->getOperand(1);
18640 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018641 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018642
18643 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18644 // both SSE and AVX2 since there is no sign-extended shift right
18645 // operation on a vector with 64-bit elements.
18646 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18647 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18648 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18649 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18650 SDValue N00 = N0.getOperand(0);
18651
Matt Arsenault225ed702013-05-18 00:21:46 +000018652 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018653 // it may be replaced with X86ISD::VSEXT node.
18654 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18655 if (!ISD::isNormalLoad(N00.getNode()))
18656 return SDValue();
18657
18658 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018659 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018660 N00, N1);
18661 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18662 }
18663 }
18664 return SDValue();
18665}
18666
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018667static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18668 TargetLowering::DAGCombinerInfo &DCI,
18669 const X86Subtarget *Subtarget) {
18670 if (!DCI.isBeforeLegalizeOps())
18671 return SDValue();
18672
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018673 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018674 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018675
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018676 EVT VT = N->getValueType(0);
18677 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018678 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18679 if (R.getNode())
18680 return R;
18681 }
18682
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018683 return SDValue();
18684}
18685
Michael Liaof6c24ee2012-08-10 14:39:24 +000018686static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018687 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018688 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018689 EVT VT = N->getValueType(0);
18690
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018691 // Let legalize expand this if it isn't a legal type yet.
18692 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18693 return SDValue();
18694
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018695 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018696 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18697 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018698 return SDValue();
18699
18700 SDValue A = N->getOperand(0);
18701 SDValue B = N->getOperand(1);
18702 SDValue C = N->getOperand(2);
18703
18704 bool NegA = (A.getOpcode() == ISD::FNEG);
18705 bool NegB = (B.getOpcode() == ISD::FNEG);
18706 bool NegC = (C.getOpcode() == ISD::FNEG);
18707
Michael Liaof6c24ee2012-08-10 14:39:24 +000018708 // Negative multiplication when NegA xor NegB
18709 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018710 if (NegA)
18711 A = A.getOperand(0);
18712 if (NegB)
18713 B = B.getOperand(0);
18714 if (NegC)
18715 C = C.getOperand(0);
18716
18717 unsigned Opcode;
18718 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018719 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018720 else
Craig Topperbf404372012-08-31 15:40:30 +000018721 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18722
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018723 return DAG.getNode(Opcode, dl, VT, A, B, C);
18724}
18725
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018726static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018727 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018728 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018729 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18730 // (and (i32 x86isd::setcc_carry), 1)
18731 // This eliminates the zext. This transformation is necessary because
18732 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018733 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018734 SDValue N0 = N->getOperand(0);
18735 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018736
Evan Cheng2e489c42009-12-16 00:53:11 +000018737 if (N0.getOpcode() == ISD::AND &&
18738 N0.hasOneUse() &&
18739 N0.getOperand(0).hasOneUse()) {
18740 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018741 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18742 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18743 if (!C || C->getZExtValue() != 1)
18744 return SDValue();
18745 return DAG.getNode(ISD::AND, dl, VT,
18746 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18747 N00.getOperand(0), N00.getOperand(1)),
18748 DAG.getConstant(1, VT));
18749 }
18750 }
18751
Craig Topper5a529e42013-01-18 06:44:29 +000018752 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018753 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18754 if (R.getNode())
18755 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018756 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018757
Evan Cheng2e489c42009-12-16 00:53:11 +000018758 return SDValue();
18759}
18760
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018761// Optimize x == -y --> x+y == 0
18762// x != -y --> x+y != 0
18763static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18764 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18765 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018766 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018767
18768 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18769 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18770 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018771 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018772 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018773 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018774 addV, DAG.getConstant(0, addV.getValueType()), CC);
18775 }
18776 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18777 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18778 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018779 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018780 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018781 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018782 addV, DAG.getConstant(0, addV.getValueType()), CC);
18783 }
18784 return SDValue();
18785}
18786
Eric Christophere187e252013-01-31 00:50:48 +000018787// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18788// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018789// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018790static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018791 return DAG.getNode(ISD::AND, DL, MVT::i8,
18792 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18793 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18794 DAG.getConstant(1, MVT::i8));
18795}
18796
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018797// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018798static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18799 TargetLowering::DAGCombinerInfo &DCI,
18800 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018801 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018802 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18803 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018804
Shuxin Yanga5526a92012-10-31 23:11:48 +000018805 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018806 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018807 // materializing "setb reg".
18808 //
18809 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18810 // cannot take an immediate as its first operand.
18811 //
Eric Christophere187e252013-01-31 00:50:48 +000018812 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018813 EFLAGS.getValueType().isInteger() &&
18814 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018815 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018816 EFLAGS.getNode()->getVTList(),
18817 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18818 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18819 return MaterializeSETB(DL, NewEFLAGS, DAG);
18820 }
18821 }
18822
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018823 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18824 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18825 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018826 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018827 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018828
Michael Liao2a33cec2012-08-10 19:58:13 +000018829 SDValue Flags;
18830
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018831 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18832 if (Flags.getNode()) {
18833 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18834 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18835 }
18836
Michael Liao2a33cec2012-08-10 19:58:13 +000018837 return SDValue();
18838}
18839
18840// Optimize branch condition evaluation.
18841//
18842static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18843 TargetLowering::DAGCombinerInfo &DCI,
18844 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018845 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018846 SDValue Chain = N->getOperand(0);
18847 SDValue Dest = N->getOperand(1);
18848 SDValue EFLAGS = N->getOperand(3);
18849 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18850
18851 SDValue Flags;
18852
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018853 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18854 if (Flags.getNode()) {
18855 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18856 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18857 Flags);
18858 }
18859
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018860 return SDValue();
18861}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018862
Benjamin Kramer1396c402011-06-18 11:09:41 +000018863static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18864 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018865 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018866 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018867
18868 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018869 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018870 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018871 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018872 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18873 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18874 }
18875
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018876 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18877 // a 32-bit target where SSE doesn't support i64->FP operations.
18878 if (Op0.getOpcode() == ISD::LOAD) {
18879 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18880 EVT VT = Ld->getValueType(0);
18881 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18882 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18883 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018884 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018885 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18886 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018887 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18888 return FILDChain;
18889 }
18890 }
18891 return SDValue();
18892}
18893
Chris Lattner23a01992010-12-20 01:37:09 +000018894// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18895static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18896 X86TargetLowering::DAGCombinerInfo &DCI) {
18897 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18898 // the result is either zero or one (depending on the input carry bit).
18899 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18900 if (X86::isZeroNode(N->getOperand(0)) &&
18901 X86::isZeroNode(N->getOperand(1)) &&
18902 // We don't have a good way to replace an EFLAGS use, so only do this when
18903 // dead right now.
18904 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018905 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018906 EVT VT = N->getValueType(0);
18907 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18908 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18909 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18910 DAG.getConstant(X86::COND_B,MVT::i8),
18911 N->getOperand(2)),
18912 DAG.getConstant(1, VT));
18913 return DCI.CombineTo(N, Res1, CarryOut);
18914 }
18915
18916 return SDValue();
18917}
18918
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018919// fold (add Y, (sete X, 0)) -> adc 0, Y
18920// (add Y, (setne X, 0)) -> sbb -1, Y
18921// (sub (sete X, 0), Y) -> sbb 0, Y
18922// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018923static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018924 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018925
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018926 // Look through ZExts.
18927 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18928 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18929 return SDValue();
18930
18931 SDValue SetCC = Ext.getOperand(0);
18932 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18933 return SDValue();
18934
18935 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18936 if (CC != X86::COND_E && CC != X86::COND_NE)
18937 return SDValue();
18938
18939 SDValue Cmp = SetCC.getOperand(1);
18940 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018941 !X86::isZeroNode(Cmp.getOperand(1)) ||
18942 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018943 return SDValue();
18944
18945 SDValue CmpOp0 = Cmp.getOperand(0);
18946 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18947 DAG.getConstant(1, CmpOp0.getValueType()));
18948
18949 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18950 if (CC == X86::COND_NE)
18951 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18952 DL, OtherVal.getValueType(), OtherVal,
18953 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18954 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18955 DL, OtherVal.getValueType(), OtherVal,
18956 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18957}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018958
Craig Topper54f952a2011-11-19 09:02:40 +000018959/// PerformADDCombine - Do target-specific dag combines on integer adds.
18960static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18961 const X86Subtarget *Subtarget) {
18962 EVT VT = N->getValueType(0);
18963 SDValue Op0 = N->getOperand(0);
18964 SDValue Op1 = N->getOperand(1);
18965
18966 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018967 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018968 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018969 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018970 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018971
18972 return OptimizeConditionalInDecrement(N, DAG);
18973}
18974
18975static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18976 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018977 SDValue Op0 = N->getOperand(0);
18978 SDValue Op1 = N->getOperand(1);
18979
18980 // X86 can't encode an immediate LHS of a sub. See if we can push the
18981 // negation into a preceding instruction.
18982 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018983 // If the RHS of the sub is a XOR with one use and a constant, invert the
18984 // immediate. Then add one to the LHS of the sub so we can turn
18985 // X-Y -> X+~Y+1, saving one register.
18986 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18987 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018988 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018989 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018990 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018991 Op1.getOperand(0),
18992 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018993 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018994 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018995 }
18996 }
18997
Craig Topper54f952a2011-11-19 09:02:40 +000018998 // Try to synthesize horizontal adds from adds of shuffles.
18999 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000019000 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019001 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000019002 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000019003 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000019004
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019005 return OptimizeConditionalInDecrement(N, DAG);
19006}
19007
Michael Liaod9d09602012-10-23 17:34:00 +000019008/// performVZEXTCombine - Performs build vector combines
19009static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19010 TargetLowering::DAGCombinerInfo &DCI,
19011 const X86Subtarget *Subtarget) {
19012 // (vzext (bitcast (vzext (x)) -> (vzext x)
19013 SDValue In = N->getOperand(0);
19014 while (In.getOpcode() == ISD::BITCAST)
19015 In = In.getOperand(0);
19016
19017 if (In.getOpcode() != X86ISD::VZEXT)
19018 return SDValue();
19019
Andrew Trickac6d9be2013-05-25 02:42:55 +000019020 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000019021 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000019022}
19023
Dan Gohman475871a2008-07-27 21:46:04 +000019024SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000019025 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000019026 SelectionDAG &DAG = DCI.DAG;
19027 switch (N->getOpcode()) {
19028 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000019029 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000019030 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000019031 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000019032 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019033 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000019034 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
19035 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000019036 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000019037 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000019038 case ISD::SHL:
19039 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000019040 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000019041 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000019042 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000019043 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000019044 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019045 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019046 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019047 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19048 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019049 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019050 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019051 case X86ISD::FMIN:
19052 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019053 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019054 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019055 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019056 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019057 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019058 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019059 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019060 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019061 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019062 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019063 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019064 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019065 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019066 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019067 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019068 case X86ISD::UNPCKH:
19069 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019070 case X86ISD::MOVHLPS:
19071 case X86ISD::MOVLHPS:
19072 case X86ISD::PSHUFD:
19073 case X86ISD::PSHUFHW:
19074 case X86ISD::PSHUFLW:
19075 case X86ISD::MOVSS:
19076 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019077 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019078 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019079 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Jim Grosbach49af3802013-10-17 02:58:06 +000019080 case ISD::CONCAT_VECTORS: return PerformConcatCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019081 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019082 }
19083
Dan Gohman475871a2008-07-27 21:46:04 +000019084 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019085}
19086
Evan Chenge5b51ac2010-04-17 06:13:15 +000019087/// isTypeDesirableForOp - Return true if the target has native support for
19088/// the specified value type and it is 'desirable' to use the type for the
19089/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19090/// instruction encodings are longer and some i16 instructions are slow.
19091bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19092 if (!isTypeLegal(VT))
19093 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019094 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019095 return true;
19096
19097 switch (Opc) {
19098 default:
19099 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019100 case ISD::LOAD:
19101 case ISD::SIGN_EXTEND:
19102 case ISD::ZERO_EXTEND:
19103 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019104 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019105 case ISD::SRL:
19106 case ISD::SUB:
19107 case ISD::ADD:
19108 case ISD::MUL:
19109 case ISD::AND:
19110 case ISD::OR:
19111 case ISD::XOR:
19112 return false;
19113 }
19114}
19115
19116/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019117/// beneficial for dag combiner to promote the specified node. If true, it
19118/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019119bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019120 EVT VT = Op.getValueType();
19121 if (VT != MVT::i16)
19122 return false;
19123
Evan Cheng4c26e932010-04-19 19:29:22 +000019124 bool Promote = false;
19125 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019126 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019127 default: break;
19128 case ISD::LOAD: {
19129 LoadSDNode *LD = cast<LoadSDNode>(Op);
19130 // If the non-extending load has a single use and it's not live out, then it
19131 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019132 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19133 Op.hasOneUse()*/) {
19134 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19135 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19136 // The only case where we'd want to promote LOAD (rather then it being
19137 // promoted as an operand is when it's only use is liveout.
19138 if (UI->getOpcode() != ISD::CopyToReg)
19139 return false;
19140 }
19141 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019142 Promote = true;
19143 break;
19144 }
19145 case ISD::SIGN_EXTEND:
19146 case ISD::ZERO_EXTEND:
19147 case ISD::ANY_EXTEND:
19148 Promote = true;
19149 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019150 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019151 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019152 SDValue N0 = Op.getOperand(0);
19153 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019154 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019155 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019156 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019157 break;
19158 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019159 case ISD::ADD:
19160 case ISD::MUL:
19161 case ISD::AND:
19162 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019163 case ISD::XOR:
19164 Commute = true;
19165 // fallthrough
19166 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019167 SDValue N0 = Op.getOperand(0);
19168 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019169 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019170 return false;
19171 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019172 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019173 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019174 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019175 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019176 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019177 }
19178 }
19179
19180 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019181 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019182}
19183
Evan Cheng60c07e12006-07-05 22:17:51 +000019184//===----------------------------------------------------------------------===//
19185// X86 Inline Assembly Support
19186//===----------------------------------------------------------------------===//
19187
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019188namespace {
19189 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019190 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019191 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019192
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019193 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019194 StringRef piece(*args[i]);
19195 if (!s.startswith(piece)) // Check if the piece matches.
19196 return false;
19197
19198 s = s.substr(piece.size());
19199 StringRef::size_type pos = s.find_first_not_of(" \t");
19200 if (pos == 0) // We matched a prefix.
19201 return false;
19202
19203 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019204 }
19205
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019206 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019207 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019208 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019209}
19210
Chris Lattnerb8105652009-07-20 17:51:36 +000019211bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19212 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019213
19214 std::string AsmStr = IA->getAsmString();
19215
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019216 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19217 if (!Ty || Ty->getBitWidth() % 16 != 0)
19218 return false;
19219
Chris Lattnerb8105652009-07-20 17:51:36 +000019220 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019221 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019222 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019223
19224 switch (AsmPieces.size()) {
19225 default: return false;
19226 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019227 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019228 // we will turn this bswap into something that will be lowered to logical
19229 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19230 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019231 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019232 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19233 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19234 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19235 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19236 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19237 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019238 // No need to check constraints, nothing other than the equivalent of
19239 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019240 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019241 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019242
Chris Lattnerb8105652009-07-20 17:51:36 +000019243 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019244 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019245 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019246 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19247 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019248 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019249 const std::string &ConstraintsStr = IA->getConstraintString();
19250 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019251 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000019252 if (AsmPieces.size() == 4 &&
19253 AsmPieces[0] == "~{cc}" &&
19254 AsmPieces[1] == "~{dirflag}" &&
19255 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019256 AsmPieces[3] == "~{fpsr}")
19257 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019258 }
19259 break;
19260 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019261 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019262 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019263 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19264 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19265 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019266 AsmPieces.clear();
19267 const std::string &ConstraintsStr = IA->getConstraintString();
19268 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019269 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019270 if (AsmPieces.size() == 4 &&
19271 AsmPieces[0] == "~{cc}" &&
19272 AsmPieces[1] == "~{dirflag}" &&
19273 AsmPieces[2] == "~{flags}" &&
19274 AsmPieces[3] == "~{fpsr}")
19275 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019276 }
Evan Cheng55d42002011-01-08 01:24:27 +000019277
19278 if (CI->getType()->isIntegerTy(64)) {
19279 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19280 if (Constraints.size() >= 2 &&
19281 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19282 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19283 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019284 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19285 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19286 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019287 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019288 }
19289 }
19290 break;
19291 }
19292 return false;
19293}
19294
Chris Lattnerf4dff842006-07-11 02:54:03 +000019295/// getConstraintType - Given a constraint letter, return the type of
19296/// constraint it is for this target.
19297X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019298X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19299 if (Constraint.size() == 1) {
19300 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019301 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019302 case 'q':
19303 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019304 case 'f':
19305 case 't':
19306 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019307 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019308 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019309 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019310 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019311 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019312 case 'a':
19313 case 'b':
19314 case 'c':
19315 case 'd':
19316 case 'S':
19317 case 'D':
19318 case 'A':
19319 return C_Register;
19320 case 'I':
19321 case 'J':
19322 case 'K':
19323 case 'L':
19324 case 'M':
19325 case 'N':
19326 case 'G':
19327 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019328 case 'e':
19329 case 'Z':
19330 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019331 default:
19332 break;
19333 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019334 }
Chris Lattner4234f572007-03-25 02:14:49 +000019335 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019336}
19337
John Thompson44ab89e2010-10-29 17:29:13 +000019338/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019339/// This object must already have been set up with the operand type
19340/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019341TargetLowering::ConstraintWeight
19342 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019343 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019344 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019345 Value *CallOperandVal = info.CallOperandVal;
19346 // If we don't have a value, we can't do a match,
19347 // but allow it at the lowest weight.
19348 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019349 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019350 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019351 // Look at the constraint type.
19352 switch (*constraint) {
19353 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019354 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19355 case 'R':
19356 case 'q':
19357 case 'Q':
19358 case 'a':
19359 case 'b':
19360 case 'c':
19361 case 'd':
19362 case 'S':
19363 case 'D':
19364 case 'A':
19365 if (CallOperandVal->getType()->isIntegerTy())
19366 weight = CW_SpecificReg;
19367 break;
19368 case 'f':
19369 case 't':
19370 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019371 if (type->isFloatingPointTy())
19372 weight = CW_SpecificReg;
19373 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019374 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019375 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19376 weight = CW_SpecificReg;
19377 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019378 case 'x':
19379 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019380 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019381 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019382 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019383 break;
19384 case 'I':
19385 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19386 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019387 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019388 }
19389 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019390 case 'J':
19391 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19392 if (C->getZExtValue() <= 63)
19393 weight = CW_Constant;
19394 }
19395 break;
19396 case 'K':
19397 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19398 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19399 weight = CW_Constant;
19400 }
19401 break;
19402 case 'L':
19403 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19404 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19405 weight = CW_Constant;
19406 }
19407 break;
19408 case 'M':
19409 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19410 if (C->getZExtValue() <= 3)
19411 weight = CW_Constant;
19412 }
19413 break;
19414 case 'N':
19415 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19416 if (C->getZExtValue() <= 0xff)
19417 weight = CW_Constant;
19418 }
19419 break;
19420 case 'G':
19421 case 'C':
19422 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19423 weight = CW_Constant;
19424 }
19425 break;
19426 case 'e':
19427 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19428 if ((C->getSExtValue() >= -0x80000000LL) &&
19429 (C->getSExtValue() <= 0x7fffffffLL))
19430 weight = CW_Constant;
19431 }
19432 break;
19433 case 'Z':
19434 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19435 if (C->getZExtValue() <= 0xffffffff)
19436 weight = CW_Constant;
19437 }
19438 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019439 }
19440 return weight;
19441}
19442
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019443/// LowerXConstraint - try to replace an X constraint, which matches anything,
19444/// with another that has more specific requirements based on the type of the
19445/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019446const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019447LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019448 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19449 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019450 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019451 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019452 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019453 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019454 return "x";
19455 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019456
Chris Lattner5e764232008-04-26 23:02:14 +000019457 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019458}
19459
Chris Lattner48884cd2007-08-25 00:47:38 +000019460/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19461/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019462void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019463 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019464 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019465 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019466 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019467
Eric Christopher100c8332011-06-02 23:16:42 +000019468 // Only support length 1 constraints for now.
19469 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019470
Eric Christopher100c8332011-06-02 23:16:42 +000019471 char ConstraintLetter = Constraint[0];
19472 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019473 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019474 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019475 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019476 if (C->getZExtValue() <= 31) {
19477 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019478 break;
19479 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019480 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019481 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019482 case 'J':
19483 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019484 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019485 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19486 break;
19487 }
19488 }
19489 return;
19490 case 'K':
19491 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019492 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019493 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19494 break;
19495 }
19496 }
19497 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019498 case 'N':
19499 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019500 if (C->getZExtValue() <= 255) {
19501 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019502 break;
19503 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019504 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019505 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019506 case 'e': {
19507 // 32-bit signed value
19508 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019509 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19510 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019511 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019512 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019513 break;
19514 }
19515 // FIXME gcc accepts some relocatable values here too, but only in certain
19516 // memory models; it's complicated.
19517 }
19518 return;
19519 }
19520 case 'Z': {
19521 // 32-bit unsigned value
19522 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019523 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19524 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019525 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19526 break;
19527 }
19528 }
19529 // FIXME gcc accepts some relocatable values here too, but only in certain
19530 // memory models; it's complicated.
19531 return;
19532 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019533 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019534 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019535 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019536 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019537 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019538 break;
19539 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019540
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019541 // In any sort of PIC mode addresses need to be computed at runtime by
19542 // adding in a register or some sort of table lookup. These can't
19543 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019544 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019545 return;
19546
Chris Lattnerdc43a882007-05-03 16:52:29 +000019547 // If we are in non-pic codegen mode, we allow the address of a global (with
19548 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019549 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019550 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019551
Chris Lattner49921962009-05-08 18:23:14 +000019552 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19553 while (1) {
19554 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19555 Offset += GA->getOffset();
19556 break;
19557 } else if (Op.getOpcode() == ISD::ADD) {
19558 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19559 Offset += C->getZExtValue();
19560 Op = Op.getOperand(0);
19561 continue;
19562 }
19563 } else if (Op.getOpcode() == ISD::SUB) {
19564 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19565 Offset += -C->getZExtValue();
19566 Op = Op.getOperand(0);
19567 continue;
19568 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019569 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019570
Chris Lattner49921962009-05-08 18:23:14 +000019571 // Otherwise, this isn't something we can handle, reject it.
19572 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019573 }
Eric Christopherfd179292009-08-27 18:07:15 +000019574
Dan Gohman46510a72010-04-15 01:51:59 +000019575 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019576 // If we require an extra load to get this address, as in PIC mode, we
19577 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019578 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19579 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019580 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019581
Andrew Trickac6d9be2013-05-25 02:42:55 +000019582 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019583 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019584 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019585 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019586 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019587
Gabor Greifba36cb52008-08-28 21:40:38 +000019588 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019589 Ops.push_back(Result);
19590 return;
19591 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019592 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019593}
19594
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019595std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019596X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019597 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019598 // First, see if this is a constraint that directly corresponds to an LLVM
19599 // register class.
19600 if (Constraint.size() == 1) {
19601 // GCC Constraint Letters
19602 switch (Constraint[0]) {
19603 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019604 // TODO: Slight differences here in allocation order and leaving
19605 // RIP in the class. Do they matter any more here than they do
19606 // in the normal allocation?
19607 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19608 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019609 if (VT == MVT::i32 || VT == MVT::f32)
19610 return std::make_pair(0U, &X86::GR32RegClass);
19611 if (VT == MVT::i16)
19612 return std::make_pair(0U, &X86::GR16RegClass);
19613 if (VT == MVT::i8 || VT == MVT::i1)
19614 return std::make_pair(0U, &X86::GR8RegClass);
19615 if (VT == MVT::i64 || VT == MVT::f64)
19616 return std::make_pair(0U, &X86::GR64RegClass);
19617 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019618 }
19619 // 32-bit fallthrough
19620 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019621 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019622 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19623 if (VT == MVT::i16)
19624 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19625 if (VT == MVT::i8 || VT == MVT::i1)
19626 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19627 if (VT == MVT::i64)
19628 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019629 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019630 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019631 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019632 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019633 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019634 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019635 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019636 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019637 return std::make_pair(0U, &X86::GR32RegClass);
19638 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019639 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019640 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019641 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019642 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019643 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019644 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019645 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19646 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019647 case 'f': // FP Stack registers.
19648 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19649 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019650 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019651 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019652 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019653 return std::make_pair(0U, &X86::RFP64RegClass);
19654 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019655 case 'y': // MMX_REGS if MMX allowed.
19656 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019657 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019658 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019659 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019660 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019661 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019662 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019663
Chad Rosier5b3fca52013-06-22 18:37:38 +000019664 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019665 default: break;
19666 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019667 case MVT::f32:
19668 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019669 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019670 case MVT::f64:
19671 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019672 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019673 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019674 case MVT::v16i8:
19675 case MVT::v8i16:
19676 case MVT::v4i32:
19677 case MVT::v2i64:
19678 case MVT::v4f32:
19679 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019680 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019681 // AVX types.
19682 case MVT::v32i8:
19683 case MVT::v16i16:
19684 case MVT::v8i32:
19685 case MVT::v4i64:
19686 case MVT::v8f32:
19687 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019688 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019689 case MVT::v8f64:
19690 case MVT::v16f32:
19691 case MVT::v16i32:
19692 case MVT::v8i64:
19693 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019694 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019695 break;
19696 }
19697 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019698
Chris Lattnerf76d1802006-07-31 23:26:50 +000019699 // Use the default implementation in TargetLowering to convert the register
19700 // constraint into a member of a register class.
19701 std::pair<unsigned, const TargetRegisterClass*> Res;
19702 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019703
19704 // Not found as a standard register?
19705 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019706 // Map st(0) -> st(7) -> ST0
19707 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19708 tolower(Constraint[1]) == 's' &&
19709 tolower(Constraint[2]) == 't' &&
19710 Constraint[3] == '(' &&
19711 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19712 Constraint[5] == ')' &&
19713 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019714
Chris Lattner56d77c72009-09-13 22:41:48 +000019715 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019716 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019717 return Res;
19718 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019719
Chris Lattner56d77c72009-09-13 22:41:48 +000019720 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019721 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019722 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019723 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019724 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019725 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019726
19727 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019728 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019729 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019730 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019731 return Res;
19732 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019733
Dale Johannesen330169f2008-11-13 21:52:36 +000019734 // 'A' means EAX + EDX.
19735 if (Constraint == "A") {
19736 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019737 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019738 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019739 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019740 return Res;
19741 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019742
Chris Lattnerf76d1802006-07-31 23:26:50 +000019743 // Otherwise, check to see if this is a register class of the wrong value
19744 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19745 // turn into {ax},{dx}.
19746 if (Res.second->hasType(VT))
19747 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019748
Chris Lattnerf76d1802006-07-31 23:26:50 +000019749 // All of the single-register GCC register classes map their values onto
19750 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19751 // really want an 8-bit or 32-bit register, map to the appropriate register
19752 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019753 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019754 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019755 unsigned DestReg = 0;
19756 switch (Res.first) {
19757 default: break;
19758 case X86::AX: DestReg = X86::AL; break;
19759 case X86::DX: DestReg = X86::DL; break;
19760 case X86::CX: DestReg = X86::CL; break;
19761 case X86::BX: DestReg = X86::BL; break;
19762 }
19763 if (DestReg) {
19764 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019765 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019766 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019767 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019768 unsigned DestReg = 0;
19769 switch (Res.first) {
19770 default: break;
19771 case X86::AX: DestReg = X86::EAX; break;
19772 case X86::DX: DestReg = X86::EDX; break;
19773 case X86::CX: DestReg = X86::ECX; break;
19774 case X86::BX: DestReg = X86::EBX; break;
19775 case X86::SI: DestReg = X86::ESI; break;
19776 case X86::DI: DestReg = X86::EDI; break;
19777 case X86::BP: DestReg = X86::EBP; break;
19778 case X86::SP: DestReg = X86::ESP; break;
19779 }
19780 if (DestReg) {
19781 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019782 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019783 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019784 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019785 unsigned DestReg = 0;
19786 switch (Res.first) {
19787 default: break;
19788 case X86::AX: DestReg = X86::RAX; break;
19789 case X86::DX: DestReg = X86::RDX; break;
19790 case X86::CX: DestReg = X86::RCX; break;
19791 case X86::BX: DestReg = X86::RBX; break;
19792 case X86::SI: DestReg = X86::RSI; break;
19793 case X86::DI: DestReg = X86::RDI; break;
19794 case X86::BP: DestReg = X86::RBP; break;
19795 case X86::SP: DestReg = X86::RSP; break;
19796 }
19797 if (DestReg) {
19798 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019799 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019800 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019801 }
Craig Topperc9099502012-04-20 06:31:50 +000019802 } else if (Res.second == &X86::FR32RegClass ||
19803 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019804 Res.second == &X86::VR128RegClass ||
19805 Res.second == &X86::VR256RegClass ||
19806 Res.second == &X86::FR32XRegClass ||
19807 Res.second == &X86::FR64XRegClass ||
19808 Res.second == &X86::VR128XRegClass ||
19809 Res.second == &X86::VR256XRegClass ||
19810 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019811 // Handle references to XMM physical registers that got mapped into the
19812 // wrong class. This can happen with constraints like {xmm0} where the
19813 // target independent register mapper will just pick the first match it can
19814 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019815
19816 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019817 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019818 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019819 Res.second = &X86::FR64RegClass;
19820 else if (X86::VR128RegClass.hasType(VT))
19821 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019822 else if (X86::VR256RegClass.hasType(VT))
19823 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019824 else if (X86::VR512RegClass.hasType(VT))
19825 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019826 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019827
Chris Lattnerf76d1802006-07-31 23:26:50 +000019828 return Res;
19829}