blob: e8918f4c34d2ce05ab6c9d6113cdc6113036e060 [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
634 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635 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::TRUNCATE, MVT::v8i16, Custom);
Nadav Rotem3c22a442012-12-27 07:45:10 +00001154 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Michael Liaobedcbd42012-10-16 18:14:11 +00001155
1156 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1157
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001158 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
Benjamin Kramerb8f0d892013-03-31 12:49:15 +00001159 setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001160 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001161 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001162
Michael Liaoa7554632012-10-23 17:36:08 +00001163 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1164 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1165 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1166
Michael Liaob8150d82012-09-10 18:33:51 +00001167 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1168
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001169 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1170 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1171
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001172 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1173 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1174
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001175 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001176 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001177
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001178 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1179
Duncan Sands28b77e92011-09-06 19:07:46 +00001180 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1181 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1182 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1183 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001184
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001185 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1186 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1187 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1188
Craig Topperaaa643c2011-11-09 07:28:55 +00001189 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1190 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1191 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1192 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001193
Nadav Rotem0509db22012-12-28 05:45:24 +00001194 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1195 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
1196 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1197 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1198 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1199 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001200
Craig Topperbf404372012-08-31 15:40:30 +00001201 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001202 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1203 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1204 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1205 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1206 setOperationAction(ISD::FMA, MVT::f32, Legal);
1207 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001208 }
Craig Topper880ef452012-08-11 22:34:26 +00001209
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001210 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001211 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1212 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1213 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1214 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001215
Craig Topperaaa643c2011-11-09 07:28:55 +00001216 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1217 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1218 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1219 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001220
Craig Topperaaa643c2011-11-09 07:28:55 +00001221 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1222 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1223 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001224 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001225
1226 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001227
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001228 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001229 } else {
1230 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1231 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1232 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1233 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1234
1235 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1236 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1237 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1238 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1239
1240 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1241 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1242 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1243 // Don't lower v32i8 because there is no 128-bit byte mul
1244 }
Craig Topper13894fa2011-08-24 06:14:18 +00001245
Michael Liao5c5f1902013-03-20 02:28:20 +00001246 // In the customized shift lowering, the legal cases in AVX2 will be
1247 // recognized.
1248 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1249 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1250
1251 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1252 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1253
1254 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1255
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001256 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001257 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001259 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001260
1261 // Extract subvector is special because the value type
1262 // (result) is 128-bit but the source is 256-bit wide.
1263 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001264 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001265
1266 // Do not attempt to custom lower other non-256-bit vectors
1267 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001268 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001269
Craig Topper0d1f1762012-08-12 00:34:56 +00001270 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1271 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1272 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1273 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1275 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1276 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001277 }
1278
David Greene54d8eba2011-01-27 22:38:56 +00001279 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001280 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001281 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001282
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001283 // Do not attempt to promote non-256-bit vectors
1284 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001285 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001286
Craig Topper0d1f1762012-08-12 00:34:56 +00001287 setOperationAction(ISD::AND, VT, Promote);
1288 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1289 setOperationAction(ISD::OR, VT, Promote);
1290 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1291 setOperationAction(ISD::XOR, VT, Promote);
1292 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1293 setOperationAction(ISD::LOAD, VT, Promote);
1294 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1295 setOperationAction(ISD::SELECT, VT, Promote);
1296 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001297 }
David Greene9b9838d2009-06-29 16:47:10 +00001298 }
1299
Elena Demikhovsky83952512013-07-31 11:35:14 +00001300 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301 addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302 addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303 addRegisterClass(MVT::v8i64, &X86::VR512RegClass);
1304 addRegisterClass(MVT::v8f64, &X86::VR512RegClass);
1305
1306 addRegisterClass(MVT::v8i1, &X86::VK8RegClass);
1307 addRegisterClass(MVT::v16i1, &X86::VK16RegClass);
1308
1309 setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, Legal);
1310 setOperationAction(ISD::LOAD, MVT::v16f32, Legal);
1311 setOperationAction(ISD::LOAD, MVT::v8f64, Legal);
1312 setOperationAction(ISD::LOAD, MVT::v8i64, Legal);
1313 setOperationAction(ISD::LOAD, MVT::v16i32, Legal);
1314 setOperationAction(ISD::LOAD, MVT::v16i1, Legal);
1315
1316 setOperationAction(ISD::FADD, MVT::v16f32, Legal);
1317 setOperationAction(ISD::FSUB, MVT::v16f32, Legal);
1318 setOperationAction(ISD::FMUL, MVT::v16f32, Legal);
1319 setOperationAction(ISD::FDIV, MVT::v16f32, Legal);
1320 setOperationAction(ISD::FSQRT, MVT::v16f32, Legal);
1321 setOperationAction(ISD::FNEG, MVT::v16f32, Custom);
1322
1323 setOperationAction(ISD::FADD, MVT::v8f64, Legal);
1324 setOperationAction(ISD::FSUB, MVT::v8f64, Legal);
1325 setOperationAction(ISD::FMUL, MVT::v8f64, Legal);
1326 setOperationAction(ISD::FDIV, MVT::v8f64, Legal);
1327 setOperationAction(ISD::FSQRT, MVT::v8f64, Legal);
1328 setOperationAction(ISD::FNEG, MVT::v8f64, Custom);
1329 setOperationAction(ISD::FMA, MVT::v8f64, Legal);
1330 setOperationAction(ISD::FMA, MVT::v16f32, Legal);
1331 setOperationAction(ISD::SDIV, MVT::v16i32, Custom);
1332
Elena Demikhovsky714319a2013-10-06 13:11:09 +00001333 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal);
1334 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal);
1335 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal);
1336 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal);
1337 if (Subtarget->is64Bit()) {
1338 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Legal);
1339 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Legal);
1340 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Legal);
1341 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Legal);
1342 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001343 setOperationAction(ISD::FP_TO_SINT, MVT::v16i32, Legal);
1344 setOperationAction(ISD::FP_TO_UINT, MVT::v16i32, Legal);
1345 setOperationAction(ISD::FP_TO_UINT, MVT::v8i32, Legal);
1346 setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal);
1347 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1348 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1349 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1350 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1351
1352 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1353 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1354 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1355 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1356 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1357 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1358 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1359 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1360 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1361 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1362 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1363 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1364
1365 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1366 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1367 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1368 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1369 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1370
1371 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1372 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1373
1374 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1375
1376 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1377 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1378 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1379 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1380 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1381
1382 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1383 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1384
1385 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1386 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1387
1388 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1389
1390 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1391 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1392
1393 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1394 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1395
1396 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1397 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1398
1399 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1400 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1401 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001402 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1403 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1404 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001405
1406 // Custom lower several nodes.
1407 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1408 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1409 MVT VT = (MVT::SimpleValueType)i;
1410
Elena Demikhovsky07801792013-08-01 13:34:06 +00001411 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001412 // Extract subvector is special because the value type
1413 // (result) is 256/128-bit but the source is 512-bit wide.
1414 if (VT.is128BitVector() || VT.is256BitVector())
1415 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1416
1417 if (VT.getVectorElementType() == MVT::i1)
1418 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1419
1420 // Do not attempt to custom lower other non-512-bit vectors
1421 if (!VT.is512BitVector())
1422 continue;
1423
Elena Demikhovsky07801792013-08-01 13:34:06 +00001424 if ( EltSize >= 32) {
1425 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1426 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1427 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1428 setOperationAction(ISD::VSELECT, VT, Legal);
1429 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1430 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1431 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1432 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001433 }
1434 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1435 MVT VT = (MVT::SimpleValueType)i;
1436
1437 // Do not attempt to promote non-256-bit vectors
1438 if (!VT.is512BitVector())
1439 continue;
1440
Elena Demikhovsky83952512013-07-31 11:35:14 +00001441 setOperationAction(ISD::SELECT, VT, Promote);
1442 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1443 }
1444 }// has AVX-512
1445
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001446 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1447 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001448 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1449 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001450 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1451 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001452 }
1453
Evan Cheng6be2c582006-04-05 23:38:46 +00001454 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001455 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001456 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001457 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001458
Eli Friedman962f5492010-06-02 19:35:46 +00001459 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1460 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001461 //
Eli Friedman962f5492010-06-02 19:35:46 +00001462 // FIXME: We really should do custom legalization for addition and
1463 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1464 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001465 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1466 // Add/Sub/Mul with overflow operations are custom lowered.
1467 MVT VT = IntVTs[i];
1468 setOperationAction(ISD::SADDO, VT, Custom);
1469 setOperationAction(ISD::UADDO, VT, Custom);
1470 setOperationAction(ISD::SSUBO, VT, Custom);
1471 setOperationAction(ISD::USUBO, VT, Custom);
1472 setOperationAction(ISD::SMULO, VT, Custom);
1473 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001474 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001475
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001476 // There are no 8-bit 3-address imul/mul instructions
1477 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1478 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001479
Evan Chengd54f2d52009-03-31 19:38:51 +00001480 if (!Subtarget->is64Bit()) {
1481 // These libcalls are not available in 32-bit.
1482 setLibcallName(RTLIB::SHL_I128, 0);
1483 setLibcallName(RTLIB::SRL_I128, 0);
1484 setLibcallName(RTLIB::SRA_I128, 0);
1485 }
1486
Evan Cheng8688a582013-01-29 02:32:37 +00001487 // Combine sin / cos into one node or libcall if possible.
1488 if (Subtarget->hasSinCos()) {
1489 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1490 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001491 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001492 // For MacOSX, we don't want to the normal expansion of a libcall to
1493 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1494 // traffic.
1495 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1496 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1497 }
1498 }
1499
Evan Cheng206ee9d2006-07-07 08:33:52 +00001500 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbach49af3802013-10-17 02:58:06 +00001501 setTargetDAGCombine(ISD::CONCAT_VECTORS);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001502 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001503 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001504 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001505 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001506 setTargetDAGCombine(ISD::SHL);
1507 setTargetDAGCombine(ISD::SRA);
1508 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001509 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001510 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001511 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001512 setTargetDAGCombine(ISD::FADD);
1513 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001514 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001515 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001516 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001517 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001518 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001519 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001520 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001521 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001522 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001523 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001524 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001525 if (Subtarget->is64Bit())
1526 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001527 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001528
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001529 computeRegisterProperties();
1530
Evan Cheng05219282011-01-06 06:52:41 +00001531 // On Darwin, -Os means optimize for size without hurting performance,
1532 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001533 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1534 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1535 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1536 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1537 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1538 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001539 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001540
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001541 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001542 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001543
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001544 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001545}
1546
Matt Arsenault225ed702013-05-18 00:21:46 +00001547EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Juergen Ributzka189c6232013-09-21 15:09:46 +00001548 if (!VT.isVector()) return MVT::i8;
Duncan Sands28b77e92011-09-06 19:07:46 +00001549 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001550}
1551
Evan Cheng29286502008-01-23 23:17:41 +00001552/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1553/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001554static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001555 if (MaxAlign == 16)
1556 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001557 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001558 if (VTy->getBitWidth() == 128)
1559 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001560 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001561 unsigned EltAlign = 0;
1562 getMaxByValAlign(ATy->getElementType(), EltAlign);
1563 if (EltAlign > MaxAlign)
1564 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001565 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001566 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1567 unsigned EltAlign = 0;
1568 getMaxByValAlign(STy->getElementType(i), EltAlign);
1569 if (EltAlign > MaxAlign)
1570 MaxAlign = EltAlign;
1571 if (MaxAlign == 16)
1572 break;
1573 }
1574 }
Evan Cheng29286502008-01-23 23:17:41 +00001575}
1576
1577/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1578/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001579/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1580/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001581unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001582 if (Subtarget->is64Bit()) {
1583 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001584 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001585 if (TyAlign > 8)
1586 return TyAlign;
1587 return 8;
1588 }
1589
Evan Cheng29286502008-01-23 23:17:41 +00001590 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001591 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001592 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001593 return Align;
1594}
Chris Lattner2b02a442007-02-25 08:29:00 +00001595
Evan Chengf0df0312008-05-15 08:39:06 +00001596/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001597/// and store operations as a result of memset, memcpy, and memmove
1598/// lowering. If DstAlign is zero that means it's safe to destination
1599/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1600/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001601/// probably because the source does not need to be loaded. If 'IsMemset' is
1602/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1603/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1604/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001605/// It returns EVT::Other if the type should be determined using generic
1606/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001607EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001608X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1609 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001610 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001611 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001612 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001613 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001614 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001615 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1616 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001617 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001618 (Subtarget->isUnalignedMemAccessFast() ||
1619 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001620 (SrcAlign == 0 || SrcAlign >= 16)))) {
1621 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001622 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001623 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001624 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001625 return MVT::v8f32;
1626 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001627 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001628 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001629 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001630 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001631 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001632 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001633 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001634 // Do not use f64 to lower memcpy if source is string constant. It's
1635 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001636 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001637 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001638 }
Evan Chengf0df0312008-05-15 08:39:06 +00001639 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001640 return MVT::i64;
1641 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001642}
1643
Evan Cheng7d342672012-12-12 01:32:07 +00001644bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001645 if (VT == MVT::f32)
1646 return X86ScalarSSEf32;
1647 else if (VT == MVT::f64)
1648 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001649 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001650}
1651
Evan Cheng376642e2012-12-10 23:21:26 +00001652bool
1653X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1654 if (Fast)
1655 *Fast = Subtarget->isUnalignedMemAccessFast();
1656 return true;
1657}
1658
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001659/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1660/// current function. The returned value is a member of the
1661/// MachineJumpTableInfo::JTEntryKind enum.
1662unsigned X86TargetLowering::getJumpTableEncoding() const {
1663 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1664 // symbol.
1665 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1666 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001667 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001668
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001669 // Otherwise, use the normal jump table encoding heuristics.
1670 return TargetLowering::getJumpTableEncoding();
1671}
1672
Chris Lattnerc64daab2010-01-26 05:02:42 +00001673const MCExpr *
1674X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1675 const MachineBasicBlock *MBB,
1676 unsigned uid,MCContext &Ctx) const{
1677 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1678 Subtarget->isPICStyleGOT());
1679 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1680 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001681 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1682 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001683}
1684
Evan Chengcc415862007-11-09 01:32:10 +00001685/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1686/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001687SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001688 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001689 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001690 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001691 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001692 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001693 return Table;
1694}
1695
Chris Lattner589c6f62010-01-26 06:28:43 +00001696/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1697/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1698/// MCExpr.
1699const MCExpr *X86TargetLowering::
1700getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1701 MCContext &Ctx) const {
1702 // X86-64 uses RIP relative addressing based on the jump table label.
1703 if (Subtarget->isPICStyleRIPRel())
1704 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1705
1706 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001707 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001708}
1709
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001710// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001711std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001712X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001713 const TargetRegisterClass *RRC = 0;
1714 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001715 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001716 default:
1717 return TargetLowering::findRepresentativeClass(VT);
1718 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001719 RRC = Subtarget->is64Bit() ?
1720 (const TargetRegisterClass*)&X86::GR64RegClass :
1721 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001722 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001723 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001724 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001725 break;
1726 case MVT::f32: case MVT::f64:
1727 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1728 case MVT::v4f32: case MVT::v2f64:
1729 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1730 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001731 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001732 break;
1733 }
1734 return std::make_pair(RRC, Cost);
1735}
1736
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001737bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1738 unsigned &Offset) const {
1739 if (!Subtarget->isTargetLinux())
1740 return false;
1741
1742 if (Subtarget->is64Bit()) {
1743 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1744 Offset = 0x28;
1745 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1746 AddressSpace = 256;
1747 else
1748 AddressSpace = 257;
1749 } else {
1750 // %gs:0x14 on i386
1751 Offset = 0x14;
1752 AddressSpace = 256;
1753 }
1754 return true;
1755}
1756
Chris Lattner2b02a442007-02-25 08:29:00 +00001757//===----------------------------------------------------------------------===//
1758// Return Value Calling Convention Implementation
1759//===----------------------------------------------------------------------===//
1760
Chris Lattner59ed56b2007-02-28 04:55:35 +00001761#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001762
Michael J. Spencerec38de22010-10-10 22:04:20 +00001763bool
Eric Christopher471e4222011-06-08 23:55:35 +00001764X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001765 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001766 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001767 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001768 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001769 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001770 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001771 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001772}
1773
Dan Gohman98ca4f22009-08-05 01:29:28 +00001774SDValue
1775X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001776 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001777 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001778 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001779 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001780 MachineFunction &MF = DAG.getMachineFunction();
1781 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Chris Lattner9774c912007-02-27 05:28:59 +00001783 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001784 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001785 RVLocs, *DAG.getContext());
1786 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Dan Gohman475871a2008-07-27 21:46:04 +00001788 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001789 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001790 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1791 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001792 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1793 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001794
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001795 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001796 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1797 CCValAssign &VA = RVLocs[i];
1798 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001799 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001800 EVT ValVT = ValToCopy.getValueType();
1801
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001802 // Promote values to the appropriate types
1803 if (VA.getLocInfo() == CCValAssign::SExt)
1804 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1805 else if (VA.getLocInfo() == CCValAssign::ZExt)
1806 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1807 else if (VA.getLocInfo() == CCValAssign::AExt)
1808 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1809 else if (VA.getLocInfo() == CCValAssign::BCvt)
1810 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1811
Dale Johannesenc4510512010-09-24 19:05:48 +00001812 // If this is x86-64, and we disabled SSE, we can't return FP values,
1813 // or SSE or MMX vectors.
1814 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1815 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001816 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001817 report_fatal_error("SSE register return with SSE disabled");
1818 }
1819 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1820 // llvm-gcc has never done it right and no one has noticed, so this
1821 // should be OK for now.
1822 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001823 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001824 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001825
Chris Lattner447ff682008-03-11 03:23:40 +00001826 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1827 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001828 if (VA.getLocReg() == X86::ST0 ||
1829 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001830 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1831 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001832 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001833 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001834 RetOps.push_back(ValToCopy);
1835 // Don't emit a copytoreg.
1836 continue;
1837 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001838
Evan Cheng242b38b2009-02-23 09:03:22 +00001839 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1840 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001841 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001842 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001843 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001844 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001845 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1846 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001847 // If we don't have SSE2 available, convert to v4f32 so the generated
1848 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001849 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001850 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001851 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001852 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001853 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001854
Dale Johannesendd64c412009-02-04 00:33:20 +00001855 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001856 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001857 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001858 }
Dan Gohman61a92132008-04-21 23:59:07 +00001859
Eli Benderskya5597f02013-01-25 22:07:43 +00001860 // The x86-64 ABIs require that for returning structs by value we copy
1861 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001862 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001863 // We saved the argument into a virtual register in the entry block,
1864 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001865 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1866 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001867 MachineFunction &MF = DAG.getMachineFunction();
1868 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1869 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001870 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001871 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001872 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001873
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001874 unsigned RetValReg
1875 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1876 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001877 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001878 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001879
Eli Benderskya5597f02013-01-25 22:07:43 +00001880 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001881 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001883
Chris Lattner447ff682008-03-11 03:23:40 +00001884 RetOps[0] = Chain; // Update chain.
1885
1886 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001887 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001888 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001889
1890 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001891 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001892}
1893
Evan Chengbf010eb2012-04-10 01:51:00 +00001894bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001895 if (N->getNumValues() != 1)
1896 return false;
1897 if (!N->hasNUsesOfValue(1, 0))
1898 return false;
1899
Evan Chengbf010eb2012-04-10 01:51:00 +00001900 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001901 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001902 if (Copy->getOpcode() == ISD::CopyToReg) {
1903 // If the copy has a glue operand, we conservatively assume it isn't safe to
1904 // perform a tail call.
1905 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1906 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001907 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001908 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001909 return false;
1910
Evan Cheng1bf891a2010-12-01 22:59:46 +00001911 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001912 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001913 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001914 if (UI->getOpcode() != X86ISD::RET_FLAG)
1915 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001916 HasRet = true;
1917 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001918
Evan Chengbf010eb2012-04-10 01:51:00 +00001919 if (!HasRet)
1920 return false;
1921
1922 Chain = TCChain;
1923 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001924}
1925
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001926MVT
1927X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001928 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001929 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001930 // TODO: Is this also valid on 32-bit?
1931 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001932 ReturnMVT = MVT::i8;
1933 else
1934 ReturnMVT = MVT::i32;
1935
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001936 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001937 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001938}
1939
Dan Gohman98ca4f22009-08-05 01:29:28 +00001940/// LowerCallResult - Lower the result values of a call into the
1941/// appropriate copies out of appropriate physical registers.
1942///
1943SDValue
1944X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001945 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001946 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001947 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001948 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001949
Chris Lattnere32bbf62007-02-28 07:09:55 +00001950 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001951 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001952 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001953 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001954 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001955 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001956
Chris Lattner3085e152007-02-25 08:59:22 +00001957 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001958 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001959 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001960 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001961
Torok Edwin3f142c32009-02-01 18:15:56 +00001962 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001963 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001964 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001965 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001966 }
1967
Evan Cheng79fb3b42009-02-20 20:43:02 +00001968 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001969
1970 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001971 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001972 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001973 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001974 // instead.
1975 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1976 // If we prefer to use the value in xmm registers, copy it out as f80 and
1977 // use a truncate to move it from fp stack reg to xmm reg.
1978 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001979 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001980 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001981 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001982 Val = Chain.getValue(0);
1983
1984 // Round the f80 to the right size, which also moves it to the appropriate
1985 // xmm register.
1986 if (CopyVT != VA.getValVT())
1987 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1988 // This truncation won't change the value.
1989 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001990 } else {
1991 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1992 CopyVT, InFlag).getValue(1);
1993 Val = Chain.getValue(0);
1994 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001995 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001996 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001997 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001998
Dan Gohman98ca4f22009-08-05 01:29:28 +00001999 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002000}
2001
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002002//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002003// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002004//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002005// StdCall calling convention seems to be standard for many Windows' API
2006// routines and around. It differs from C calling convention just a little:
2007// callee should clean up the stack, not caller. Symbols should be also
2008// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002009// For info on fast calling convention see Fast Calling Convention (tail call)
2010// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002011
Dan Gohman98ca4f22009-08-05 01:29:28 +00002012/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002013/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002014enum StructReturnType {
2015 NotStructReturn,
2016 RegStructReturn,
2017 StackStructReturn
2018};
2019static StructReturnType
2020callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002021 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002022 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002023
Rafael Espindola1cee7102012-07-25 13:41:10 +00002024 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2025 if (!Flags.isSRet())
2026 return NotStructReturn;
2027 if (Flags.isInReg())
2028 return RegStructReturn;
2029 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002030}
2031
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002032/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002033/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002034static StructReturnType
2035argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002036 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002037 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002038
Rafael Espindola1cee7102012-07-25 13:41:10 +00002039 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2040 if (!Flags.isSRet())
2041 return NotStructReturn;
2042 if (Flags.isInReg())
2043 return RegStructReturn;
2044 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002045}
2046
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002047/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2048/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002049/// the specific parameter attribute. The copy will be passed as a byval
2050/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002051static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002052CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002053 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002054 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002055 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002056
Dale Johannesendd64c412009-02-04 00:33:20 +00002057 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002058 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002059 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002060}
2061
Chris Lattner29689432010-03-11 00:22:57 +00002062/// IsTailCallConvention - Return true if the calling convention is one that
2063/// supports tail call optimization.
2064static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002065 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2066 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002067}
2068
Charles Davisac226bb2013-07-12 06:02:35 +00002069/// \brief Return true if the calling convention is a C calling convention.
2070static bool IsCCallConvention(CallingConv::ID CC) {
2071 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2072 CC == CallingConv::X86_64_SysV);
2073}
2074
Evan Cheng485fafc2011-03-21 01:19:09 +00002075bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002076 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002077 return false;
2078
2079 CallSite CS(CI);
2080 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002081 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002082 return false;
2083
2084 return true;
2085}
2086
Evan Cheng0c439eb2010-01-27 00:07:07 +00002087/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2088/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002089static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2090 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002091 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002092}
2093
Dan Gohman98ca4f22009-08-05 01:29:28 +00002094SDValue
2095X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002096 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002097 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002098 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002099 const CCValAssign &VA,
2100 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002101 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002102 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002103 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002104 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2105 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002106 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002107 EVT ValVT;
2108
2109 // If value is passed by pointer we have address passed instead of the value
2110 // itself.
2111 if (VA.getLocInfo() == CCValAssign::Indirect)
2112 ValVT = VA.getLocVT();
2113 else
2114 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002115
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002116 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002117 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002118 // In case of tail call optimization mark all arguments mutable. Since they
2119 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002120 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002121 unsigned Bytes = Flags.getByValSize();
2122 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2123 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002124 return DAG.getFrameIndex(FI, getPointerTy());
2125 } else {
2126 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002127 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002128 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2129 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002130 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002131 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002132 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002133}
2134
Dan Gohman475871a2008-07-27 21:46:04 +00002135SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002136X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002137 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002138 bool isVarArg,
2139 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002140 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002141 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002142 SmallVectorImpl<SDValue> &InVals)
2143 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002144 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002145 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002146
Gordon Henriksen86737662008-01-05 16:56:59 +00002147 const Function* Fn = MF.getFunction();
2148 if (Fn->hasExternalLinkage() &&
2149 Subtarget->isTargetCygMing() &&
2150 Fn->getName() == "main")
2151 FuncInfo->setForceFramePointer(true);
2152
Evan Cheng1bc78042006-04-26 01:20:17 +00002153 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002154 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002155 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002156 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002157
Chris Lattner29689432010-03-11 00:22:57 +00002158 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002159 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002160
Chris Lattner638402b2007-02-28 07:00:42 +00002161 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002162 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002163 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002164 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002165
2166 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002167 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002168 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002169
Duncan Sands45907662010-10-31 13:21:44 +00002170 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002171
Chris Lattnerf39f7712007-02-28 05:46:49 +00002172 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002173 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002174 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2175 CCValAssign &VA = ArgLocs[i];
2176 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2177 // places.
2178 assert(VA.getValNo() != LastVal &&
2179 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002180 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002181 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002182
Chris Lattnerf39f7712007-02-28 05:46:49 +00002183 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002184 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002185 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002186 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002187 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002188 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002189 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002190 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002191 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002192 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002193 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002194 else if (RegVT.is512BitVector())
2195 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002196 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002197 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002198 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002199 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002200 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002201 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002202 else if (RegVT == MVT::v8i1)
2203 RC = &X86::VK8RegClass;
2204 else if (RegVT == MVT::v16i1)
2205 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002206 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002207 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002208
Devang Patel68e6bee2011-02-21 23:21:26 +00002209 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002210 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002211
Chris Lattnerf39f7712007-02-28 05:46:49 +00002212 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2213 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2214 // right size.
2215 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002216 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002217 DAG.getValueType(VA.getValVT()));
2218 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002219 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002220 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002221 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002222 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002223
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002224 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002225 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002226 if (RegVT.isVector())
2227 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2228 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002229 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002230 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002231 } else {
2232 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002233 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002234 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002235
2236 // If value is passed via pointer - do a load.
2237 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002238 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002239 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002240
Dan Gohman98ca4f22009-08-05 01:29:28 +00002241 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002242 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002243
Eli Benderskya5597f02013-01-25 22:07:43 +00002244 // The x86-64 ABIs require that for returning structs by value we copy
2245 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002246 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002247 // Save the argument into a virtual register so that we can access it
2248 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002249 if (MF.getFunction()->hasStructRetAttr() &&
2250 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002251 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2252 unsigned Reg = FuncInfo->getSRetReturnReg();
2253 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002254 MVT PtrTy = getPointerTy();
2255 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002256 FuncInfo->setSRetReturnReg(Reg);
2257 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002258 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002259 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002260 }
2261
Chris Lattnerf39f7712007-02-28 05:46:49 +00002262 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002263 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002264 if (FuncIsMadeTailCallSafe(CallConv,
2265 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002266 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002267
Evan Cheng1bc78042006-04-26 01:20:17 +00002268 // If the function takes variable number of arguments, make a frame index for
2269 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002270 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002271 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2272 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002273 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002274 }
2275 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002276 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2277
2278 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002279 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002280 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002281 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002282 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002283 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2284 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002285 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002286 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2287 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2288 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002289 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002290 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002291
2292 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002293 // The XMM registers which might contain var arg parameters are shadowed
2294 // in their paired GPR. So we only need to save the GPR to their home
2295 // slots.
2296 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002297 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002298 } else {
2299 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2300 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002301
Chad Rosier30450e82011-12-22 22:35:21 +00002302 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2303 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002304 }
2305 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2306 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002307
Bill Wendling831737d2012-12-30 10:32:01 +00002308 bool NoImplicitFloatOps = Fn->getAttributes().
2309 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002310 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002311 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002312 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2313 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002314 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002315 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002316 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002317 // Kernel mode asks for SSE to be disabled, so don't push them
2318 // on the stack.
2319 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002320
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002321 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002322 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002323 // Get to the caller-allocated home save location. Add 8 to account
2324 // for the return address.
2325 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002326 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002327 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002328 // Fixup to set vararg frame on shadow area (4 x i64).
2329 if (NumIntRegs < 4)
2330 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002331 } else {
2332 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002333 // registers, then we must store them to their spots on the stack so
2334 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002335 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2336 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2337 FuncInfo->setRegSaveFrameIndex(
2338 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002339 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002340 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002341
Gordon Henriksen86737662008-01-05 16:56:59 +00002342 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002343 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002344 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2345 getPointerTy());
2346 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002347 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002348 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2349 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002350 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002351 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002352 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002353 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002354 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002355 MachinePointerInfo::getFixedStack(
2356 FuncInfo->getRegSaveFrameIndex(), Offset),
2357 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002358 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002359 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002360 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002361
Dan Gohmanface41a2009-08-16 21:24:25 +00002362 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2363 // Now store the XMM (fp + vector) parameter registers.
2364 SmallVector<SDValue, 11> SaveXMMOps;
2365 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002366
Craig Topperc9099502012-04-20 06:31:50 +00002367 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002368 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2369 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002370
Dan Gohman1e93df62010-04-17 14:41:14 +00002371 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2372 FuncInfo->getRegSaveFrameIndex()));
2373 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2374 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002375
Dan Gohmanface41a2009-08-16 21:24:25 +00002376 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002377 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002378 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002379 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2380 SaveXMMOps.push_back(Val);
2381 }
2382 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2383 MVT::Other,
2384 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002385 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002386
2387 if (!MemOps.empty())
2388 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2389 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002390 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002391 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002392
Gordon Henriksen86737662008-01-05 16:56:59 +00002393 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002394 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2395 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002396 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002397 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002398 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002399 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002400 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002401 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002402 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002403 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002404
Gordon Henriksen86737662008-01-05 16:56:59 +00002405 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002406 // RegSaveFrameIndex is X86-64 only.
2407 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002408 if (CallConv == CallingConv::X86_FastCall ||
2409 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002410 // fastcc functions can't have varargs.
2411 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002412 }
Evan Cheng25caf632006-05-23 21:06:34 +00002413
Rafael Espindola76927d752011-08-30 19:39:58 +00002414 FuncInfo->setArgumentStackSize(StackSize);
2415
Dan Gohman98ca4f22009-08-05 01:29:28 +00002416 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002417}
2418
Dan Gohman475871a2008-07-27 21:46:04 +00002419SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002420X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2421 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002422 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002423 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002424 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002425 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002426 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002427 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002428 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002429 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002430
2431 return DAG.getStore(Chain, dl, Arg, PtrOff,
2432 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002433 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002434}
2435
Bill Wendling64e87322009-01-16 19:25:27 +00002436/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002437/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002438SDValue
2439X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002440 SDValue &OutRetAddr, SDValue Chain,
2441 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002442 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002443 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002444 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002445 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002446
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002447 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002448 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002449 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002450 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002451}
2452
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002453/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002454/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002455static SDValue
2456EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002457 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002458 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002459 // Store the return address to the appropriate stack slot.
2460 if (!FPDiff) return Chain;
2461 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002462 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002463 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2464 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002465 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002466 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002467 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002468 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002469 return Chain;
2470}
2471
Dan Gohman98ca4f22009-08-05 01:29:28 +00002472SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002473X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002474 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002475 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002476 SDLoc &dl = CLI.DL;
2477 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2478 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2479 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002480 SDValue Chain = CLI.Chain;
2481 SDValue Callee = CLI.Callee;
2482 CallingConv::ID CallConv = CLI.CallConv;
2483 bool &isTailCall = CLI.IsTailCall;
2484 bool isVarArg = CLI.IsVarArg;
2485
Dan Gohman98ca4f22009-08-05 01:29:28 +00002486 MachineFunction &MF = DAG.getMachineFunction();
2487 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002488 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002489 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002490 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002491 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002492
Nick Lewycky22de16d2012-01-19 00:34:10 +00002493 if (MF.getTarget().Options.DisableTailCalls)
2494 isTailCall = false;
2495
Evan Cheng5f941932010-02-05 02:21:12 +00002496 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002497 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002498 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002499 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002500 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002501 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002502
2503 // Sibcalls are automatically detected tailcalls which do not require
2504 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002505 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002506 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002507
2508 if (isTailCall)
2509 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002510 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002511
Chris Lattner29689432010-03-11 00:22:57 +00002512 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002513 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002514
Chris Lattner638402b2007-02-28 07:00:42 +00002515 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002516 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002517 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002518 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002519
2520 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002521 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002522 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002523
Duncan Sands45907662010-10-31 13:21:44 +00002524 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002525
Chris Lattner423c5f42007-02-28 05:31:48 +00002526 // Get a count of how many bytes are to be pushed on the stack.
2527 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002528 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002529 // This is a sibcall. The memory operands are available in caller's
2530 // own caller's stack.
2531 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002532 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2533 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002534 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002535
Gordon Henriksen86737662008-01-05 16:56:59 +00002536 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002537 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002538 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002539 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2540 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2541
Gordon Henriksen86737662008-01-05 16:56:59 +00002542 FPDiff = NumBytesCallerPushed - NumBytes;
2543
2544 // Set the delta of movement of the returnaddr stackslot.
2545 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002546 if (FPDiff < X86Info->getTCReturnAddrDelta())
2547 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002548 }
2549
Evan Chengf22f9b32010-02-06 03:28:46 +00002550 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002551 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2552 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002553
Dan Gohman475871a2008-07-27 21:46:04 +00002554 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002555 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002556 if (isTailCall && FPDiff)
2557 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2558 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002559
Dan Gohman475871a2008-07-27 21:46:04 +00002560 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2561 SmallVector<SDValue, 8> MemOpChains;
2562 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002563
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002564 // Walk the register/memloc assignments, inserting copies/loads. In the case
2565 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002566 const X86RegisterInfo *RegInfo =
2567 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002568 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2569 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002570 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002571 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002572 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002573 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002574
Chris Lattner423c5f42007-02-28 05:31:48 +00002575 // Promote the value if needed.
2576 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002577 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002578 case CCValAssign::Full: break;
2579 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002580 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002581 break;
2582 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002583 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002584 break;
2585 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002586 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002587 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002588 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002589 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2590 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002591 } else
2592 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2593 break;
2594 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002595 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002596 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002597 case CCValAssign::Indirect: {
2598 // Store the argument.
2599 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002600 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002601 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002602 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002603 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002604 Arg = SpillSlot;
2605 break;
2606 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002607 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002608
Chris Lattner423c5f42007-02-28 05:31:48 +00002609 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002610 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2611 if (isVarArg && IsWin64) {
2612 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2613 // shadow reg if callee is a varargs function.
2614 unsigned ShadowReg = 0;
2615 switch (VA.getLocReg()) {
2616 case X86::XMM0: ShadowReg = X86::RCX; break;
2617 case X86::XMM1: ShadowReg = X86::RDX; break;
2618 case X86::XMM2: ShadowReg = X86::R8; break;
2619 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002620 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002621 if (ShadowReg)
2622 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002623 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002624 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002625 assert(VA.isMemLoc());
2626 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002627 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2628 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002629 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2630 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002631 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002632 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002633
Evan Cheng32fe1032006-05-25 00:59:30 +00002634 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002635 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002636 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002637
Chris Lattner88e1fd52009-07-09 04:24:46 +00002638 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002639 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2640 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002641 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002642 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002643 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002644 } else {
2645 // If we are tail calling and generating PIC/GOT style code load the
2646 // address of the callee into ECX. The value in ecx is used as target of
2647 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2648 // for tail calls on PIC/GOT architectures. Normally we would just put the
2649 // address of GOT into ebx and then call target@PLT. But for tail calls
2650 // ebx would be restored (since ebx is callee saved) before jumping to the
2651 // target@PLT.
2652
2653 // Note: The actual moving to ECX is done further down.
2654 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2655 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2656 !G->getGlobal()->hasProtectedVisibility())
2657 Callee = LowerGlobalAddress(Callee, DAG);
2658 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002659 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002660 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002661 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002662
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002663 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002664 // From AMD64 ABI document:
2665 // For calls that may call functions that use varargs or stdargs
2666 // (prototype-less calls or calls to functions containing ellipsis (...) in
2667 // the declaration) %al is used as hidden argument to specify the number
2668 // of SSE registers used. The contents of %al do not need to match exactly
2669 // the number of registers, but must be an ubound on the number of SSE
2670 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002671
Gordon Henriksen86737662008-01-05 16:56:59 +00002672 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002673 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002674 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2675 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2676 };
2677 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002678 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002679 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002680
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002681 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2682 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002683 }
2684
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002685 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002686 if (isTailCall) {
2687 // Force all the incoming stack arguments to be loaded from the stack
2688 // before any new outgoing arguments are stored to the stack, because the
2689 // outgoing stack slots may alias the incoming argument stack slots, and
2690 // the alias isn't otherwise explicit. This is slightly more conservative
2691 // than necessary, because it means that each store effectively depends
2692 // on every argument instead of just those arguments it would clobber.
2693 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2694
Dan Gohman475871a2008-07-27 21:46:04 +00002695 SmallVector<SDValue, 8> MemOpChains2;
2696 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002697 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002698 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002699 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2700 CCValAssign &VA = ArgLocs[i];
2701 if (VA.isRegLoc())
2702 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002703 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002704 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002705 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002706 // Create frame index.
2707 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002708 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002709 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002710 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002711
Duncan Sands276dcbd2008-03-21 09:14:45 +00002712 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002713 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002714 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002715 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002716 StackPtr = DAG.getCopyFromReg(Chain, dl,
2717 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002718 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002719 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002720
Dan Gohman98ca4f22009-08-05 01:29:28 +00002721 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2722 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002723 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002724 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002725 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002726 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002727 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002728 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002729 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002730 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002731 }
2732 }
2733
2734 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002735 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002736 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002737
2738 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002739 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2740 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002741 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002742 }
2743
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002744 // Build a sequence of copy-to-reg nodes chained together with token chain
2745 // and flag operands which copy the outgoing args into registers.
2746 SDValue InFlag;
2747 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2748 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2749 RegsToPass[i].second, InFlag);
2750 InFlag = Chain.getValue(1);
2751 }
2752
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002753 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2754 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2755 // In the 64-bit large code model, we have to make all calls
2756 // through a register, since the call instruction's 32-bit
2757 // pc-relative offset may not be large enough to hold the whole
2758 // address.
2759 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002760 // If the callee is a GlobalAddress node (quite common, every direct call
2761 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2762 // it.
2763
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002764 // We should use extra load for direct calls to dllimported functions in
2765 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002766 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002767 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002768 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002769 bool ExtraLoad = false;
2770 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002771
Chris Lattner48a7d022009-07-09 05:02:21 +00002772 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2773 // external symbols most go through the PLT in PIC mode. If the symbol
2774 // has hidden or protected visibility, or if it is static or local, then
2775 // we don't need to use the PLT - we can directly call it.
2776 if (Subtarget->isTargetELF() &&
2777 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002778 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002779 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002780 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002781 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002782 (!Subtarget->getTargetTriple().isMacOSX() ||
2783 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002784 // PC-relative references to external symbols should go through $stub,
2785 // unless we're building with the leopard linker or later, which
2786 // automatically synthesizes these stubs.
2787 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002788 } else if (Subtarget->isPICStyleRIPRel() &&
2789 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002790 cast<Function>(GV)->getAttributes().
2791 hasAttribute(AttributeSet::FunctionIndex,
2792 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002793 // If the function is marked as non-lazy, generate an indirect call
2794 // which loads from the GOT directly. This avoids runtime overhead
2795 // at the cost of eager binding (and one extra byte of encoding).
2796 OpFlags = X86II::MO_GOTPCREL;
2797 WrapperKind = X86ISD::WrapperRIP;
2798 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002799 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002800
Devang Patel0d881da2010-07-06 22:08:15 +00002801 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002802 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002803
2804 // Add a wrapper if needed.
2805 if (WrapperKind != ISD::DELETED_NODE)
2806 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2807 // Add extra indirection if needed.
2808 if (ExtraLoad)
2809 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2810 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002811 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002812 }
Bill Wendling056292f2008-09-16 21:48:12 +00002813 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002814 unsigned char OpFlags = 0;
2815
Evan Cheng1bf891a2010-12-01 22:59:46 +00002816 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2817 // external symbols should go through the PLT.
2818 if (Subtarget->isTargetELF() &&
2819 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2820 OpFlags = X86II::MO_PLT;
2821 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002822 (!Subtarget->getTargetTriple().isMacOSX() ||
2823 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002824 // PC-relative references to external symbols should go through $stub,
2825 // unless we're building with the leopard linker or later, which
2826 // automatically synthesizes these stubs.
2827 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002828 }
Eric Christopherfd179292009-08-27 18:07:15 +00002829
Chris Lattner48a7d022009-07-09 05:02:21 +00002830 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2831 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002832 }
2833
Chris Lattnerd96d0722007-02-25 06:40:16 +00002834 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002835 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002836 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002837
Evan Chengf22f9b32010-02-06 03:28:46 +00002838 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002839 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002840 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002841 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002842 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002843
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002844 Ops.push_back(Chain);
2845 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002846
Dan Gohman98ca4f22009-08-05 01:29:28 +00002847 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002848 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002849
Gordon Henriksen86737662008-01-05 16:56:59 +00002850 // Add argument registers to the end of the list so that they are known live
2851 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002852 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2853 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2854 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002855
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002856 // Add a register mask operand representing the call-preserved registers.
2857 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2858 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2859 assert(Mask && "Missing call preserved mask for calling convention");
2860 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002861
Gabor Greifba36cb52008-08-28 21:40:38 +00002862 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002863 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002864
Dan Gohman98ca4f22009-08-05 01:29:28 +00002865 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002866 // We used to do:
2867 //// If this is the first return lowered for this function, add the regs
2868 //// to the liveout set for the function.
2869 // This isn't right, although it's probably harmless on x86; liveouts
2870 // should be computed from returns not tail calls. Consider a void
2871 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002872 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002873 }
2874
Dale Johannesenace16102009-02-03 19:33:06 +00002875 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002876 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002877
Chris Lattner2d297092006-05-23 18:50:38 +00002878 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002879 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002880 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2881 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002882 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002883 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002884 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002885 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002886 // pops the hidden struct pointer, so we have to push it back.
2887 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002888 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002889 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002890 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002891 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002892
Gordon Henriksenae636f82008-01-03 16:47:34 +00002893 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002894 if (!IsSibcall) {
2895 Chain = DAG.getCALLSEQ_END(Chain,
2896 DAG.getIntPtrConstant(NumBytes, true),
2897 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2898 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002899 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002900 InFlag = Chain.getValue(1);
2901 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002902
Chris Lattner3085e152007-02-25 08:59:22 +00002903 // Handle result values, copying them out of physregs into vregs that we
2904 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002905 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2906 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002907}
2908
Evan Cheng25ab6902006-09-08 06:48:29 +00002909//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002910// Fast Calling Convention (tail call) implementation
2911//===----------------------------------------------------------------------===//
2912
2913// Like std call, callee cleans arguments, convention except that ECX is
2914// reserved for storing the tail called function address. Only 2 registers are
2915// free for argument passing (inreg). Tail call optimization is performed
2916// provided:
2917// * tailcallopt is enabled
2918// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002919// On X86_64 architecture with GOT-style position independent code only local
2920// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002921// To keep the stack aligned according to platform abi the function
2922// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2923// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002924// If a tail called function callee has more arguments than the caller the
2925// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002926// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002927// original REtADDR, but before the saved framepointer or the spilled registers
2928// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2929// stack layout:
2930// arg1
2931// arg2
2932// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002933// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002934// move area ]
2935// (possible EBP)
2936// ESI
2937// EDI
2938// local1 ..
2939
2940/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2941/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002942unsigned
2943X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2944 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002945 MachineFunction &MF = DAG.getMachineFunction();
2946 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002947 const X86RegisterInfo *RegInfo =
2948 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002949 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002950 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002951 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002952 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002953 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002954 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2955 // Number smaller than 12 so just add the difference.
2956 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2957 } else {
2958 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002959 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002960 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002961 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002962 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002963}
2964
Evan Cheng5f941932010-02-05 02:21:12 +00002965/// MatchingStackOffset - Return true if the given stack call argument is
2966/// already available in the same position (relatively) of the caller's
2967/// incoming argument stack.
2968static
2969bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2970 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2971 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002972 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2973 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002974 if (Arg.getOpcode() == ISD::CopyFromReg) {
2975 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002976 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002977 return false;
2978 MachineInstr *Def = MRI->getVRegDef(VR);
2979 if (!Def)
2980 return false;
2981 if (!Flags.isByVal()) {
2982 if (!TII->isLoadFromStackSlot(Def, FI))
2983 return false;
2984 } else {
2985 unsigned Opcode = Def->getOpcode();
2986 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2987 Def->getOperand(1).isFI()) {
2988 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002989 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002990 } else
2991 return false;
2992 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002993 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2994 if (Flags.isByVal())
2995 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002996 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002997 // define @foo(%struct.X* %A) {
2998 // tail call @bar(%struct.X* byval %A)
2999 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003000 return false;
3001 SDValue Ptr = Ld->getBasePtr();
3002 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3003 if (!FINode)
3004 return false;
3005 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003006 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003007 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003008 FI = FINode->getIndex();
3009 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003010 } else
3011 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003012
Evan Cheng4cae1332010-03-05 08:38:04 +00003013 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003014 if (!MFI->isFixedObjectIndex(FI))
3015 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003016 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003017}
3018
Dan Gohman98ca4f22009-08-05 01:29:28 +00003019/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3020/// for tail call optimization. Targets which want to do tail call
3021/// optimization should implement this function.
3022bool
3023X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003024 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003025 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003026 bool isCalleeStructRet,
3027 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003028 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003029 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003030 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003031 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003032 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003033 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003034 return false;
3035
Evan Cheng7096ae42010-01-29 06:45:59 +00003036 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003037 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003038 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003039
3040 // If the function return type is x86_fp80 and the callee return type is not,
3041 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3042 // perform a tailcall optimization here.
3043 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3044 return false;
3045
Evan Cheng13617962010-04-30 01:12:32 +00003046 CallingConv::ID CallerCC = CallerF->getCallingConv();
3047 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003048 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3049 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003050
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003051 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003052 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003053 return true;
3054 return false;
3055 }
3056
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003057 // Look for obvious safe cases to perform tail call optimization that do not
3058 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003059
Evan Cheng2c12cb42010-03-26 16:26:03 +00003060 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3061 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003062 const X86RegisterInfo *RegInfo =
3063 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003064 if (RegInfo->needsStackRealignment(MF))
3065 return false;
3066
Evan Chenga375d472010-03-15 18:54:48 +00003067 // Also avoid sibcall optimization if either caller or callee uses struct
3068 // return semantics.
3069 if (isCalleeStructRet || isCallerStructRet)
3070 return false;
3071
Chad Rosier2416da32011-06-24 21:15:36 +00003072 // An stdcall caller is expected to clean up its arguments; the callee
3073 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003074 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003075 return false;
3076
Chad Rosier871f6642011-05-18 19:59:50 +00003077 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003078 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003079 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003080
3081 // Optimizing for varargs on Win64 is unlikely to be safe without
3082 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003083 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003084 return false;
3085
Chad Rosier871f6642011-05-18 19:59:50 +00003086 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003087 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003088 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003089
Chad Rosier871f6642011-05-18 19:59:50 +00003090 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3091 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3092 if (!ArgLocs[i].isRegLoc())
3093 return false;
3094 }
3095
Chad Rosier30450e82011-12-22 22:35:21 +00003096 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3097 // stack. Therefore, if it's not used by the call it is not safe to optimize
3098 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003099 bool Unused = false;
3100 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3101 if (!Ins[i].Used) {
3102 Unused = true;
3103 break;
3104 }
3105 }
3106 if (Unused) {
3107 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003108 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003109 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003110 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003111 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003112 CCValAssign &VA = RVLocs[i];
3113 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3114 return false;
3115 }
3116 }
3117
Evan Cheng13617962010-04-30 01:12:32 +00003118 // If the calling conventions do not match, then we'd better make sure the
3119 // results are returned in the same way as what the caller expects.
3120 if (!CCMatch) {
3121 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003122 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003123 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003124 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3125
3126 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003127 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003128 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003129 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3130
3131 if (RVLocs1.size() != RVLocs2.size())
3132 return false;
3133 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3134 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3135 return false;
3136 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3137 return false;
3138 if (RVLocs1[i].isRegLoc()) {
3139 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3140 return false;
3141 } else {
3142 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3143 return false;
3144 }
3145 }
3146 }
3147
Evan Chenga6bff982010-01-30 01:22:00 +00003148 // If the callee takes no arguments then go on to check the results of the
3149 // call.
3150 if (!Outs.empty()) {
3151 // Check if stack adjustment is needed. For now, do not do this if any
3152 // argument is passed on the stack.
3153 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003154 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003155 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003156
3157 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003158 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003159 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003160
Duncan Sands45907662010-10-31 13:21:44 +00003161 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003162 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003163 MachineFunction &MF = DAG.getMachineFunction();
3164 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3165 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003166
3167 // Check if the arguments are already laid out in the right way as
3168 // the caller's fixed stack objects.
3169 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003170 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3171 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003172 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003173 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3174 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003175 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003176 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003177 if (VA.getLocInfo() == CCValAssign::Indirect)
3178 return false;
3179 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003180 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3181 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003182 return false;
3183 }
3184 }
3185 }
Evan Cheng9c044672010-05-29 01:35:22 +00003186
3187 // If the tailcall address may be in a register, then make sure it's
3188 // possible to register allocate for it. In 32-bit, the call address can
3189 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003190 // callee-saved registers are restored. These happen to be the same
3191 // registers used to pass 'inreg' arguments so watch out for those.
3192 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003193 ((!isa<GlobalAddressSDNode>(Callee) &&
3194 !isa<ExternalSymbolSDNode>(Callee)) ||
3195 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003196 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003197 // In PIC we need an extra register to formulate the address computation
3198 // for the callee.
3199 unsigned MaxInRegs =
3200 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3201
Evan Cheng9c044672010-05-29 01:35:22 +00003202 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3203 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003204 if (!VA.isRegLoc())
3205 continue;
3206 unsigned Reg = VA.getLocReg();
3207 switch (Reg) {
3208 default: break;
3209 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003210 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003211 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003212 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003213 }
3214 }
3215 }
Evan Chenga6bff982010-01-30 01:22:00 +00003216 }
Evan Chengb1712452010-01-27 06:25:16 +00003217
Evan Cheng86809cc2010-02-03 03:28:02 +00003218 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003219}
3220
Dan Gohman3df24e62008-09-03 23:12:08 +00003221FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003222X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3223 const TargetLibraryInfo *libInfo) const {
3224 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003225}
3226
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003227//===----------------------------------------------------------------------===//
3228// Other Lowering Hooks
3229//===----------------------------------------------------------------------===//
3230
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003231static bool MayFoldLoad(SDValue Op) {
3232 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3233}
3234
3235static bool MayFoldIntoStore(SDValue Op) {
3236 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3237}
3238
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003239static bool isTargetShuffle(unsigned Opcode) {
3240 switch(Opcode) {
3241 default: return false;
3242 case X86ISD::PSHUFD:
3243 case X86ISD::PSHUFHW:
3244 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003245 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003246 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003247 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003248 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003249 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003250 case X86ISD::MOVLPS:
3251 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003252 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003253 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003254 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003255 case X86ISD::MOVSS:
3256 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003257 case X86ISD::UNPCKL:
3258 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003259 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003260 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003261 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003262 return true;
3263 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003264}
3265
Andrew Trickac6d9be2013-05-25 02:42:55 +00003266static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003267 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003268 switch(Opc) {
3269 default: llvm_unreachable("Unknown x86 shuffle node");
3270 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003271 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003272 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003273 return DAG.getNode(Opc, dl, VT, V1);
3274 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003275}
3276
Andrew Trickac6d9be2013-05-25 02:42:55 +00003277static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003278 SDValue V1, unsigned TargetMask,
3279 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003280 switch(Opc) {
3281 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003282 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003283 case X86ISD::PSHUFHW:
3284 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003285 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003286 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003287 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3288 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003289}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003290
Andrew Trickac6d9be2013-05-25 02:42:55 +00003291static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003292 SDValue V1, SDValue V2, unsigned TargetMask,
3293 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003294 switch(Opc) {
3295 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003296 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003297 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003298 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003299 return DAG.getNode(Opc, dl, VT, V1, V2,
3300 DAG.getConstant(TargetMask, MVT::i8));
3301 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003302}
3303
Andrew Trickac6d9be2013-05-25 02:42:55 +00003304static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003305 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3306 switch(Opc) {
3307 default: llvm_unreachable("Unknown x86 shuffle node");
3308 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003309 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003310 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003311 case X86ISD::MOVLPS:
3312 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003313 case X86ISD::MOVSS:
3314 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003315 case X86ISD::UNPCKL:
3316 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003317 return DAG.getNode(Opc, dl, VT, V1, V2);
3318 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003319}
3320
Dan Gohmand858e902010-04-17 15:26:15 +00003321SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003322 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003323 const X86RegisterInfo *RegInfo =
3324 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003325 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3326 int ReturnAddrIndex = FuncInfo->getRAIndex();
3327
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003328 if (ReturnAddrIndex == 0) {
3329 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003330 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003331 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3332 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003333 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003334 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003335 }
3336
Evan Cheng25ab6902006-09-08 06:48:29 +00003337 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003338}
3339
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003340bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3341 bool hasSymbolicDisplacement) {
3342 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003343 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003344 return false;
3345
3346 // If we don't have a symbolic displacement - we don't have any extra
3347 // restrictions.
3348 if (!hasSymbolicDisplacement)
3349 return true;
3350
3351 // FIXME: Some tweaks might be needed for medium code model.
3352 if (M != CodeModel::Small && M != CodeModel::Kernel)
3353 return false;
3354
3355 // For small code model we assume that latest object is 16MB before end of 31
3356 // bits boundary. We may also accept pretty large negative constants knowing
3357 // that all objects are in the positive half of address space.
3358 if (M == CodeModel::Small && Offset < 16*1024*1024)
3359 return true;
3360
3361 // For kernel code model we know that all object resist in the negative half
3362 // of 32bits address space. We may not accept negative offsets, since they may
3363 // be just off and we may accept pretty large positive ones.
3364 if (M == CodeModel::Kernel && Offset > 0)
3365 return true;
3366
3367 return false;
3368}
3369
Evan Chengef41ff62011-06-23 17:54:54 +00003370/// isCalleePop - Determines whether the callee is required to pop its
3371/// own arguments. Callee pop is necessary to support tail calls.
3372bool X86::isCalleePop(CallingConv::ID CallingConv,
3373 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3374 if (IsVarArg)
3375 return false;
3376
3377 switch (CallingConv) {
3378 default:
3379 return false;
3380 case CallingConv::X86_StdCall:
3381 return !is64Bit;
3382 case CallingConv::X86_FastCall:
3383 return !is64Bit;
3384 case CallingConv::X86_ThisCall:
3385 return !is64Bit;
3386 case CallingConv::Fast:
3387 return TailCallOpt;
3388 case CallingConv::GHC:
3389 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003390 case CallingConv::HiPE:
3391 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003392 }
3393}
3394
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003395/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3396/// specific condition code, returning the condition code and the LHS/RHS of the
3397/// comparison to make.
3398static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3399 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003400 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003401 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3402 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3403 // X > -1 -> X == 0, jump !sign.
3404 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003405 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003406 }
3407 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003408 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003409 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003410 }
3411 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003412 // X < 1 -> X <= 0
3413 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003414 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003415 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003416 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003417
Evan Chengd9558e02006-01-06 00:43:03 +00003418 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003419 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003420 case ISD::SETEQ: return X86::COND_E;
3421 case ISD::SETGT: return X86::COND_G;
3422 case ISD::SETGE: return X86::COND_GE;
3423 case ISD::SETLT: return X86::COND_L;
3424 case ISD::SETLE: return X86::COND_LE;
3425 case ISD::SETNE: return X86::COND_NE;
3426 case ISD::SETULT: return X86::COND_B;
3427 case ISD::SETUGT: return X86::COND_A;
3428 case ISD::SETULE: return X86::COND_BE;
3429 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003430 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003431 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003432
Chris Lattner4c78e022008-12-23 23:42:27 +00003433 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003434
Chris Lattner4c78e022008-12-23 23:42:27 +00003435 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003436 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3437 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003438 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3439 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003440 }
3441
Chris Lattner4c78e022008-12-23 23:42:27 +00003442 switch (SetCCOpcode) {
3443 default: break;
3444 case ISD::SETOLT:
3445 case ISD::SETOLE:
3446 case ISD::SETUGT:
3447 case ISD::SETUGE:
3448 std::swap(LHS, RHS);
3449 break;
3450 }
3451
3452 // On a floating point condition, the flags are set as follows:
3453 // ZF PF CF op
3454 // 0 | 0 | 0 | X > Y
3455 // 0 | 0 | 1 | X < Y
3456 // 1 | 0 | 0 | X == Y
3457 // 1 | 1 | 1 | unordered
3458 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003459 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003460 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003461 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003462 case ISD::SETOLT: // flipped
3463 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003464 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003465 case ISD::SETOLE: // flipped
3466 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003467 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003468 case ISD::SETUGT: // flipped
3469 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003470 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003471 case ISD::SETUGE: // flipped
3472 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003473 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003474 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003475 case ISD::SETNE: return X86::COND_NE;
3476 case ISD::SETUO: return X86::COND_P;
3477 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003478 case ISD::SETOEQ:
3479 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003480 }
Evan Chengd9558e02006-01-06 00:43:03 +00003481}
3482
Evan Cheng4a460802006-01-11 00:33:36 +00003483/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3484/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003485/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003486static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003487 switch (X86CC) {
3488 default:
3489 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003490 case X86::COND_B:
3491 case X86::COND_BE:
3492 case X86::COND_E:
3493 case X86::COND_P:
3494 case X86::COND_A:
3495 case X86::COND_AE:
3496 case X86::COND_NE:
3497 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003498 return true;
3499 }
3500}
3501
Evan Chengeb2f9692009-10-27 19:56:55 +00003502/// isFPImmLegal - Returns true if the target can instruction select the
3503/// specified FP immediate natively. If false, the legalizer will
3504/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003505bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003506 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3507 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3508 return true;
3509 }
3510 return false;
3511}
3512
Nate Begeman9008ca62009-04-27 18:41:29 +00003513/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3514/// the specified range (L, H].
3515static bool isUndefOrInRange(int Val, int Low, int Hi) {
3516 return (Val < 0) || (Val >= Low && Val < Hi);
3517}
3518
3519/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3520/// specified value.
3521static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003522 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003523}
3524
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003525/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003526/// from position Pos and ending in Pos+Size, falls within the specified
3527/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003528static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003529 unsigned Pos, unsigned Size, int Low) {
3530 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003531 if (!isUndefOrEqual(Mask[i], Low))
3532 return false;
3533 return true;
3534}
3535
Nate Begeman9008ca62009-04-27 18:41:29 +00003536/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3537/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3538/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003539static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003540 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003541 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003542 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003543 return (Mask[0] < 2 && Mask[1] < 2);
3544 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003545}
3546
Nate Begeman9008ca62009-04-27 18:41:29 +00003547/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3548/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003549static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003550 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003551 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003552
Nate Begeman9008ca62009-04-27 18:41:29 +00003553 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003554 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3555 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003556
Evan Cheng506d3df2006-03-29 23:07:14 +00003557 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003558 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003559 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003560 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003561
Craig Toppera9a568a2012-05-02 08:03:44 +00003562 if (VT == MVT::v16i16) {
3563 // Lower quadword copied in order or undef.
3564 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3565 return false;
3566
3567 // Upper quadword shuffled.
3568 for (unsigned i = 12; i != 16; ++i)
3569 if (!isUndefOrInRange(Mask[i], 12, 16))
3570 return false;
3571 }
3572
Evan Cheng506d3df2006-03-29 23:07:14 +00003573 return true;
3574}
3575
Nate Begeman9008ca62009-04-27 18:41:29 +00003576/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3577/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003578static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003579 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003580 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003581
Rafael Espindola15684b22009-04-24 12:40:33 +00003582 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003583 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3584 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003585
Rafael Espindola15684b22009-04-24 12:40:33 +00003586 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003587 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003588 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003589 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003590
Craig Toppera9a568a2012-05-02 08:03:44 +00003591 if (VT == MVT::v16i16) {
3592 // Upper quadword copied in order.
3593 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3594 return false;
3595
3596 // Lower quadword shuffled.
3597 for (unsigned i = 8; i != 12; ++i)
3598 if (!isUndefOrInRange(Mask[i], 8, 12))
3599 return false;
3600 }
3601
Rafael Espindola15684b22009-04-24 12:40:33 +00003602 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003603}
3604
Nate Begemana09008b2009-10-19 02:17:23 +00003605/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3606/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003607static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003608 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003609 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3610 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003611 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003612
Craig Topper0e2037b2012-01-20 05:53:00 +00003613 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003614 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003615 unsigned NumLaneElts = NumElts/NumLanes;
3616
3617 // Do not handle 64-bit element shuffles with palignr.
3618 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003619 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003620
Craig Topper0e2037b2012-01-20 05:53:00 +00003621 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3622 unsigned i;
3623 for (i = 0; i != NumLaneElts; ++i) {
3624 if (Mask[i+l] >= 0)
3625 break;
3626 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003627
Craig Topper0e2037b2012-01-20 05:53:00 +00003628 // Lane is all undef, go to next lane
3629 if (i == NumLaneElts)
3630 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003631
Craig Topper0e2037b2012-01-20 05:53:00 +00003632 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003633
Craig Topper0e2037b2012-01-20 05:53:00 +00003634 // Make sure its in this lane in one of the sources
3635 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3636 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003637 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003638
3639 // If not lane 0, then we must match lane 0
3640 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3641 return false;
3642
3643 // Correct second source to be contiguous with first source
3644 if (Start >= (int)NumElts)
3645 Start -= NumElts - NumLaneElts;
3646
3647 // Make sure we're shifting in the right direction.
3648 if (Start <= (int)(i+l))
3649 return false;
3650
3651 Start -= i;
3652
3653 // Check the rest of the elements to see if they are consecutive.
3654 for (++i; i != NumLaneElts; ++i) {
3655 int Idx = Mask[i+l];
3656
3657 // Make sure its in this lane
3658 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3659 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3660 return false;
3661
3662 // If not lane 0, then we must match lane 0
3663 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3664 return false;
3665
3666 if (Idx >= (int)NumElts)
3667 Idx -= NumElts - NumLaneElts;
3668
3669 if (!isUndefOrEqual(Idx, Start+i))
3670 return false;
3671
3672 }
Nate Begemana09008b2009-10-19 02:17:23 +00003673 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003674
Nate Begemana09008b2009-10-19 02:17:23 +00003675 return true;
3676}
3677
Craig Topper1a7700a2012-01-19 08:19:12 +00003678/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3679/// the two vector operands have swapped position.
3680static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3681 unsigned NumElems) {
3682 for (unsigned i = 0; i != NumElems; ++i) {
3683 int idx = Mask[i];
3684 if (idx < 0)
3685 continue;
3686 else if (idx < (int)NumElems)
3687 Mask[i] = idx + NumElems;
3688 else
3689 Mask[i] = idx - NumElems;
3690 }
3691}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003692
Craig Topper1a7700a2012-01-19 08:19:12 +00003693/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3694/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3695/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3696/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003697static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003698
Craig Topper1a7700a2012-01-19 08:19:12 +00003699 unsigned NumElems = VT.getVectorNumElements();
3700 unsigned NumLanes = VT.getSizeInBits()/128;
3701 unsigned NumLaneElems = NumElems/NumLanes;
3702
3703 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003704 return false;
3705
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003706 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3707 bool symetricMaskRequired =
3708 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3709
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003710 // VSHUFPSY divides the resulting vector into 4 chunks.
3711 // The sources are also splitted into 4 chunks, and each destination
3712 // chunk must come from a different source chunk.
3713 //
3714 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3715 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3716 //
3717 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3718 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3719 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003720 // VSHUFPDY divides the resulting vector into 4 chunks.
3721 // The sources are also splitted into 4 chunks, and each destination
3722 // chunk must come from a different source chunk.
3723 //
3724 // SRC1 => X3 X2 X1 X0
3725 // SRC2 => Y3 Y2 Y1 Y0
3726 //
3727 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3728 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003729 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003730 unsigned HalfLaneElems = NumLaneElems/2;
3731 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3732 for (unsigned i = 0; i != NumLaneElems; ++i) {
3733 int Idx = Mask[i+l];
3734 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3735 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3736 return false;
3737 // For VSHUFPSY, the mask of the second half must be the same as the
3738 // first but with the appropriate offsets. This works in the same way as
3739 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003740 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003741 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003742 if (MaskVal[i] < 0) {
3743 MaskVal[i] = Idx - l;
3744 continue;
3745 }
3746 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003747 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003748 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003749 }
3750
3751 return true;
3752}
3753
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003754/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3755/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003756static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003757 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003758 return false;
3759
Craig Topper7a9a28b2012-08-12 02:23:29 +00003760 unsigned NumElems = VT.getVectorNumElements();
3761
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003762 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003763 return false;
3764
Evan Cheng2064a2b2006-03-28 06:50:32 +00003765 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003766 return isUndefOrEqual(Mask[0], 6) &&
3767 isUndefOrEqual(Mask[1], 7) &&
3768 isUndefOrEqual(Mask[2], 2) &&
3769 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003770}
3771
Nate Begeman0b10b912009-11-07 23:17:15 +00003772/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3773/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3774/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003775static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003776 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003777 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003778
Craig Topper7a9a28b2012-08-12 02:23:29 +00003779 unsigned NumElems = VT.getVectorNumElements();
3780
Nate Begeman0b10b912009-11-07 23:17:15 +00003781 if (NumElems != 4)
3782 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003783
Craig Topperdd637ae2012-02-19 05:41:45 +00003784 return isUndefOrEqual(Mask[0], 2) &&
3785 isUndefOrEqual(Mask[1], 3) &&
3786 isUndefOrEqual(Mask[2], 2) &&
3787 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003788}
3789
Evan Cheng5ced1d82006-04-06 23:23:56 +00003790/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3791/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003792static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003793 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003794 return false;
3795
Craig Topperdd637ae2012-02-19 05:41:45 +00003796 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003797
Evan Cheng5ced1d82006-04-06 23:23:56 +00003798 if (NumElems != 2 && NumElems != 4)
3799 return false;
3800
Chad Rosier238ae312012-04-30 17:47:15 +00003801 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003802 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003803 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003804
Chad Rosier238ae312012-04-30 17:47:15 +00003805 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003806 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003807 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003808
3809 return true;
3810}
3811
Nate Begeman0b10b912009-11-07 23:17:15 +00003812/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3813/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003814static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003815 if (!VT.is128BitVector())
3816 return false;
3817
Craig Topperdd637ae2012-02-19 05:41:45 +00003818 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003819
Craig Topper7a9a28b2012-08-12 02:23:29 +00003820 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003821 return false;
3822
Chad Rosier238ae312012-04-30 17:47:15 +00003823 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003824 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003825 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003826
Chad Rosier238ae312012-04-30 17:47:15 +00003827 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3828 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003829 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003830
3831 return true;
3832}
3833
Elena Demikhovsky15963732012-06-26 08:04:10 +00003834//
3835// Some special combinations that can be optimized.
3836//
3837static
3838SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3839 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003840 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003841 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003842
3843 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3844 return SDValue();
3845
3846 ArrayRef<int> Mask = SVOp->getMask();
3847
3848 // These are the special masks that may be optimized.
3849 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3850 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3851 bool MatchEvenMask = true;
3852 bool MatchOddMask = true;
3853 for (int i=0; i<8; ++i) {
3854 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3855 MatchEvenMask = false;
3856 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3857 MatchOddMask = false;
3858 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003859
Elena Demikhovsky32510202012-09-04 12:49:02 +00003860 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003861 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003862
Elena Demikhovsky15963732012-06-26 08:04:10 +00003863 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3864
Elena Demikhovsky32510202012-09-04 12:49:02 +00003865 SDValue Op0 = SVOp->getOperand(0);
3866 SDValue Op1 = SVOp->getOperand(1);
3867
3868 if (MatchEvenMask) {
3869 // Shift the second operand right to 32 bits.
3870 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3871 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3872 } else {
3873 // Shift the first operand left to 32 bits.
3874 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3875 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3876 }
3877 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3878 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003879}
3880
Evan Cheng0038e592006-03-28 00:39:58 +00003881/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3882/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003883static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003884 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003885
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003886 assert(VT.getSizeInBits() >= 128 &&
3887 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003888
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003889 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3890 unsigned NumLanes;
3891 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003892 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003893 if (VT.is256BitVector()) {
3894 if (NumElts != 4 && NumElts != 8 &&
3895 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003896 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003897 NumLanes = 2;
3898 NumOf256BitLanes = 1;
3899 } else if (VT.is512BitVector()) {
3900 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3901 "Unsupported vector type for unpckh");
3902 NumLanes = 2;
3903 NumOf256BitLanes = 2;
3904 } else {
3905 NumLanes = 1;
3906 NumOf256BitLanes = 1;
3907 }
Eric Christopherfd179292009-08-27 18:07:15 +00003908
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003909 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3910 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003911
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003912 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3913 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3914 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3915 int BitI = Mask[l256*NumEltsInStride+l+i];
3916 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3917 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003918 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003919 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3920 return false;
3921 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003922 return false;
3923 }
Evan Cheng39623da2006-04-20 08:58:49 +00003924 }
Evan Cheng0038e592006-03-28 00:39:58 +00003925 }
Evan Cheng0038e592006-03-28 00:39:58 +00003926 return true;
3927}
3928
Evan Cheng4fcb9222006-03-28 02:43:26 +00003929/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3930/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003931static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003932 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003933 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003934 "Unsupported vector type for unpckh");
3935
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003936 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3937 unsigned NumLanes;
3938 unsigned NumOf256BitLanes;
3939 unsigned NumElts = VT.getVectorNumElements();
3940 if (VT.is256BitVector()) {
3941 if (NumElts != 4 && NumElts != 8 &&
3942 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003943 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003944 NumLanes = 2;
3945 NumOf256BitLanes = 1;
3946 } else if (VT.is512BitVector()) {
3947 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3948 "Unsupported vector type for unpckh");
3949 NumLanes = 2;
3950 NumOf256BitLanes = 2;
3951 } else {
3952 NumLanes = 1;
3953 NumOf256BitLanes = 1;
3954 }
Eric Christopherfd179292009-08-27 18:07:15 +00003955
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003956 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3957 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003958
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003959 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3960 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3961 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3962 int BitI = Mask[l256*NumEltsInStride+l+i];
3963 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3964 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003965 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003966 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3967 return false;
3968 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003969 return false;
3970 }
Evan Cheng39623da2006-04-20 08:58:49 +00003971 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003972 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003973 return true;
3974}
3975
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003976/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3977/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3978/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003979static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003980 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003981 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003982
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003983 if (VT.is512BitVector())
3984 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00003985 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3986 "Unsupported vector type for unpckh");
3987
Craig Topper5a529e42013-01-18 06:44:29 +00003988 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003989 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003990 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003991
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003992 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3993 // FIXME: Need a better way to get rid of this, there's no latency difference
3994 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3995 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003996 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003997 return false;
3998
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003999 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4000 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004001 unsigned NumLanes = VT.getSizeInBits()/128;
4002 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004003
Craig Topper59235472013-08-06 07:23:12 +00004004 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4005 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4006 int BitI = Mask[l+i];
4007 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004008
4009 if (!isUndefOrEqual(BitI, j))
4010 return false;
4011 if (!isUndefOrEqual(BitI1, j))
4012 return false;
4013 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004014 }
David Greenea20244d2011-03-02 17:23:43 +00004015
Rafael Espindola15684b22009-04-24 12:40:33 +00004016 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004017}
4018
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004019/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4020/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4021/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004022static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004023 unsigned NumElts = VT.getVectorNumElements();
4024
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004025 if (VT.is512BitVector())
4026 return false;
4027
Craig Topper94438ba2011-12-16 08:06:31 +00004028 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4029 "Unsupported vector type for unpckh");
4030
Craig Topper5a529e42013-01-18 06:44:29 +00004031 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004032 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004033 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004034
Craig Topper94438ba2011-12-16 08:06:31 +00004035 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4036 // independently on 128-bit lanes.
4037 unsigned NumLanes = VT.getSizeInBits()/128;
4038 unsigned NumLaneElts = NumElts/NumLanes;
4039
Craig Topper59235472013-08-06 07:23:12 +00004040 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4041 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4042 int BitI = Mask[l+i];
4043 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004044 if (!isUndefOrEqual(BitI, j))
4045 return false;
4046 if (!isUndefOrEqual(BitI1, j))
4047 return false;
4048 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004049 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004050 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004051}
4052
Evan Cheng017dcc62006-04-21 01:05:10 +00004053/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4054/// specifies a shuffle of elements that is suitable for input to MOVSS,
4055/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004056static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004057 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004058 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004059 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004060 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004061
Craig Topperc612d792012-01-02 09:17:37 +00004062 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004063
Nate Begeman9008ca62009-04-27 18:41:29 +00004064 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004065 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004066
Craig Topperc612d792012-01-02 09:17:37 +00004067 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004068 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004069 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004070
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004071 return true;
4072}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004073
Craig Topper70b883b2011-11-28 10:14:51 +00004074/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004075/// as permutations between 128-bit chunks or halves. As an example: this
4076/// shuffle bellow:
4077/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4078/// The first half comes from the second half of V1 and the second half from the
4079/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004080static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004081 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004082 return false;
4083
4084 // The shuffle result is divided into half A and half B. In total the two
4085 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4086 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004087 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004088 bool MatchA = false, MatchB = false;
4089
4090 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004091 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004092 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4093 MatchA = true;
4094 break;
4095 }
4096 }
4097
4098 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004099 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004100 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4101 MatchB = true;
4102 break;
4103 }
4104 }
4105
4106 return MatchA && MatchB;
4107}
4108
Craig Topper70b883b2011-11-28 10:14:51 +00004109/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4110/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004111static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004112 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004113
Craig Topperc612d792012-01-02 09:17:37 +00004114 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004115
Craig Topperc612d792012-01-02 09:17:37 +00004116 unsigned FstHalf = 0, SndHalf = 0;
4117 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004118 if (SVOp->getMaskElt(i) > 0) {
4119 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4120 break;
4121 }
4122 }
Craig Topperc612d792012-01-02 09:17:37 +00004123 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004124 if (SVOp->getMaskElt(i) > 0) {
4125 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4126 break;
4127 }
4128 }
4129
4130 return (FstHalf | (SndHalf << 4));
4131}
4132
Craig Topperd36e1ef2013-08-15 08:38:25 +00004133// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004134static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004135 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4136 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004137 return false;
4138
Craig Topperd36e1ef2013-08-15 08:38:25 +00004139 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004140 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004141 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4142 for (unsigned i = 0; i != NumElts; ++i) {
4143 if (Mask[i] < 0)
4144 continue;
4145 Imm8 |= Mask[i] << (i*2);
4146 }
4147 return true;
4148 }
4149
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004150 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004151 SmallVector<int, 4> MaskVal(LaneSize, -1);
4152
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004153 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4154 for (unsigned i = 0; i != LaneSize; ++i) {
4155 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4156 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004157 if (Mask[i+l] < 0)
4158 continue;
4159 if (MaskVal[i] < 0) {
4160 MaskVal[i] = Mask[i+l] - l;
4161 Imm8 |= MaskVal[i] << (i*2);
4162 continue;
4163 }
4164 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004165 return false;
4166 }
4167 }
4168 return true;
4169}
4170
Craig Topper70b883b2011-11-28 10:14:51 +00004171/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004172/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4173/// Note that VPERMIL mask matching is different depending whether theunderlying
4174/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4175/// to the same elements of the low, but to the higher half of the source.
4176/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004177/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004178static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4179 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4180 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004181 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004182 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004183 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004184
Craig Topperc612d792012-01-02 09:17:37 +00004185 unsigned NumLanes = VT.getSizeInBits()/128;
4186 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004187 // 2 or 4 elements in one lane
4188
4189 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004190 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004191 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004192 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004193 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004194 if (symetricMaskRequired) {
4195 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4196 ExpectedMaskVal[i] = Mask[i+l] - l;
4197 continue;
4198 }
4199 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4200 return false;
4201 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004202 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004203 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004204 return true;
4205}
4206
Craig Topper5aaffa82012-02-19 02:53:47 +00004207/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004208/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004209/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004210static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004211 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004212 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004213 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004214
4215 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004216 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004217 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004218
Nate Begeman9008ca62009-04-27 18:41:29 +00004219 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004220 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004221
Craig Topperc612d792012-01-02 09:17:37 +00004222 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004223 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4224 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4225 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004226 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004227
Evan Cheng39623da2006-04-20 08:58:49 +00004228 return true;
4229}
4230
Evan Chengd9539472006-04-14 21:59:03 +00004231/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4232/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004233/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004234static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004235 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004236 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004237 return false;
4238
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004239 unsigned NumElems = VT.getVectorNumElements();
4240
Craig Topper5a529e42013-01-18 06:44:29 +00004241 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004242 (VT.is256BitVector() && NumElems != 8) ||
4243 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004244 return false;
4245
4246 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004247 for (unsigned i = 0; i != NumElems; i += 2)
4248 if (!isUndefOrEqual(Mask[i], i+1) ||
4249 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004250 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004251
4252 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004253}
4254
4255/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4256/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004257/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004258static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004259 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004260 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004261 return false;
4262
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004263 unsigned NumElems = VT.getVectorNumElements();
4264
Craig Topper5a529e42013-01-18 06:44:29 +00004265 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004266 (VT.is256BitVector() && NumElems != 8) ||
4267 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004268 return false;
4269
4270 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004271 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004272 if (!isUndefOrEqual(Mask[i], i) ||
4273 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004274 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004275
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004276 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004277}
4278
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004279/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4280/// specifies a shuffle of elements that is suitable for input to 256-bit
4281/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004282static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004283 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004284 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004285
Craig Topper7a9a28b2012-08-12 02:23:29 +00004286 unsigned NumElts = VT.getVectorNumElements();
4287 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004288 return false;
4289
Craig Topperc612d792012-01-02 09:17:37 +00004290 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004291 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004292 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004293 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004294 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004295 return false;
4296 return true;
4297}
4298
Evan Cheng0b457f02008-09-25 20:50:48 +00004299/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004300/// specifies a shuffle of elements that is suitable for input to 128-bit
4301/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004302static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004303 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004304 return false;
4305
Craig Topperc612d792012-01-02 09:17:37 +00004306 unsigned e = VT.getVectorNumElements() / 2;
4307 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004308 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004309 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004310 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004311 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004312 return false;
4313 return true;
4314}
4315
Elena Demikhovsky83952512013-07-31 11:35:14 +00004316/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004317/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004318/// suitable for instruction that extract 128 or 256 bit vectors
4319static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4320 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004321 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4322 return false;
4323
Elena Demikhovsky83952512013-07-31 11:35:14 +00004324 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004325 uint64_t Index =
4326 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4327
Craig Topper5a0910b2013-08-15 02:33:50 +00004328 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004329 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004330 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004331
4332 return Result;
4333}
4334
Elena Demikhovsky83952512013-07-31 11:35:14 +00004335/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004336/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004337/// insertion of 128 or 256-bit subvectors
4338static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4339 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004340 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4341 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004342 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004343 uint64_t Index =
4344 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4345
Craig Topper5a0910b2013-08-15 02:33:50 +00004346 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004347 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004348 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004349
4350 return Result;
4351}
4352
Elena Demikhovsky83952512013-07-31 11:35:14 +00004353bool X86::isVINSERT128Index(SDNode *N) {
4354 return isVINSERTIndex(N, 128);
4355}
4356
4357bool X86::isVINSERT256Index(SDNode *N) {
4358 return isVINSERTIndex(N, 256);
4359}
4360
4361bool X86::isVEXTRACT128Index(SDNode *N) {
4362 return isVEXTRACTIndex(N, 128);
4363}
4364
4365bool X86::isVEXTRACT256Index(SDNode *N) {
4366 return isVEXTRACTIndex(N, 256);
4367}
4368
Evan Cheng63d33002006-03-22 08:01:21 +00004369/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004370/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004371/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004372static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004373 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004374
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004375 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004376 "Unsupported vector type for PSHUF/SHUFP");
4377
4378 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4379 // independently on 128-bit lanes.
4380 unsigned NumElts = VT.getVectorNumElements();
4381 unsigned NumLanes = VT.getSizeInBits()/128;
4382 unsigned NumLaneElts = NumElts/NumLanes;
4383
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004384 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4385 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004386
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004387 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004388 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004389 for (unsigned i = 0; i != NumElts; ++i) {
4390 int Elt = N->getMaskElt(i);
4391 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004392 Elt &= NumLaneElts - 1;
4393 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004394 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004395 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004396
Evan Cheng63d33002006-03-22 08:01:21 +00004397 return Mask;
4398}
4399
Evan Cheng506d3df2006-03-29 23:07:14 +00004400/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004401/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004402static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004403 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004404
4405 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4406 "Unsupported vector type for PSHUFHW");
4407
4408 unsigned NumElts = VT.getVectorNumElements();
4409
Evan Cheng506d3df2006-03-29 23:07:14 +00004410 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004411 for (unsigned l = 0; l != NumElts; l += 8) {
4412 // 8 nodes per lane, but we only care about the last 4.
4413 for (unsigned i = 0; i < 4; ++i) {
4414 int Elt = N->getMaskElt(l+i+4);
4415 if (Elt < 0) continue;
4416 Elt &= 0x3; // only 2-bits.
4417 Mask |= Elt << (i * 2);
4418 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004419 }
Craig Topper6b28d352012-05-03 07:12:59 +00004420
Evan Cheng506d3df2006-03-29 23:07:14 +00004421 return Mask;
4422}
4423
4424/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004425/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004426static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004427 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004428
4429 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4430 "Unsupported vector type for PSHUFHW");
4431
4432 unsigned NumElts = VT.getVectorNumElements();
4433
Evan Cheng506d3df2006-03-29 23:07:14 +00004434 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004435 for (unsigned l = 0; l != NumElts; l += 8) {
4436 // 8 nodes per lane, but we only care about the first 4.
4437 for (unsigned i = 0; i < 4; ++i) {
4438 int Elt = N->getMaskElt(l+i);
4439 if (Elt < 0) continue;
4440 Elt &= 0x3; // only 2-bits
4441 Mask |= Elt << (i * 2);
4442 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004443 }
Craig Topper6b28d352012-05-03 07:12:59 +00004444
Evan Cheng506d3df2006-03-29 23:07:14 +00004445 return Mask;
4446}
4447
Nate Begemana09008b2009-10-19 02:17:23 +00004448/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4449/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004450static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004451 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004452 unsigned EltSize = VT.is512BitVector() ? 1 :
4453 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004454
Craig Topper0e2037b2012-01-20 05:53:00 +00004455 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004456 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004457 unsigned NumLaneElts = NumElts/NumLanes;
4458
4459 int Val = 0;
4460 unsigned i;
4461 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004462 Val = SVOp->getMaskElt(i);
4463 if (Val >= 0)
4464 break;
4465 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004466 if (Val >= (int)NumElts)
4467 Val -= NumElts - NumLaneElts;
4468
Eli Friedman63f8dde2011-07-25 21:36:45 +00004469 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004470 return (Val - i) * EltSize;
4471}
4472
Elena Demikhovsky83952512013-07-31 11:35:14 +00004473static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4474 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004475 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004476 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004477
4478 uint64_t Index =
4479 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4480
Craig Topper5a0910b2013-08-15 02:33:50 +00004481 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004482 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004483
Elena Demikhovsky83952512013-07-31 11:35:14 +00004484 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004485 return Index / NumElemsPerChunk;
4486}
4487
Elena Demikhovsky83952512013-07-31 11:35:14 +00004488static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4489 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004490 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004491 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004492
4493 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004494 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004495
Craig Topper5a0910b2013-08-15 02:33:50 +00004496 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004497 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004498
Elena Demikhovsky83952512013-07-31 11:35:14 +00004499 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004500 return Index / NumElemsPerChunk;
4501}
4502
Elena Demikhovsky83952512013-07-31 11:35:14 +00004503/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4504/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4505/// and VINSERTI128 instructions.
4506unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4507 return getExtractVEXTRACTImmediate(N, 128);
4508}
4509
4510/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4511/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4512/// and VINSERTI64x4 instructions.
4513unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4514 return getExtractVEXTRACTImmediate(N, 256);
4515}
4516
4517/// getInsertVINSERT128Immediate - Return the appropriate immediate
4518/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4519/// and VINSERTI128 instructions.
4520unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4521 return getInsertVINSERTImmediate(N, 128);
4522}
4523
4524/// getInsertVINSERT256Immediate - Return the appropriate immediate
4525/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4526/// and VINSERTI64x4 instructions.
4527unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4528 return getInsertVINSERTImmediate(N, 256);
4529}
4530
Evan Cheng37b73872009-07-30 08:33:02 +00004531/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4532/// constant +0.0.
4533bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004534 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4535 return CN->isNullValue();
4536 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4537 return CFP->getValueAPF().isPosZero();
4538 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004539}
4540
Nate Begeman9008ca62009-04-27 18:41:29 +00004541/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4542/// their permute mask.
4543static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4544 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004545 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004546 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004547 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004548
Nate Begeman5a5ca152009-04-29 05:20:52 +00004549 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004550 int Idx = SVOp->getMaskElt(i);
4551 if (Idx >= 0) {
4552 if (Idx < (int)NumElems)
4553 Idx += NumElems;
4554 else
4555 Idx -= NumElems;
4556 }
4557 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004558 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004559 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004560 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004561}
4562
Evan Cheng533a0aa2006-04-19 20:35:22 +00004563/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4564/// match movhlps. The lower half elements should come from upper half of
4565/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004566/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004567static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004568 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004569 return false;
4570 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004571 return false;
4572 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004573 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004574 return false;
4575 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004576 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004577 return false;
4578 return true;
4579}
4580
Evan Cheng5ced1d82006-04-06 23:23:56 +00004581/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004582/// is promoted to a vector. It also returns the LoadSDNode by reference if
4583/// required.
4584static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004585 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4586 return false;
4587 N = N->getOperand(0).getNode();
4588 if (!ISD::isNON_EXTLoad(N))
4589 return false;
4590 if (LD)
4591 *LD = cast<LoadSDNode>(N);
4592 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004593}
4594
Dan Gohman65fd6562011-11-03 21:49:52 +00004595// Test whether the given value is a vector value which will be legalized
4596// into a load.
4597static bool WillBeConstantPoolLoad(SDNode *N) {
4598 if (N->getOpcode() != ISD::BUILD_VECTOR)
4599 return false;
4600
4601 // Check for any non-constant elements.
4602 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4603 switch (N->getOperand(i).getNode()->getOpcode()) {
4604 case ISD::UNDEF:
4605 case ISD::ConstantFP:
4606 case ISD::Constant:
4607 break;
4608 default:
4609 return false;
4610 }
4611
4612 // Vectors of all-zeros and all-ones are materialized with special
4613 // instructions rather than being loaded.
4614 return !ISD::isBuildVectorAllZeros(N) &&
4615 !ISD::isBuildVectorAllOnes(N);
4616}
4617
Evan Cheng533a0aa2006-04-19 20:35:22 +00004618/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4619/// match movlp{s|d}. The lower half elements should come from lower half of
4620/// V1 (and in order), and the upper half elements should come from the upper
4621/// half of V2 (and in order). And since V1 will become the source of the
4622/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004623static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004624 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004625 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004626 return false;
4627
Evan Cheng466685d2006-10-09 20:57:25 +00004628 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004629 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004630 // Is V2 is a vector load, don't do this transformation. We will try to use
4631 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004632 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004633 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004634
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004635 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004636
Evan Cheng533a0aa2006-04-19 20:35:22 +00004637 if (NumElems != 2 && NumElems != 4)
4638 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004639 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004640 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004641 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004642 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004643 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004644 return false;
4645 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004646}
4647
Evan Cheng39623da2006-04-20 08:58:49 +00004648/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4649/// all the same.
4650static bool isSplatVector(SDNode *N) {
4651 if (N->getOpcode() != ISD::BUILD_VECTOR)
4652 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004653
Dan Gohman475871a2008-07-27 21:46:04 +00004654 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004655 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4656 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004657 return false;
4658 return true;
4659}
4660
Evan Cheng213d2cf2007-05-17 18:45:50 +00004661/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004662/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004663/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004664static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004665 SDValue V1 = N->getOperand(0);
4666 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004667 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4668 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004669 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004670 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004671 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004672 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4673 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004674 if (Opc != ISD::BUILD_VECTOR ||
4675 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004676 return false;
4677 } else if (Idx >= 0) {
4678 unsigned Opc = V1.getOpcode();
4679 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4680 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004681 if (Opc != ISD::BUILD_VECTOR ||
4682 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004683 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004684 }
4685 }
4686 return true;
4687}
4688
4689/// getZeroVector - Returns a vector of specified type with all zero elements.
4690///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004691static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004692 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004693 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004694
Dale Johannesen0488fb62010-09-30 23:57:10 +00004695 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004696 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004697 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004698 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004699 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004700 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4701 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4702 } else { // SSE1
4703 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4704 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4705 }
Craig Topper5a529e42013-01-18 06:44:29 +00004706 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004707 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004708 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4709 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004710 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4711 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004712 } else {
4713 // 256-bit logic and arithmetic instructions in AVX are all
4714 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4715 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4716 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004717 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4718 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004719 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004720 } else if (VT.is512BitVector()) { // AVX-512
4721 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4722 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4723 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4724 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004725 } else
4726 llvm_unreachable("Unexpected vector type");
4727
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004728 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004729}
4730
Chris Lattner8a594482007-11-25 00:24:49 +00004731/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004732/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4733/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4734/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004735static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004736 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004737 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004738
Owen Anderson825b72b2009-08-11 20:47:22 +00004739 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004740 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004741 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004742 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004743 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004744 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4745 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004746 } else { // AVX
4747 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004748 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004749 }
Craig Topper5a529e42013-01-18 06:44:29 +00004750 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004751 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004752 } else
4753 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004754
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004755 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004756}
4757
Evan Cheng39623da2006-04-20 08:58:49 +00004758/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4759/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004760static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004761 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004762 if (Mask[i] > (int)NumElems) {
4763 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004764 }
Evan Cheng39623da2006-04-20 08:58:49 +00004765 }
Evan Cheng39623da2006-04-20 08:58:49 +00004766}
4767
Evan Cheng017dcc62006-04-21 01:05:10 +00004768/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4769/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004770static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004771 SDValue V2) {
4772 unsigned NumElems = VT.getVectorNumElements();
4773 SmallVector<int, 8> Mask;
4774 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004775 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004776 Mask.push_back(i);
4777 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004778}
4779
Nate Begeman9008ca62009-04-27 18:41:29 +00004780/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004781static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004782 SDValue V2) {
4783 unsigned NumElems = VT.getVectorNumElements();
4784 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004785 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004786 Mask.push_back(i);
4787 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004788 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004789 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004790}
4791
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004792/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004793static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004794 SDValue V2) {
4795 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004796 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004797 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004798 Mask.push_back(i + Half);
4799 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004800 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004801 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004802}
4803
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004804// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004805// a generic shuffle instruction because the target has no such instructions.
4806// Generate shuffles which repeat i16 and i8 several times until they can be
4807// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004808static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004809 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004810 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004811 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004812
Nate Begeman9008ca62009-04-27 18:41:29 +00004813 while (NumElems > 4) {
4814 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004815 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004816 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004817 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004818 EltNo -= NumElems/2;
4819 }
4820 NumElems >>= 1;
4821 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004822 return V;
4823}
Eric Christopherfd179292009-08-27 18:07:15 +00004824
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004825/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4826static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004827 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004828 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004829
Craig Topper5a529e42013-01-18 06:44:29 +00004830 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004831 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004832 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004833 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4834 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004835 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004836 // To use VPERMILPS to splat scalars, the second half of indicies must
4837 // refer to the higher part, which is a duplication of the lower one,
4838 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004839 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4840 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004841
4842 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4843 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4844 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004845 } else
4846 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004847
4848 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4849}
4850
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004851/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004852static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004853 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004854 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004855 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004856
4857 int EltNo = SV->getSplatIndex();
4858 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004859 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004860
Craig Topper5a529e42013-01-18 06:44:29 +00004861 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4862 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004863
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004864 // Extract the 128-bit part containing the splat element and update
4865 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004866 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004867 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4868 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004869 EltNo -= NumElems/2;
4870 }
4871
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004872 // All i16 and i8 vector types can't be used directly by a generic shuffle
4873 // instruction because the target has no such instruction. Generate shuffles
4874 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004875 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004876 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004877 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004878 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004879
4880 // Recreate the 256-bit vector and place the same 128-bit vector
4881 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004882 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004883 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004884 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004885 }
4886
4887 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004888}
4889
Evan Chengba05f722006-04-21 23:03:30 +00004890/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004891/// vector of zero or undef vector. This produces a shuffle where the low
4892/// element of V2 is swizzled into the zero/undef vector, landing at element
4893/// 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 +00004894static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004895 bool IsZero,
4896 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004897 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004898 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004899 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004900 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004901 unsigned NumElems = VT.getVectorNumElements();
4902 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004903 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004904 // If this is the insertion idx, put the low elt of V2 here.
4905 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004906 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004907}
4908
Craig Toppera1ffc682012-03-20 06:42:26 +00004909/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4910/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004911/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004912static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004913 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004914 unsigned NumElems = VT.getVectorNumElements();
4915 SDValue ImmN;
4916
Craig Topper89f4e662012-03-20 07:17:59 +00004917 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004918 switch(N->getOpcode()) {
4919 case X86ISD::SHUFP:
4920 ImmN = N->getOperand(N->getNumOperands()-1);
4921 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4922 break;
4923 case X86ISD::UNPCKH:
4924 DecodeUNPCKHMask(VT, Mask);
4925 break;
4926 case X86ISD::UNPCKL:
4927 DecodeUNPCKLMask(VT, Mask);
4928 break;
4929 case X86ISD::MOVHLPS:
4930 DecodeMOVHLPSMask(NumElems, Mask);
4931 break;
4932 case X86ISD::MOVLHPS:
4933 DecodeMOVLHPSMask(NumElems, Mask);
4934 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004935 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004936 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004937 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004938 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004939 case X86ISD::PSHUFD:
4940 case X86ISD::VPERMILP:
4941 ImmN = N->getOperand(N->getNumOperands()-1);
4942 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004943 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004944 break;
4945 case X86ISD::PSHUFHW:
4946 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004947 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004948 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004949 break;
4950 case X86ISD::PSHUFLW:
4951 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004952 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004953 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004954 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004955 case X86ISD::VPERMI:
4956 ImmN = N->getOperand(N->getNumOperands()-1);
4957 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4958 IsUnary = true;
4959 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004960 case X86ISD::MOVSS:
4961 case X86ISD::MOVSD: {
4962 // The index 0 always comes from the first element of the second source,
4963 // this is why MOVSS and MOVSD are used in the first place. The other
4964 // elements come from the other positions of the first source vector
4965 Mask.push_back(NumElems);
4966 for (unsigned i = 1; i != NumElems; ++i) {
4967 Mask.push_back(i);
4968 }
4969 break;
4970 }
4971 case X86ISD::VPERM2X128:
4972 ImmN = N->getOperand(N->getNumOperands()-1);
4973 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004974 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004975 break;
4976 case X86ISD::MOVDDUP:
4977 case X86ISD::MOVLHPD:
4978 case X86ISD::MOVLPD:
4979 case X86ISD::MOVLPS:
4980 case X86ISD::MOVSHDUP:
4981 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004982 // Not yet implemented
4983 return false;
4984 default: llvm_unreachable("unknown target shuffle node");
4985 }
4986
4987 return true;
4988}
4989
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004990/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4991/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004992static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004993 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004994 if (Depth == 6)
4995 return SDValue(); // Limit search depth.
4996
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004997 SDValue V = SDValue(N, 0);
4998 EVT VT = V.getValueType();
4999 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005000
5001 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5002 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005003 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005004
Craig Topper3d092db2012-03-21 02:14:01 +00005005 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005006 return DAG.getUNDEF(VT.getVectorElementType());
5007
Craig Topperd156dc12012-02-06 07:17:51 +00005008 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005009 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5010 : SV->getOperand(1);
5011 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005012 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005013
5014 // Recurse into target specific vector shuffles to find scalars.
5015 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005016 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005017 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005018 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005019 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005020
Craig Topperd978c542012-05-06 19:46:21 +00005021 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005022 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005023
Craig Topper3d092db2012-03-21 02:14:01 +00005024 int Elt = ShuffleMask[Index];
5025 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005026 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005027
Craig Topper3d092db2012-03-21 02:14:01 +00005028 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005029 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005030 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005031 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005032 }
5033
5034 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005035 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005036 V = V.getOperand(0);
5037 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005038 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005039
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005040 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005041 return SDValue();
5042 }
5043
5044 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5045 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005046 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005047
5048 if (V.getOpcode() == ISD::BUILD_VECTOR)
5049 return V.getOperand(Index);
5050
5051 return SDValue();
5052}
5053
5054/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5055/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005056/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005057/// We count undefs as zeros until PreferredNum is reached.
5058static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5059 unsigned NumElems, bool ZerosFromLeft,
5060 SelectionDAG &DAG,
5061 unsigned PreferredNum = -1U) {
5062 unsigned NumZeros = 0;
5063 for (unsigned i = 0; i != NumElems; ++i) {
5064 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005065 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005066 if (!Elt.getNode())
5067 break;
5068
5069 if (X86::isZeroNode(Elt))
5070 ++NumZeros;
5071 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5072 NumZeros = std::min(NumZeros + 1, PreferredNum);
5073 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005074 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005075 }
5076
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005077 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005078}
5079
Craig Topper3d092db2012-03-21 02:14:01 +00005080/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5081/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005082/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5083static
Craig Topper3d092db2012-03-21 02:14:01 +00005084bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5085 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5086 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005087 bool SeenV1 = false;
5088 bool SeenV2 = false;
5089
Craig Topper3d092db2012-03-21 02:14:01 +00005090 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005091 int Idx = SVOp->getMaskElt(i);
5092 // Ignore undef indicies
5093 if (Idx < 0)
5094 continue;
5095
Craig Topper3d092db2012-03-21 02:14:01 +00005096 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005097 SeenV1 = true;
5098 else
5099 SeenV2 = true;
5100
5101 // Only accept consecutive elements from the same vector
5102 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5103 return false;
5104 }
5105
5106 OpNum = SeenV1 ? 0 : 1;
5107 return true;
5108}
5109
5110/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5111/// logical left shift of a vector.
5112static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5113 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005114 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005115 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005116 unsigned NumZeros = getNumOfConsecutiveZeros(
5117 SVOp, NumElems, false /* check zeros from right */, DAG,
5118 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005119 unsigned OpSrc;
5120
5121 if (!NumZeros)
5122 return false;
5123
5124 // Considering the elements in the mask that are not consecutive zeros,
5125 // check if they consecutively come from only one of the source vectors.
5126 //
5127 // V1 = {X, A, B, C} 0
5128 // \ \ \ /
5129 // vector_shuffle V1, V2 <1, 2, 3, X>
5130 //
5131 if (!isShuffleMaskConsecutive(SVOp,
5132 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005133 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005134 NumZeros, // Where to start looking in the src vector
5135 NumElems, // Number of elements in vector
5136 OpSrc)) // Which source operand ?
5137 return false;
5138
5139 isLeft = false;
5140 ShAmt = NumZeros;
5141 ShVal = SVOp->getOperand(OpSrc);
5142 return true;
5143}
5144
5145/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5146/// logical left shift of a vector.
5147static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5148 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005149 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005150 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005151 unsigned NumZeros = getNumOfConsecutiveZeros(
5152 SVOp, NumElems, true /* check zeros from left */, DAG,
5153 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005154 unsigned OpSrc;
5155
5156 if (!NumZeros)
5157 return false;
5158
5159 // Considering the elements in the mask that are not consecutive zeros,
5160 // check if they consecutively come from only one of the source vectors.
5161 //
5162 // 0 { A, B, X, X } = V2
5163 // / \ / /
5164 // vector_shuffle V1, V2 <X, X, 4, 5>
5165 //
5166 if (!isShuffleMaskConsecutive(SVOp,
5167 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005168 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005169 0, // Where to start looking in the src vector
5170 NumElems, // Number of elements in vector
5171 OpSrc)) // Which source operand ?
5172 return false;
5173
5174 isLeft = true;
5175 ShAmt = NumZeros;
5176 ShVal = SVOp->getOperand(OpSrc);
5177 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005178}
5179
5180/// isVectorShift - Returns true if the shuffle can be implemented as a
5181/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005182static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005183 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005184 // Although the logic below support any bitwidth size, there are no
5185 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005186 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005187 return false;
5188
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005189 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5190 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5191 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005192
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005193 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005194}
5195
Evan Chengc78d3b42006-04-24 18:01:45 +00005196/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5197///
Dan Gohman475871a2008-07-27 21:46:04 +00005198static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005199 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005200 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005201 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005202 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005203 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005204 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005205
Andrew Trickac6d9be2013-05-25 02:42:55 +00005206 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005207 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005208 bool First = true;
5209 for (unsigned i = 0; i < 16; ++i) {
5210 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5211 if (ThisIsNonZero && First) {
5212 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005213 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005214 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005215 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005216 First = false;
5217 }
5218
5219 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005220 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005221 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5222 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005223 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005224 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005225 }
5226 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005227 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5228 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5229 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005230 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005231 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005232 } else
5233 ThisElt = LastElt;
5234
Gabor Greifba36cb52008-08-28 21:40:38 +00005235 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005236 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005237 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005238 }
5239 }
5240
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005241 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005242}
5243
Bill Wendlinga348c562007-03-22 18:42:45 +00005244/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005245///
Dan Gohman475871a2008-07-27 21:46:04 +00005246static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005247 unsigned NumNonZero, unsigned NumZero,
5248 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005249 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005250 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005251 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005252 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005253
Andrew Trickac6d9be2013-05-25 02:42:55 +00005254 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005255 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005256 bool First = true;
5257 for (unsigned i = 0; i < 8; ++i) {
5258 bool isNonZero = (NonZeros & (1 << i)) != 0;
5259 if (isNonZero) {
5260 if (First) {
5261 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005262 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005263 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005264 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005265 First = false;
5266 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005267 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005268 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005269 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005270 }
5271 }
5272
5273 return V;
5274}
5275
Evan Chengf26ffe92008-05-29 08:22:04 +00005276/// getVShift - Return a vector logical shift node.
5277///
Owen Andersone50ed302009-08-10 22:56:29 +00005278static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005280 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005281 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005282 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005283 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005284 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5285 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005286 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005287 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005288 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005289}
5290
Craig Topperff79bc62013-08-18 08:53:01 +00005291static SDValue
5292LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005293
Evan Chengc3630942009-12-09 21:00:30 +00005294 // Check if the scalar load can be widened into a vector load. And if
5295 // the address is "base + cst" see if the cst can be "absorbed" into
5296 // the shuffle mask.
5297 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5298 SDValue Ptr = LD->getBasePtr();
5299 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5300 return SDValue();
5301 EVT PVT = LD->getValueType(0);
5302 if (PVT != MVT::i32 && PVT != MVT::f32)
5303 return SDValue();
5304
5305 int FI = -1;
5306 int64_t Offset = 0;
5307 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5308 FI = FINode->getIndex();
5309 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005310 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005311 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5312 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5313 Offset = Ptr.getConstantOperandVal(1);
5314 Ptr = Ptr.getOperand(0);
5315 } else {
5316 return SDValue();
5317 }
5318
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005319 // FIXME: 256-bit vector instructions don't require a strict alignment,
5320 // improve this code to support it better.
5321 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005322 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005323 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005324 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005325 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005326 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005327 // Can't change the alignment. FIXME: It's possible to compute
5328 // the exact stack offset and reference FI + adjust offset instead.
5329 // If someone *really* cares about this. That's the way to implement it.
5330 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005331 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005332 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005333 }
5334 }
5335
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005336 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005337 // Ptr + (Offset & ~15).
5338 if (Offset < 0)
5339 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005340 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005341 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005342 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005343 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005344 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005345 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5346
5347 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005348 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005349
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005350 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5351 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005352 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005353 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005354
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005355 SmallVector<int, 8> Mask;
5356 for (unsigned i = 0; i != NumElems; ++i)
5357 Mask.push_back(EltNo);
5358
Craig Toppercc3000632012-01-30 07:50:31 +00005359 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005360 }
5361
5362 return SDValue();
5363}
5364
Michael J. Spencerec38de22010-10-10 22:04:20 +00005365/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5366/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005367/// load which has the same value as a build_vector whose operands are 'elts'.
5368///
5369/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005370///
Nate Begeman1449f292010-03-24 22:19:06 +00005371/// FIXME: we'd also like to handle the case where the last elements are zero
5372/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5373/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005374static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005375 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005376 EVT EltVT = VT.getVectorElementType();
5377 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005378
Nate Begemanfdea31a2010-03-24 20:49:50 +00005379 LoadSDNode *LDBase = NULL;
5380 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005381
Nate Begeman1449f292010-03-24 22:19:06 +00005382 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005383 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005384 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005385 for (unsigned i = 0; i < NumElems; ++i) {
5386 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005387
Nate Begemanfdea31a2010-03-24 20:49:50 +00005388 if (!Elt.getNode() ||
5389 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5390 return SDValue();
5391 if (!LDBase) {
5392 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5393 return SDValue();
5394 LDBase = cast<LoadSDNode>(Elt.getNode());
5395 LastLoadedElt = i;
5396 continue;
5397 }
5398 if (Elt.getOpcode() == ISD::UNDEF)
5399 continue;
5400
5401 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5402 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5403 return SDValue();
5404 LastLoadedElt = i;
5405 }
Nate Begeman1449f292010-03-24 22:19:06 +00005406
5407 // If we have found an entire vector of loads and undefs, then return a large
5408 // load of the entire vector width starting at the base pointer. If we found
5409 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005410 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005411 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005412 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005413 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5414 LDBase->getPointerInfo(),
5415 LDBase->isVolatile(), LDBase->isNonTemporal(),
5416 LDBase->isInvariant(), 0);
5417 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5418 LDBase->getPointerInfo(),
5419 LDBase->isVolatile(), LDBase->isNonTemporal(),
5420 LDBase->isInvariant(), LDBase->getAlignment());
5421
5422 if (LDBase->hasAnyUseOfValue(1)) {
5423 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5424 SDValue(LDBase, 1),
5425 SDValue(NewLd.getNode(), 1));
5426 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5427 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5428 SDValue(NewLd.getNode(), 1));
5429 }
5430
5431 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005432 }
5433 if (NumElems == 4 && LastLoadedElt == 1 &&
5434 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005435 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5436 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005437 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005438 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5439 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005440 LDBase->getPointerInfo(),
5441 LDBase->getAlignment(),
5442 false/*isVolatile*/, true/*ReadMem*/,
5443 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005444
5445 // Make sure the newly-created LOAD is in the same position as LDBase in
5446 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5447 // update uses of LDBase's output chain to use the TokenFactor.
5448 if (LDBase->hasAnyUseOfValue(1)) {
5449 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5450 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5451 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5452 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5453 SDValue(ResNode.getNode(), 1));
5454 }
5455
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005456 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005457 }
5458 return SDValue();
5459}
5460
Nadav Rotem9d68b062012-04-08 12:54:54 +00005461/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5462/// to generate a splat value for the following cases:
5463/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005464/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005465/// a scalar load, or a constant.
5466/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005467/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005468static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5469 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005470 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005471 return SDValue();
5472
Craig Topper5a0910b2013-08-15 02:33:50 +00005473 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005474 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005475
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005476 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005477 "Unsupported vector type for broadcast.");
5478
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005479 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005480 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005481
Nadav Rotem9d68b062012-04-08 12:54:54 +00005482 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005483 default:
5484 // Unknown pattern found.
5485 return SDValue();
5486
5487 case ISD::BUILD_VECTOR: {
5488 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005489 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005490 return SDValue();
5491
Nadav Rotem9d68b062012-04-08 12:54:54 +00005492 Ld = Op.getOperand(0);
5493 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5494 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005495
5496 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005497 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005498 // Constants may have multiple users.
5499 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005500 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005501 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005502 }
5503
5504 case ISD::VECTOR_SHUFFLE: {
5505 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5506
5507 // Shuffles must have a splat mask where the first element is
5508 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005509 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005510 return SDValue();
5511
5512 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005513 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005514 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5515
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005516 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005517 return SDValue();
5518
5519 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005520 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005521 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5522 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5523 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005524
5525 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005526 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005527 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005528
5529 // The scalar_to_vector node and the suspected
5530 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005531 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005532
5533 // AVX-512 has register version of the broadcast
5534 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5535 Ld.getValueType().getSizeInBits() >= 32;
5536 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5537 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005538 return SDValue();
5539 break;
5540 }
5541 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005542
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005543 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005544
5545 // Handle the broadcasting a single constant scalar from the constant pool
5546 // into a vector. On Sandybridge it is still better to load a constant vector
5547 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005548 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005549 EVT CVT = Ld.getValueType();
5550 assert(!CVT.isVector() && "Must not broadcast a vector type");
5551 unsigned ScalarSize = CVT.getSizeInBits();
5552
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005553 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005554 const Constant *C = 0;
5555 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5556 C = CI->getConstantIntValue();
5557 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5558 C = CF->getConstantFPValue();
5559
5560 assert(C && "Invalid constant type");
5561
Craig Topper158ec072013-08-14 07:34:43 +00005562 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5563 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005564 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005565 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005566 MachinePointerInfo::getConstantPool(),
5567 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005568
Nadav Rotem9d68b062012-04-08 12:54:54 +00005569 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5570 }
5571 }
5572
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005573 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005574 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5575
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005576 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005577 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005578 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005579 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5580
5581 // The scalar source must be a normal load.
5582 if (!IsLoad)
5583 return SDValue();
5584
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005585 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005586 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005587
Craig Toppera9376332012-01-10 08:23:59 +00005588 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005589 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005590 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005591 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005592 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005593 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005594
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005595 // Unsupported broadcast.
5596 return SDValue();
5597}
5598
Craig Topper158ec072013-08-14 07:34:43 +00005599static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005600 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005601
5602 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005603 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5604 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005605 return SDValue();
5606
Andrew Trickac6d9be2013-05-25 02:42:55 +00005607 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005608 unsigned NumElems = Op.getNumOperands();
5609
5610 SDValue VecIn1;
5611 SDValue VecIn2;
5612 SmallVector<unsigned, 4> InsertIndices;
5613 SmallVector<int, 8> Mask(NumElems, -1);
5614
5615 for (unsigned i = 0; i != NumElems; ++i) {
5616 unsigned Opc = Op.getOperand(i).getOpcode();
5617
5618 if (Opc == ISD::UNDEF)
5619 continue;
5620
5621 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5622 // Quit if more than 1 elements need inserting.
5623 if (InsertIndices.size() > 1)
5624 return SDValue();
5625
5626 InsertIndices.push_back(i);
5627 continue;
5628 }
5629
5630 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5631 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5632
5633 // Quit if extracted from vector of different type.
5634 if (ExtractedFromVec.getValueType() != VT)
5635 return SDValue();
5636
5637 // Quit if non-constant index.
5638 if (!isa<ConstantSDNode>(ExtIdx))
5639 return SDValue();
5640
5641 if (VecIn1.getNode() == 0)
5642 VecIn1 = ExtractedFromVec;
5643 else if (VecIn1 != ExtractedFromVec) {
5644 if (VecIn2.getNode() == 0)
5645 VecIn2 = ExtractedFromVec;
5646 else if (VecIn2 != ExtractedFromVec)
5647 // Quit if more than 2 vectors to shuffle
5648 return SDValue();
5649 }
5650
5651 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5652
5653 if (ExtractedFromVec == VecIn1)
5654 Mask[i] = Idx;
5655 else if (ExtractedFromVec == VecIn2)
5656 Mask[i] = Idx + NumElems;
5657 }
5658
5659 if (VecIn1.getNode() == 0)
5660 return SDValue();
5661
5662 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5663 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5664 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5665 unsigned Idx = InsertIndices[i];
5666 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5667 DAG.getIntPtrConstant(Idx));
5668 }
5669
5670 return NV;
5671}
5672
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005673// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5674SDValue
5675X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5676
Craig Topper5a0910b2013-08-15 02:33:50 +00005677 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005678 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5679 "Unexpected type in LowerBUILD_VECTORvXi1!");
5680
5681 SDLoc dl(Op);
5682 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5683 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5684 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5685 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5686 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5687 Ops, VT.getVectorNumElements());
5688 }
5689
5690 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5691 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5692 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5693 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5694 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5695 Ops, VT.getVectorNumElements());
5696 }
5697
5698 bool AllContants = true;
5699 uint64_t Immediate = 0;
5700 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5701 SDValue In = Op.getOperand(idx);
5702 if (In.getOpcode() == ISD::UNDEF)
5703 continue;
5704 if (!isa<ConstantSDNode>(In)) {
5705 AllContants = false;
5706 break;
5707 }
5708 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005709 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005710 }
5711
5712 if (AllContants) {
5713 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5714 DAG.getConstant(Immediate, MVT::i16));
5715 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005716 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005717 }
5718
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005719 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005720 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005721 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5722 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5723 llvm_unreachable("Unsupported predicate operation");
5724 }
5725
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005726 SDValue EFLAGS, X86CC;
5727 if (In.getOpcode() == ISD::SETCC) {
5728 SDValue Op0 = In.getOperand(0);
5729 SDValue Op1 = In.getOperand(1);
5730 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5731 bool isFP = Op1.getValueType().isFloatingPoint();
5732 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5733
5734 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5735
5736 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5737 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5738 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5739 } else if (In.getOpcode() == X86ISD::SETCC) {
5740 X86CC = In.getOperand(0);
5741 EFLAGS = In.getOperand(1);
5742 } else {
5743 // The algorithm:
5744 // Bit1 = In & 0x1
5745 // if (Bit1 != 0)
5746 // ZF = 0
5747 // else
5748 // ZF = 1
5749 // if (ZF == 0)
5750 // res = allOnes ### CMOVNE -1, %res
5751 // else
5752 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005753 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005754 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5755 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5756 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5757 }
5758
5759 if (VT == MVT::v16i1) {
5760 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5761 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5762 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5763 Cst0, Cst1, X86CC, EFLAGS);
5764 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5765 }
5766
5767 if (VT == MVT::v8i1) {
5768 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5769 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5770 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5771 Cst0, Cst1, X86CC, EFLAGS);
5772 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5773 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5774 }
5775 llvm_unreachable("Unsupported predicate operation");
5776}
5777
Michael Liaofacace82012-10-19 17:15:18 +00005778SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005779X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005780 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005781
Craig Topper5a0910b2013-08-15 02:33:50 +00005782 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005783 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005784 unsigned NumElems = Op.getNumOperands();
5785
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005786 // Generate vectors for predicate vectors.
5787 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5788 return LowerBUILD_VECTORvXi1(Op, DAG);
5789
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005790 // Vectors containing all zeros can be matched by pxor and xorps later
5791 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5792 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5793 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005794 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005795 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005796
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005797 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005798 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005799
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005800 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005801 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5802 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005803 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005804 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005805 return Op;
5806
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005807 if (!VT.is512BitVector())
5808 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005809 }
5810
Craig Topper158ec072013-08-14 07:34:43 +00005811 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005812 if (Broadcast.getNode())
5813 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005814
Owen Andersone50ed302009-08-10 22:56:29 +00005815 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005816
Evan Cheng0db9fe62006-04-25 20:13:52 +00005817 unsigned NumZero = 0;
5818 unsigned NumNonZero = 0;
5819 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005820 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005821 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005822 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005823 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005824 if (Elt.getOpcode() == ISD::UNDEF)
5825 continue;
5826 Values.insert(Elt);
5827 if (Elt.getOpcode() != ISD::Constant &&
5828 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005829 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005830 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005831 NumZero++;
5832 else {
5833 NonZeros |= (1 << i);
5834 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005835 }
5836 }
5837
Chris Lattner97a2a562010-08-26 05:24:29 +00005838 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5839 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005840 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005841
Chris Lattner67f453a2008-03-09 05:42:06 +00005842 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005843 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005844 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005845 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005846
Chris Lattner62098042008-03-09 01:05:04 +00005847 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5848 // the value are obviously zero, truncate the value to i32 and do the
5849 // insertion that way. Only do this if the value is non-constant or if the
5850 // value is a constant being inserted into element 0. It is cheaper to do
5851 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005852 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005853 (!IsAllConstants || Idx == 0)) {
5854 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005855 // Handle SSE only.
5856 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5857 EVT VecVT = MVT::v4i32;
5858 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Chris Lattner62098042008-03-09 01:05:04 +00005860 // Truncate the value (which may itself be a constant) to i32, and
5861 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005862 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005863 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005864 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005865
Chris Lattner62098042008-03-09 01:05:04 +00005866 // Now we have our 32-bit value zero extended in the low element of
5867 // a vector. If Idx != 0, swizzle it into place.
5868 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005869 SmallVector<int, 4> Mask;
5870 Mask.push_back(Idx);
5871 for (unsigned i = 1; i != VecElts; ++i)
5872 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005873 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005874 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005875 }
Craig Topper07a27622012-01-22 03:07:48 +00005876 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005877 }
5878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005879
Chris Lattner19f79692008-03-08 22:59:52 +00005880 // If we have a constant or non-constant insertion into the low element of
5881 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5882 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005883 // depending on what the source datatype is.
5884 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005885 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005886 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005887
5888 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005889 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005890 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005891 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005892 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5893 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005894 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005895 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005896 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5897 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005898 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005899 }
5900
5901 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005902 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005903 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005904 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005905 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005906 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005907 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005908 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005909 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005910 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005911 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005912 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005913 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005914
5915 // Is it a vector logical left shift?
5916 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005917 X86::isZeroNode(Op.getOperand(0)) &&
5918 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005919 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005920 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005921 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005922 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005923 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005924 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005925
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005926 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005927 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005928
Chris Lattner19f79692008-03-08 22:59:52 +00005929 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5930 // is a non-constant being inserted into an element other than the low one,
5931 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5932 // movd/movss) to move this into the low element, then shuffle it into
5933 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005934 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005935 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005936
Evan Cheng0db9fe62006-04-25 20:13:52 +00005937 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005938 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005939 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005940 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005941 MaskVec.push_back(i == Idx ? 0 : 1);
5942 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005943 }
5944 }
5945
Chris Lattner67f453a2008-03-09 05:42:06 +00005946 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005947 if (Values.size() == 1) {
5948 if (EVTBits == 32) {
5949 // Instead of a shuffle like this:
5950 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5951 // Check if it's possible to issue this instead.
5952 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005953 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005954 SDValue Item = Op.getOperand(Idx);
5955 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5956 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5957 }
Dan Gohman475871a2008-07-27 21:46:04 +00005958 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005959 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005960
Dan Gohmana3941172007-07-24 22:55:08 +00005961 // A vector full of immediates; various special cases are already
5962 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005963 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005964 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005965
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005966 // For AVX-length vectors, build the individual 128-bit pieces and use
5967 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005968 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005969 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005970 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005971 V.push_back(Op.getOperand(i));
5972
5973 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5974
5975 // Build both the lower and upper subvector.
5976 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5977 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5978 NumElems/2);
5979
5980 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005981 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005982 }
5983
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005984 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005985 if (EVTBits == 64) {
5986 if (NumNonZero == 1) {
5987 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005988 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005989 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005990 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005991 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005992 }
Dan Gohman475871a2008-07-27 21:46:04 +00005993 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005994 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005995
5996 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005997 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005998 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005999 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006000 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006001 }
6002
Bill Wendling826f36f2007-03-28 00:57:11 +00006003 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006004 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006005 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006006 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006007 }
6008
6009 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006010 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006011 if (NumElems == 4 && NumZero > 0) {
6012 for (unsigned i = 0; i < 4; ++i) {
6013 bool isZero = !(NonZeros & (1 << i));
6014 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006015 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006016 else
Dale Johannesenace16102009-02-03 19:33:06 +00006017 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006018 }
6019
6020 for (unsigned i = 0; i < 2; ++i) {
6021 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6022 default: break;
6023 case 0:
6024 V[i] = V[i*2]; // Must be a zero vector.
6025 break;
6026 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006027 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006028 break;
6029 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006030 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006031 break;
6032 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006033 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006034 break;
6035 }
6036 }
6037
Benjamin Kramer9c683542012-01-30 15:16:21 +00006038 bool Reverse1 = (NonZeros & 0x3) == 2;
6039 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6040 int MaskVec[] = {
6041 Reverse1 ? 1 : 0,
6042 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006043 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6044 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006045 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006046 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006047 }
6048
Craig Topper7a9a28b2012-08-12 02:23:29 +00006049 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006050 // Check for a build vector of consecutive loads.
6051 for (unsigned i = 0; i < NumElems; ++i)
6052 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006053
Nate Begemanfdea31a2010-03-24 20:49:50 +00006054 // Check for elements which are consecutive loads.
6055 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6056 if (LD.getNode())
6057 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006058
Michael Liaofacace82012-10-19 17:15:18 +00006059 // Check for a build vector from mostly shuffle plus few inserting.
6060 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6061 if (Sh.getNode())
6062 return Sh;
6063
Michael J. Spencerec38de22010-10-10 22:04:20 +00006064 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006065 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006066 SDValue Result;
6067 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6068 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6069 else
6070 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006071
Chris Lattner24faf612010-08-28 17:59:08 +00006072 for (unsigned i = 1; i < NumElems; ++i) {
6073 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6074 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006075 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006076 }
6077 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006078 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006079
Chris Lattner6e80e442010-08-28 17:15:43 +00006080 // Otherwise, expand into a number of unpckl*, start by extending each of
6081 // our (non-undef) elements to the full vector width with the element in the
6082 // bottom slot of the vector (which generates no code for SSE).
6083 for (unsigned i = 0; i < NumElems; ++i) {
6084 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6085 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6086 else
6087 V[i] = DAG.getUNDEF(VT);
6088 }
6089
6090 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006091 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6092 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6093 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006094 unsigned EltStride = NumElems >> 1;
6095 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006096 for (unsigned i = 0; i < EltStride; ++i) {
6097 // If V[i+EltStride] is undef and this is the first round of mixing,
6098 // then it is safe to just drop this shuffle: V[i] is already in the
6099 // right place, the one element (since it's the first round) being
6100 // inserted as undef can be dropped. This isn't safe for successive
6101 // rounds because they will permute elements within both vectors.
6102 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6103 EltStride == NumElems/2)
6104 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006105
Chris Lattner6e80e442010-08-28 17:15:43 +00006106 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006107 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006108 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006109 }
6110 return V[0];
6111 }
Dan Gohman475871a2008-07-27 21:46:04 +00006112 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006113}
6114
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006115// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6116// to create 256-bit vectors from two other 128-bit ones.
6117static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006118 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006119 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006120
Elena Demikhovsky83952512013-07-31 11:35:14 +00006121 assert((ResVT.is256BitVector() ||
6122 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006123
6124 SDValue V1 = Op.getOperand(0);
6125 SDValue V2 = Op.getOperand(1);
6126 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006127 if(ResVT.is256BitVector())
6128 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006129
Elena Demikhovsky83952512013-07-31 11:35:14 +00006130 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006131}
6132
Craig Topper55b24052012-09-11 06:15:32 +00006133static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006134 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006135
Elena Demikhovsky83952512013-07-31 11:35:14 +00006136 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006137 // from two other 128-bit ones.
6138 return LowerAVXCONCAT_VECTORS(Op, DAG);
6139}
6140
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006141// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006142static SDValue
6143LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6144 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006145 SDValue V1 = SVOp->getOperand(0);
6146 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006147 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006148 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006149 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006150 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006151
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006152 // There is no blend with immediate in AVX-512.
6153 if (VT.is512BitVector())
6154 return SDValue();
6155
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006156 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6157 return SDValue();
6158 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006159 return SDValue();
6160
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006161 // Check the mask for BLEND and build the value.
6162 unsigned MaskValue = 0;
6163 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006164 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006165 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006166
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006167 // Blend for v16i16 should be symetric for the both lanes.
6168 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006169
Craig Topper9b33ef72013-01-21 06:57:59 +00006170 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006171 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006172 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006173
Craig Topper04f74a12013-01-21 07:25:16 +00006174 if ((EltIdx < 0 || EltIdx == (int)i) &&
6175 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006176 continue;
6177
Craig Topper9b33ef72013-01-21 06:57:59 +00006178 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006179 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006180 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6181 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006182 else
Craig Topper1842ba02012-04-23 06:38:28 +00006183 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006184 }
6185
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006186 // Convert i32 vectors to floating point if it is not AVX2.
6187 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006188 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006189 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006190 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6191 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006192 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6193 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6194 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006195
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006196 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6197 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006198 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006199}
6200
Nate Begemanb9a47b82009-02-23 08:49:38 +00006201// v8i16 shuffles - Prefer shuffles in the following order:
6202// 1. [all] pshuflw, pshufhw, optional move
6203// 2. [ssse3] 1 x pshufb
6204// 3. [ssse3] 2 x pshufb + 1 x por
6205// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006206static SDValue
6207LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6208 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006209 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006210 SDValue V1 = SVOp->getOperand(0);
6211 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006212 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006213 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006214
Nate Begemanb9a47b82009-02-23 08:49:38 +00006215 // Determine if more than 1 of the words in each of the low and high quadwords
6216 // of the result come from the same quadword of one of the two inputs. Undef
6217 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006218 unsigned LoQuad[] = { 0, 0, 0, 0 };
6219 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006220 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006221 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006222 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006223 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006224 MaskVals.push_back(EltIdx);
6225 if (EltIdx < 0) {
6226 ++Quad[0];
6227 ++Quad[1];
6228 ++Quad[2];
6229 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006230 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006231 }
6232 ++Quad[EltIdx / 4];
6233 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006234 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006235
Nate Begemanb9a47b82009-02-23 08:49:38 +00006236 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006237 unsigned MaxQuad = 1;
6238 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006239 if (LoQuad[i] > MaxQuad) {
6240 BestLoQuad = i;
6241 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006242 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006243 }
6244
Nate Begemanb9a47b82009-02-23 08:49:38 +00006245 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006246 MaxQuad = 1;
6247 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006248 if (HiQuad[i] > MaxQuad) {
6249 BestHiQuad = i;
6250 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006251 }
6252 }
6253
Nate Begemanb9a47b82009-02-23 08:49:38 +00006254 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006255 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006256 // single pshufb instruction is necessary. If There are more than 2 input
6257 // quads, disable the next transformation since it does not help SSSE3.
6258 bool V1Used = InputQuads[0] || InputQuads[1];
6259 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006260 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006261 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006262 BestLoQuad = InputQuads[0] ? 0 : 1;
6263 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006264 }
6265 if (InputQuads.count() > 2) {
6266 BestLoQuad = -1;
6267 BestHiQuad = -1;
6268 }
6269 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006270
Nate Begemanb9a47b82009-02-23 08:49:38 +00006271 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6272 // the shuffle mask. If a quad is scored as -1, that means that it contains
6273 // words from all 4 input quadwords.
6274 SDValue NewV;
6275 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006276 int MaskV[] = {
6277 BestLoQuad < 0 ? 0 : BestLoQuad,
6278 BestHiQuad < 0 ? 1 : BestHiQuad
6279 };
Eric Christopherfd179292009-08-27 18:07:15 +00006280 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006281 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6282 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6283 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006284
Nate Begemanb9a47b82009-02-23 08:49:38 +00006285 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6286 // source words for the shuffle, to aid later transformations.
6287 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006288 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006289 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006290 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006291 if (idx != (int)i)
6292 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006293 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006294 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006295 AllWordsInNewV = false;
6296 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006297 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006298
Nate Begemanb9a47b82009-02-23 08:49:38 +00006299 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6300 if (AllWordsInNewV) {
6301 for (int i = 0; i != 8; ++i) {
6302 int idx = MaskVals[i];
6303 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006304 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006305 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006306 if ((idx != i) && idx < 4)
6307 pshufhw = false;
6308 if ((idx != i) && idx > 3)
6309 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006310 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006311 V1 = NewV;
6312 V2Used = false;
6313 BestLoQuad = 0;
6314 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006315 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006316
Nate Begemanb9a47b82009-02-23 08:49:38 +00006317 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6318 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006319 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006320 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6321 unsigned TargetMask = 0;
6322 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006323 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006324 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6325 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6326 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006327 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006328 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006329 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006330 }
Eric Christopherfd179292009-08-27 18:07:15 +00006331
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006332 // Promote splats to a larger type which usually leads to more efficient code.
6333 // FIXME: Is this true if pshufb is available?
6334 if (SVOp->isSplat())
6335 return PromoteSplat(SVOp, DAG);
6336
Nate Begemanb9a47b82009-02-23 08:49:38 +00006337 // If we have SSSE3, and all words of the result are from 1 input vector,
6338 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6339 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006340 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006341 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006342
Nate Begemanb9a47b82009-02-23 08:49:38 +00006343 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006344 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006345 // mask, and elements that come from V1 in the V2 mask, so that the two
6346 // results can be OR'd together.
6347 bool TwoInputs = V1Used && V2Used;
6348 for (unsigned i = 0; i != 8; ++i) {
6349 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006350 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6351 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006352 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006353 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006354 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006355 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006356 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006357 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006358 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006359 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006360 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006361
Nate Begemanb9a47b82009-02-23 08:49:38 +00006362 // Calculate the shuffle mask for the second input, shuffle it, and
6363 // OR it with the first shuffled input.
6364 pshufbMask.clear();
6365 for (unsigned i = 0; i != 8; ++i) {
6366 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006367 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6368 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6369 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6370 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006371 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006372 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006373 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006374 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006375 MVT::v16i8, &pshufbMask[0], 16));
6376 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006377 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006378 }
6379
6380 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6381 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006382 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006383 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006384 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006385 for (int i = 0; i != 4; ++i) {
6386 int idx = MaskVals[i];
6387 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006388 InOrder.set(i);
6389 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006390 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006391 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006392 }
6393 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006394 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006395 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006396
Craig Topperdd637ae2012-02-19 05:41:45 +00006397 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6398 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006399 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006400 NewV.getOperand(0),
6401 getShufflePSHUFLWImmediate(SVOp), DAG);
6402 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006403 }
Eric Christopherfd179292009-08-27 18:07:15 +00006404
Nate Begemanb9a47b82009-02-23 08:49:38 +00006405 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6406 // and update MaskVals with the new element order.
6407 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006408 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006409 for (unsigned i = 4; i != 8; ++i) {
6410 int idx = MaskVals[i];
6411 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006412 InOrder.set(i);
6413 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006414 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006415 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006416 }
6417 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006418 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006419 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006420
Craig Topperdd637ae2012-02-19 05:41:45 +00006421 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6422 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006423 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006424 NewV.getOperand(0),
6425 getShufflePSHUFHWImmediate(SVOp), DAG);
6426 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006427 }
Eric Christopherfd179292009-08-27 18:07:15 +00006428
Nate Begemanb9a47b82009-02-23 08:49:38 +00006429 // In case BestHi & BestLo were both -1, which means each quadword has a word
6430 // from each of the four input quadwords, calculate the InOrder bitvector now
6431 // before falling through to the insert/extract cleanup.
6432 if (BestLoQuad == -1 && BestHiQuad == -1) {
6433 NewV = V1;
6434 for (int i = 0; i != 8; ++i)
6435 if (MaskVals[i] < 0 || MaskVals[i] == i)
6436 InOrder.set(i);
6437 }
Eric Christopherfd179292009-08-27 18:07:15 +00006438
Nate Begemanb9a47b82009-02-23 08:49:38 +00006439 // The other elements are put in the right place using pextrw and pinsrw.
6440 for (unsigned i = 0; i != 8; ++i) {
6441 if (InOrder[i])
6442 continue;
6443 int EltIdx = MaskVals[i];
6444 if (EltIdx < 0)
6445 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006446 SDValue ExtOp = (EltIdx < 8) ?
6447 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6448 DAG.getIntPtrConstant(EltIdx)) :
6449 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006450 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006451 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006452 DAG.getIntPtrConstant(i));
6453 }
6454 return NewV;
6455}
6456
6457// v16i8 shuffles - Prefer shuffles in the following order:
6458// 1. [ssse3] 1 x pshufb
6459// 2. [ssse3] 2 x pshufb + 1 x por
6460// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006461static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6462 const X86Subtarget* Subtarget,
6463 SelectionDAG &DAG) {
6464 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006465 SDValue V1 = SVOp->getOperand(0);
6466 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006467 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006468 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006469
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006470 // Promote splats to a larger type which usually leads to more efficient code.
6471 // FIXME: Is this true if pshufb is available?
6472 if (SVOp->isSplat())
6473 return PromoteSplat(SVOp, DAG);
6474
Nate Begemanb9a47b82009-02-23 08:49:38 +00006475 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006476 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006477 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006478
Nate Begemanb9a47b82009-02-23 08:49:38 +00006479 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006480 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006481 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006482
Nate Begemanb9a47b82009-02-23 08:49:38 +00006483 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006484 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006485 //
6486 // Otherwise, we have elements from both input vectors, and must zero out
6487 // elements that come from V2 in the first mask, and V1 in the second mask
6488 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006489 for (unsigned i = 0; i != 16; ++i) {
6490 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006491 if (EltIdx < 0 || EltIdx >= 16)
6492 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006493 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006494 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006495 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006496 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006497 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006498
6499 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6500 // the 2nd operand if it's undefined or zero.
6501 if (V2.getOpcode() == ISD::UNDEF ||
6502 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006503 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006504
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 // Calculate the shuffle mask for the second input, shuffle it, and
6506 // OR it with the first shuffled input.
6507 pshufbMask.clear();
6508 for (unsigned i = 0; i != 16; ++i) {
6509 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006510 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006511 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006512 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006513 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006514 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006515 MVT::v16i8, &pshufbMask[0], 16));
6516 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006517 }
Eric Christopherfd179292009-08-27 18:07:15 +00006518
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 // No SSSE3 - Calculate in place words and then fix all out of place words
6520 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6521 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006522 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6523 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006524 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006525 for (int i = 0; i != 8; ++i) {
6526 int Elt0 = MaskVals[i*2];
6527 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006528
Nate Begemanb9a47b82009-02-23 08:49:38 +00006529 // This word of the result is all undef, skip it.
6530 if (Elt0 < 0 && Elt1 < 0)
6531 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006532
Nate Begemanb9a47b82009-02-23 08:49:38 +00006533 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006534 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006535 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006536
Nate Begemanb9a47b82009-02-23 08:49:38 +00006537 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6538 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6539 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006540
6541 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6542 // using a single extract together, load it and store it.
6543 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006544 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006545 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006546 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006547 DAG.getIntPtrConstant(i));
6548 continue;
6549 }
6550
Nate Begemanb9a47b82009-02-23 08:49:38 +00006551 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006552 // source byte is not also odd, shift the extracted word left 8 bits
6553 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006554 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006555 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006556 DAG.getIntPtrConstant(Elt1 / 2));
6557 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006558 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006559 DAG.getConstant(8,
6560 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006561 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006562 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6563 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006564 }
6565 // If Elt0 is defined, extract it from the appropriate source. If the
6566 // source byte is not also even, shift the extracted word right 8 bits. If
6567 // Elt1 was also defined, OR the extracted values together before
6568 // inserting them in the result.
6569 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006570 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006571 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6572 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006573 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006574 DAG.getConstant(8,
6575 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006576 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006577 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6578 DAG.getConstant(0x00FF, MVT::i16));
6579 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006580 : InsElt0;
6581 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006583 DAG.getIntPtrConstant(i));
6584 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006585 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006586}
6587
Elena Demikhovsky41789462012-09-06 12:42:01 +00006588// v32i8 shuffles - Translate to VPSHUFB if possible.
6589static
6590SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006591 const X86Subtarget *Subtarget,
6592 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006593 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006594 SDValue V1 = SVOp->getOperand(0);
6595 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006596 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006597 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006598
6599 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006600 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6601 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006602
Michael Liao471b9172012-10-03 23:43:52 +00006603 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006604 // (1) one of input vector is undefined or zeroinitializer.
6605 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6606 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006607 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006608 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006609 return SDValue();
6610
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006611 if (V1IsAllZero && !V2IsAllZero) {
6612 CommuteVectorShuffleMask(MaskVals, 32);
6613 V1 = V2;
6614 }
6615 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006616 for (unsigned i = 0; i != 32; i++) {
6617 int EltIdx = MaskVals[i];
6618 if (EltIdx < 0 || EltIdx >= 32)
6619 EltIdx = 0x80;
6620 else {
6621 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6622 // Cross lane is not allowed.
6623 return SDValue();
6624 EltIdx &= 0xf;
6625 }
6626 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6627 }
6628 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6629 DAG.getNode(ISD::BUILD_VECTOR, dl,
6630 MVT::v32i8, &pshufbMask[0], 32));
6631}
6632
Evan Cheng7a831ce2007-12-15 03:00:47 +00006633/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006634/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006635/// done when every pair / quad of shuffle mask elements point to elements in
6636/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006637/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006638static
Nate Begeman9008ca62009-04-27 18:41:29 +00006639SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006640 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006641 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006642 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006643 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006644 MVT NewVT;
6645 unsigned Scale;
6646 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006647 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006648 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6649 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6650 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6651 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6652 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6653 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006654 }
6655
Nate Begeman9008ca62009-04-27 18:41:29 +00006656 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006657 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006658 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006659 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006660 int EltIdx = SVOp->getMaskElt(i+j);
6661 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006662 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006663 if (StartIdx < 0)
6664 StartIdx = (EltIdx / Scale);
6665 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006666 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006667 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006668 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006669 }
6670
Craig Topper11ac1f82012-05-04 04:08:44 +00006671 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6672 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006673 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006674}
6675
Evan Chengd880b972008-05-09 21:53:03 +00006676/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006677///
Craig Topper8d725b92013-08-15 05:33:45 +00006678static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006679 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006680 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006681 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006682 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006683 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006684 LD = dyn_cast<LoadSDNode>(SrcOp);
6685 if (!LD) {
6686 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6687 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006688 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006689 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006690 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006691 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006692 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006693 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006694 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006695 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006696 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6697 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6698 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006699 SrcOp.getOperand(0)
6700 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006701 }
6702 }
6703 }
6704
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006705 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006706 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006707 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006708 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006709}
6710
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006711/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6712/// which could not be matched by any known target speficic shuffle
6713static SDValue
6714LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006715
6716 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6717 if (NewOp.getNode())
6718 return NewOp;
6719
Craig Topper5a0910b2013-08-15 02:33:50 +00006720 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006721
Craig Topper8f35c132012-01-20 09:29:03 +00006722 unsigned NumElems = VT.getVectorNumElements();
6723 unsigned NumLaneElems = NumElems / 2;
6724
Andrew Trickac6d9be2013-05-25 02:42:55 +00006725 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006726 MVT EltVT = VT.getVectorElementType();
6727 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006728 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006729
Craig Topper9a2b6e12012-04-06 07:45:23 +00006730 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006731 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006732 // Build a shuffle mask for the output, discovering on the fly which
6733 // input vectors to use as shuffle operands (recorded in InputUsed).
6734 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006735 // out with UseBuildVector set.
6736 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006737 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006738 unsigned LaneStart = l * NumLaneElems;
6739 for (unsigned i = 0; i != NumLaneElems; ++i) {
6740 // The mask element. This indexes into the input.
6741 int Idx = SVOp->getMaskElt(i+LaneStart);
6742 if (Idx < 0) {
6743 // the mask element does not index into any input vector.
6744 Mask.push_back(-1);
6745 continue;
6746 }
Craig Topper8f35c132012-01-20 09:29:03 +00006747
Craig Topper9a2b6e12012-04-06 07:45:23 +00006748 // The input vector this mask element indexes into.
6749 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006750
Craig Topper9a2b6e12012-04-06 07:45:23 +00006751 // Turn the index into an offset from the start of the input vector.
6752 Idx -= Input * NumLaneElems;
6753
6754 // Find or create a shuffle vector operand to hold this input.
6755 unsigned OpNo;
6756 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6757 if (InputUsed[OpNo] == Input)
6758 // This input vector is already an operand.
6759 break;
6760 if (InputUsed[OpNo] < 0) {
6761 // Create a new operand for this input vector.
6762 InputUsed[OpNo] = Input;
6763 break;
6764 }
6765 }
6766
6767 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006768 // More than two input vectors used! Give up on trying to create a
6769 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6770 UseBuildVector = true;
6771 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006772 }
6773
6774 // Add the mask index for the new shuffle vector.
6775 Mask.push_back(Idx + OpNo * NumLaneElems);
6776 }
6777
Craig Topper8ae97ba2012-05-21 06:40:16 +00006778 if (UseBuildVector) {
6779 SmallVector<SDValue, 16> SVOps;
6780 for (unsigned i = 0; i != NumLaneElems; ++i) {
6781 // The mask element. This indexes into the input.
6782 int Idx = SVOp->getMaskElt(i+LaneStart);
6783 if (Idx < 0) {
6784 SVOps.push_back(DAG.getUNDEF(EltVT));
6785 continue;
6786 }
6787
6788 // The input vector this mask element indexes into.
6789 int Input = Idx / NumElems;
6790
6791 // Turn the index into an offset from the start of the input vector.
6792 Idx -= Input * NumElems;
6793
6794 // Extract the vector element by hand.
6795 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6796 SVOp->getOperand(Input),
6797 DAG.getIntPtrConstant(Idx)));
6798 }
6799
6800 // Construct the output using a BUILD_VECTOR.
6801 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6802 SVOps.size());
6803 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006804 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006805 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006806 } else {
6807 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006808 (InputUsed[0] % 2) * NumLaneElems,
6809 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006810 // If only one input was used, use an undefined vector for the other.
6811 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6812 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006813 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006814 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006815 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006816 }
6817
6818 Mask.clear();
6819 }
Craig Topper8f35c132012-01-20 09:29:03 +00006820
6821 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006822 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006823}
6824
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006825/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6826/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006827static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006828LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006829 SDValue V1 = SVOp->getOperand(0);
6830 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006831 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006832 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006833
Craig Topper7a9a28b2012-08-12 02:23:29 +00006834 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006835
Benjamin Kramer9c683542012-01-30 15:16:21 +00006836 std::pair<int, int> Locs[4];
6837 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006838 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006839
Evan Chengace3c172008-07-22 21:13:36 +00006840 unsigned NumHi = 0;
6841 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006842 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006843 int Idx = PermMask[i];
6844 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006845 Locs[i] = std::make_pair(-1, -1);
6846 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006847 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6848 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006849 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006850 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006851 NumLo++;
6852 } else {
6853 Locs[i] = std::make_pair(1, NumHi);
6854 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006855 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006856 NumHi++;
6857 }
6858 }
6859 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006860
Evan Chengace3c172008-07-22 21:13:36 +00006861 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006862 // If no more than two elements come from either vector. This can be
6863 // implemented with two shuffles. First shuffle gather the elements.
6864 // The second shuffle, which takes the first shuffle as both of its
6865 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006866 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006867
Benjamin Kramer9c683542012-01-30 15:16:21 +00006868 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006869
Benjamin Kramer9c683542012-01-30 15:16:21 +00006870 for (unsigned i = 0; i != 4; ++i)
6871 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006872 unsigned Idx = (i < 2) ? 0 : 4;
6873 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006874 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006875 }
Evan Chengace3c172008-07-22 21:13:36 +00006876
Nate Begeman9008ca62009-04-27 18:41:29 +00006877 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006878 }
6879
6880 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006881 // Otherwise, we must have three elements from one vector, call it X, and
6882 // one element from the other, call it Y. First, use a shufps to build an
6883 // intermediate vector with the one element from Y and the element from X
6884 // that will be in the same half in the final destination (the indexes don't
6885 // matter). Then, use a shufps to build the final vector, taking the half
6886 // containing the element from Y from the intermediate, and the other half
6887 // from X.
6888 if (NumHi == 3) {
6889 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006890 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006891 std::swap(V1, V2);
6892 }
6893
6894 // Find the element from V2.
6895 unsigned HiIndex;
6896 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006897 int Val = PermMask[HiIndex];
6898 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006899 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006900 if (Val >= 4)
6901 break;
6902 }
6903
Nate Begeman9008ca62009-04-27 18:41:29 +00006904 Mask1[0] = PermMask[HiIndex];
6905 Mask1[1] = -1;
6906 Mask1[2] = PermMask[HiIndex^1];
6907 Mask1[3] = -1;
6908 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006909
6910 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006911 Mask1[0] = PermMask[0];
6912 Mask1[1] = PermMask[1];
6913 Mask1[2] = HiIndex & 1 ? 6 : 4;
6914 Mask1[3] = HiIndex & 1 ? 4 : 6;
6915 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006916 }
Craig Topper69947b92012-04-23 06:57:04 +00006917
6918 Mask1[0] = HiIndex & 1 ? 2 : 0;
6919 Mask1[1] = HiIndex & 1 ? 0 : 2;
6920 Mask1[2] = PermMask[2];
6921 Mask1[3] = PermMask[3];
6922 if (Mask1[2] >= 0)
6923 Mask1[2] += 4;
6924 if (Mask1[3] >= 0)
6925 Mask1[3] += 4;
6926 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006927 }
6928
6929 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006930 int LoMask[] = { -1, -1, -1, -1 };
6931 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006932
Benjamin Kramer9c683542012-01-30 15:16:21 +00006933 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006934 unsigned MaskIdx = 0;
6935 unsigned LoIdx = 0;
6936 unsigned HiIdx = 2;
6937 for (unsigned i = 0; i != 4; ++i) {
6938 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006939 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006940 MaskIdx = 1;
6941 LoIdx = 0;
6942 HiIdx = 2;
6943 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006944 int Idx = PermMask[i];
6945 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006946 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006947 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006948 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006949 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006950 LoIdx++;
6951 } else {
6952 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006953 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006954 HiIdx++;
6955 }
6956 }
6957
Nate Begeman9008ca62009-04-27 18:41:29 +00006958 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6959 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006960 int MaskOps[] = { -1, -1, -1, -1 };
6961 for (unsigned i = 0; i != 4; ++i)
6962 if (Locs[i].first != -1)
6963 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006964 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006965}
6966
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006967static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006968 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006969 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006970
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006971 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6972 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006973 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6974 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6975 // BUILD_VECTOR (load), undef
6976 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006977
6978 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006979}
6980
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006981static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006982SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006983 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00006984
6985 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006986 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6987 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006988 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6989 V1, DAG));
6990}
6991
6992static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006993SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006994 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006995 SDValue V1 = Op.getOperand(0);
6996 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00006997 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006998
6999 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7000
Craig Topper1accb7e2012-01-10 06:54:16 +00007001 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007002 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7003
Evan Cheng0899f5c2011-08-31 02:05:24 +00007004 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7005 return DAG.getNode(ISD::BITCAST, dl, VT,
7006 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7007 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7008 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007009}
7010
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007011static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007012SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007013 SDValue V1 = Op.getOperand(0);
7014 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007015 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007016
7017 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7018 "unsupported shuffle type");
7019
7020 if (V2.getOpcode() == ISD::UNDEF)
7021 V2 = V1;
7022
7023 // v4i32 or v4f32
7024 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7025}
7026
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007027static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007028SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007029 SDValue V1 = Op.getOperand(0);
7030 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007031 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007032 unsigned NumElems = VT.getVectorNumElements();
7033
7034 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7035 // operand of these instructions is only memory, so check if there's a
7036 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7037 // same masks.
7038 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007039
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007040 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007041 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007042 CanFoldLoad = true;
7043
7044 // When V1 is a load, it can be folded later into a store in isel, example:
7045 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7046 // turns into:
7047 // (MOVLPSmr addr:$src1, VR128:$src2)
7048 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007049 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007050 CanFoldLoad = true;
7051
Dan Gohman65fd6562011-11-03 21:49:52 +00007052 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007053 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007054 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007055 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7056
7057 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007058 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007059 if (SVOp->getMaskElt(1) != -1)
7060 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007061 }
7062
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007063 // movl and movlp will both match v2i64, but v2i64 is never matched by
7064 // movl earlier because we make it strict to avoid messing with the movlp load
7065 // folding logic (see the code above getMOVLP call). Match it here then,
7066 // this is horrible, but will stay like this until we move all shuffle
7067 // matching to x86 specific nodes. Note that for the 1st condition all
7068 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007069 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007070 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7071 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007072 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007073 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007074 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007075 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007076
7077 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7078
7079 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007080 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007081 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007082}
7083
Michael Liaod9d09602012-10-23 17:34:00 +00007084// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007085static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7086 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007087 // PMOVZX is only available from SSE41.
7088 if (!Subtarget->hasSSE41())
7089 return SDValue();
7090
Craig Topper8d725b92013-08-15 05:33:45 +00007091 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007092
7093 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007094 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007095 return SDValue();
7096
7097 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007098 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007099 SDValue V1 = Op.getOperand(0);
7100 SDValue V2 = Op.getOperand(1);
7101 unsigned NumElems = VT.getVectorNumElements();
7102
7103 // Extending is an unary operation and the element type of the source vector
7104 // won't be equal to or larger than i64.
7105 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7106 VT.getVectorElementType() == MVT::i64)
7107 return SDValue();
7108
7109 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7110 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007111 while ((1U << Shift) < NumElems) {
7112 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007113 break;
7114 Shift += 1;
7115 // The maximal ratio is 8, i.e. from i8 to i64.
7116 if (Shift > 3)
7117 return SDValue();
7118 }
7119
7120 // Check the shuffle mask.
7121 unsigned Mask = (1U << Shift) - 1;
7122 for (unsigned i = 0; i != NumElems; ++i) {
7123 int EltIdx = SVOp->getMaskElt(i);
7124 if ((i & Mask) != 0 && EltIdx != -1)
7125 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007126 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007127 return SDValue();
7128 }
7129
7130 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007131 MVT NeVT = MVT::getIntegerVT(NBits);
7132 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007133
Craig Topper158ec072013-08-14 07:34:43 +00007134 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007135 return SDValue();
7136
7137 // Simplify the operand as it's prepared to be fed into shuffle.
7138 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7139 if (V1.getOpcode() == ISD::BITCAST &&
7140 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7141 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007142 V1.getOperand(0).getOperand(0)
7143 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007144 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7145 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007146 ConstantSDNode *CIdx =
7147 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007148 // If it's foldable, i.e. normal load with single use, we will let code
7149 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007150 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007151 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007152 MVT FullVT = V.getSimpleValueType();
7153 MVT V1VT = V1.getSimpleValueType();
7154 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007155 // The "ext_vec_elt" node is wider than the result node.
7156 // In this case we should extract subvector from V.
7157 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007158 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7159 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007160 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007161 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007162 DAG.getIntPtrConstant(0));
7163 }
Craig Topper8d725b92013-08-15 05:33:45 +00007164 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007165 }
Michael Liaod9d09602012-10-23 17:34:00 +00007166 }
7167
7168 return DAG.getNode(ISD::BITCAST, DL, VT,
7169 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7170}
7171
Craig Topper158ec072013-08-14 07:34:43 +00007172static SDValue
7173NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7174 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007175 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007176 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007177 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007178 SDValue V1 = Op.getOperand(0);
7179 SDValue V2 = Op.getOperand(1);
7180
7181 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007182 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007183
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007184 // Handle splat operations
7185 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007186 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007187 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007188 if (Broadcast.getNode())
7189 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007190 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007191
Michael Liaod9d09602012-10-23 17:34:00 +00007192 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007193 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007194 if (NewOp.getNode())
7195 return NewOp;
7196
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007197 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7198 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007199 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7200 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007201 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007202 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007203 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007204 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007205 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007206 // FIXME: Figure out a cleaner way to do this.
7207 // Try to make use of movq to zero out the top part.
7208 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007209 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007210 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007211 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007212 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7213 NewVT, true, false))
7214 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007215 DAG, Subtarget, dl);
7216 }
7217 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007218 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007219 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007220 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007221 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7222 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7223 DAG, Subtarget, dl);
7224 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007225 }
7226 }
7227 return SDValue();
7228}
7229
Dan Gohman475871a2008-07-27 21:46:04 +00007230SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007231X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007232 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007233 SDValue V1 = Op.getOperand(0);
7234 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007235 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007236 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007237 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007238 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007239 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007240 bool V1IsSplat = false;
7241 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007242 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007243 bool HasFp256 = Subtarget->hasFp256();
7244 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007245 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007246 bool OptForSize = MF.getFunction()->getAttributes().
7247 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007248
Craig Topper3426a3e2011-11-14 06:46:21 +00007249 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007250
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007251 if (V1IsUndef && V2IsUndef)
7252 return DAG.getUNDEF(VT);
7253
7254 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007255
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007256 // Vector shuffle lowering takes 3 steps:
7257 //
7258 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7259 // narrowing and commutation of operands should be handled.
7260 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7261 // shuffle nodes.
7262 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7263 // so the shuffle can be broken into other shuffles and the legalizer can
7264 // try the lowering again.
7265 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007266 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007267 // be matched during isel, all of them must be converted to a target specific
7268 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007269
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007270 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7271 // narrowing and commutation of operands should be handled. The actual code
7272 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007273 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007274 if (NewOp.getNode())
7275 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007276
Craig Topper5aaffa82012-02-19 02:53:47 +00007277 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7278
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007279 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7280 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007281 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007282 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007283 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007284 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007285
Craig Topperdd637ae2012-02-19 05:41:45 +00007286 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007287 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007288 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007289
Craig Topperdd637ae2012-02-19 05:41:45 +00007290 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007291 return getMOVHighToLow(Op, dl, DAG);
7292
7293 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007294 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007295 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007296 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007297
Craig Topper5aaffa82012-02-19 02:53:47 +00007298 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007299 // The actual implementation will match the mask in the if above and then
7300 // during isel it can match several different instructions, not only pshufd
7301 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007302 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7303 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007304
Craig Topper5aaffa82012-02-19 02:53:47 +00007305 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007306
Craig Topper1accb7e2012-01-10 06:54:16 +00007307 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007308 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7309
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007310 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7311 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7312 DAG);
7313
Craig Topperb3982da2011-12-31 23:50:21 +00007314 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007315 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007316 }
Eric Christopherfd179292009-08-27 18:07:15 +00007317
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007318 if (isPALIGNRMask(M, VT, Subtarget))
7319 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7320 getShufflePALIGNRImmediate(SVOp),
7321 DAG);
7322
Evan Chengf26ffe92008-05-29 08:22:04 +00007323 // Check if this can be converted into a logical shift.
7324 bool isLeft = false;
7325 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007326 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007327 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007328 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007329 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007330 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007331 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007332 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007333 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007334 }
Eric Christopherfd179292009-08-27 18:07:15 +00007335
Craig Topper5aaffa82012-02-19 02:53:47 +00007336 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007337 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007338 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007339 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007340 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007341 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7342
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007343 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007344 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7345 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007346 }
Eric Christopherfd179292009-08-27 18:07:15 +00007347
Nate Begeman9008ca62009-04-27 18:41:29 +00007348 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007349 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007350 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007351
Craig Topperdd637ae2012-02-19 05:41:45 +00007352 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007353 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007354
Craig Topperdd637ae2012-02-19 05:41:45 +00007355 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007356 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007357
Craig Topperdd637ae2012-02-19 05:41:45 +00007358 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007359 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007360
Craig Topperdd637ae2012-02-19 05:41:45 +00007361 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007362 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007363
Craig Topperdd637ae2012-02-19 05:41:45 +00007364 if (ShouldXformToMOVHLPS(M, VT) ||
7365 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007366 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007367
Evan Chengf26ffe92008-05-29 08:22:04 +00007368 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007369 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007370 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007371 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007372 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007373 }
Eric Christopherfd179292009-08-27 18:07:15 +00007374
Evan Cheng9eca5e82006-10-25 21:49:50 +00007375 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007376 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7377 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007378 V1IsSplat = isSplatVector(V1.getNode());
7379 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007380
Chris Lattner8a594482007-11-25 00:24:49 +00007381 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007382 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7383 CommuteVectorShuffleMask(M, NumElems);
7384 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007385 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007386 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007387 }
7388
Craig Topperbeabc6c2011-12-05 06:56:46 +00007389 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007390 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007391 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007392 return V1;
7393 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7394 // the instruction selector will not match, so get a canonical MOVL with
7395 // swapped operands to undo the commute.
7396 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007397 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007398
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007399 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007400 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007401
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007402 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007403 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007404
Evan Cheng9bbbb982006-10-25 20:48:19 +00007405 if (V2IsSplat) {
7406 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007407 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007408 // new vector_shuffle with the corrected mask.p
7409 SmallVector<int, 8> NewMask(M.begin(), M.end());
7410 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007411 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007412 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007413 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007414 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007415 }
7416
Evan Cheng9eca5e82006-10-25 21:49:50 +00007417 if (Commuted) {
7418 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007419 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007420 CommuteVectorShuffleMask(M, NumElems);
7421 std::swap(V1, V2);
7422 std::swap(V1IsSplat, V2IsSplat);
7423 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007424
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007425 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007426 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007427
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007428 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007429 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007430 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007431
Nate Begeman9008ca62009-04-27 18:41:29 +00007432 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007433 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007434 return CommuteVectorShuffle(SVOp, DAG);
7435
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007436 // The checks below are all present in isShuffleMaskLegal, but they are
7437 // inlined here right now to enable us to directly emit target specific
7438 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007439
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007440 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7441 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007442 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007443 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007444 }
7445
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007446 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007447 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007448 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007449 DAG);
7450
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007451 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007452 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007453 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007454 DAG);
7455
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007456 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007457 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007458 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007459
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007460 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007461 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007462 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007463 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007464
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007465 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007466 // Generate target specific nodes for 128 or 256-bit shuffles only
7467 // supported in the AVX instruction set.
7468 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007469
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007470 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007471 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007472 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7473
Craig Topper70b883b2011-11-28 10:14:51 +00007474 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007475 if (isVPERMILPMask(M, VT)) {
7476 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007477 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007478 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007479 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007480 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007481 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007482
Craig Topper70b883b2011-11-28 10:14:51 +00007483 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007484 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007485 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007486 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007487
Craig Topper1842ba02012-04-23 06:38:28 +00007488 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007489 if (BlendOp.getNode())
7490 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007491
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007492 unsigned Imm8;
7493 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7494 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007495
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007496 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7497 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007498 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7499 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007500 SmallVector<SDValue, 16> permclMask;
7501 for (unsigned i = 0; i != NumElems; ++i) {
7502 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7503 }
7504
7505 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7506 &permclMask[0], NumElems);
7507 if (V2IsUndef)
7508 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7509 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7510 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7511 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7512 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7513 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007514
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007515 //===--------------------------------------------------------------------===//
7516 // Since no target specific shuffle was selected for this generic one,
7517 // lower it into other known shuffles. FIXME: this isn't true yet, but
7518 // this is the plan.
7519 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007520
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007521 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7522 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007523 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007524 if (NewOp.getNode())
7525 return NewOp;
7526 }
7527
7528 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007529 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007530 if (NewOp.getNode())
7531 return NewOp;
7532 }
7533
Elena Demikhovsky41789462012-09-06 12:42:01 +00007534 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007535 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007536 if (NewOp.getNode())
7537 return NewOp;
7538 }
7539
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007540 // Handle all 128-bit wide vectors with 4 elements, and match them with
7541 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007542 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007543 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7544
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007545 // Handle general 256-bit shuffles
7546 if (VT.is256BitVector())
7547 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7548
Dan Gohman475871a2008-07-27 21:46:04 +00007549 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007550}
7551
Craig Topperf84b7502013-01-20 00:50:58 +00007552static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007553 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007554 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007555
Craig Topper5a0910b2013-08-15 02:33:50 +00007556 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007557 return SDValue();
7558
Duncan Sands83ec4b62008-06-06 12:08:01 +00007559 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007560 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007561 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007562 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007563 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007564 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007565 }
7566
7567 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007568 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7569 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7570 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007571 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7572 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007573 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007574 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007575 Op.getOperand(0)),
7576 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007577 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007578 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007579 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007580 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007581 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007582 }
7583
7584 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007585 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7586 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007587 // result has a single use which is a store or a bitcast to i32. And in
7588 // the case of a store, it's not worth it if the index is a constant 0,
7589 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007590 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007591 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007592 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007593 if ((User->getOpcode() != ISD::STORE ||
7594 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7595 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007596 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007597 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007598 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007599 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007600 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007601 Op.getOperand(0)),
7602 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007603 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007604 }
7605
7606 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007607 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007608 if (isa<ConstantSDNode>(Op.getOperand(1)))
7609 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007610 }
Dan Gohman475871a2008-07-27 21:46:04 +00007611 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007612}
7613
Dan Gohman475871a2008-07-27 21:46:04 +00007614SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007615X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7616 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007617 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007618 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007619 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007620 SDValue Idx = Op.getOperand(1);
7621 if (!isa<ConstantSDNode>(Idx)) {
7622 if (VecVT.is512BitVector() ||
7623 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7624 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7625
7626 MVT MaskEltVT =
7627 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7628 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7629 MaskEltVT.getSizeInBits());
7630
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007631 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007632 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7633 getZeroVector(MaskVT, Subtarget, DAG, dl),
7634 Idx, DAG.getConstant(0, getPointerTy()));
7635 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7636 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7637 Perm, DAG.getConstant(0, getPointerTy()));
7638 }
7639 return SDValue();
7640 }
David Greene74a579d2011-02-10 16:57:36 +00007641
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007642 // If this is a 256-bit vector result, first extract the 128-bit vector and
7643 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007644 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007645
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007646 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007647 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007648 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007649 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007650
Elena Demikhovsky83952512013-07-31 11:35:14 +00007651 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7652
7653 //if (IdxVal >= NumElems/2)
7654 // IdxVal -= NumElems/2;
7655 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007656 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007657 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007658 }
7659
Craig Topper7a9a28b2012-08-12 02:23:29 +00007660 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007661
Craig Topperd0a31172012-01-10 06:37:29 +00007662 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007663 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007664 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007665 return Res;
7666 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007667
Craig Topper5a0910b2013-08-15 02:33:50 +00007668 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007669 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007670 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007671 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007672 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007673 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007674 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7675 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007676 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007677 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007678 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007679 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007680 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007681 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007682 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007683 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007684 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007685 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007686 }
7687
7688 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007689 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007690 if (Idx == 0)
7691 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007692
Evan Cheng0db9fe62006-04-25 20:13:52 +00007693 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007694 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007695 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007696 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007697 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007698 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007699 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007700 }
7701
7702 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007703 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7704 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7705 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007706 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007707 if (Idx == 0)
7708 return Op;
7709
7710 // UNPCKHPD the element to the lowest double word, then movsd.
7711 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7712 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007713 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007714 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007715 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007716 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007717 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007718 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719 }
7720
Dan Gohman475871a2008-07-27 21:46:04 +00007721 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007722}
7723
Craig Topperf84b7502013-01-20 00:50:58 +00007724static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007725 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007726 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007727 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007728
Dan Gohman475871a2008-07-27 21:46:04 +00007729 SDValue N0 = Op.getOperand(0);
7730 SDValue N1 = Op.getOperand(1);
7731 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007732
Craig Topper7a9a28b2012-08-12 02:23:29 +00007733 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007734 return SDValue();
7735
Dan Gohman8a55ce42009-09-23 21:02:20 +00007736 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007737 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007738 unsigned Opc;
7739 if (VT == MVT::v8i16)
7740 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007741 else if (VT == MVT::v16i8)
7742 Opc = X86ISD::PINSRB;
7743 else
7744 Opc = X86ISD::PINSRB;
7745
Nate Begeman14d12ca2008-02-11 04:19:36 +00007746 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7747 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007748 if (N1.getValueType() != MVT::i32)
7749 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7750 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007751 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007752 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007753 }
7754
7755 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007756 // Bits [7:6] of the constant are the source select. This will always be
7757 // zero here. The DAG Combiner may combine an extract_elt index into these
7758 // bits. For example (insert (extract, 3), 2) could be matched by putting
7759 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007760 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007761 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007762 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007763 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007764 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007765 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007766 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007767 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007768 }
7769
7770 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007771 // PINSR* works with constant index.
7772 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007773 }
Dan Gohman475871a2008-07-27 21:46:04 +00007774 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007775}
7776
Dan Gohman475871a2008-07-27 21:46:04 +00007777SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007778X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007779 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007780 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007781
Andrew Trickac6d9be2013-05-25 02:42:55 +00007782 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007783 SDValue N0 = Op.getOperand(0);
7784 SDValue N1 = Op.getOperand(1);
7785 SDValue N2 = Op.getOperand(2);
7786
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007787 // If this is a 256-bit vector result, first extract the 128-bit vector,
7788 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007789 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007790 if (!isa<ConstantSDNode>(N2))
7791 return SDValue();
7792
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007793 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007794 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007795 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007796
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007797 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007798 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7799 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7800
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007801 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007802 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007803
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007804 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007805 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007806 }
7807
Craig Topperd0a31172012-01-10 06:37:29 +00007808 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007809 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7810
Dan Gohman8a55ce42009-09-23 21:02:20 +00007811 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007812 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007813
Dan Gohman8a55ce42009-09-23 21:02:20 +00007814 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007815 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7816 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007817 if (N1.getValueType() != MVT::i32)
7818 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7819 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007820 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007821 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007822 }
Dan Gohman475871a2008-07-27 21:46:04 +00007823 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007824}
7825
Craig Topper55b24052012-09-11 06:15:32 +00007826static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007827 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007828 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007829
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007830 // If this is a 256-bit vector result, first insert into a 128-bit
7831 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007832 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007833 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007834 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007835 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007836 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007837
7838 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7839
7840 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007841 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007842 }
7843
Craig Topperd77d2fe2012-04-29 20:22:05 +00007844 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007845 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007846 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007847
Owen Anderson825b72b2009-08-11 20:47:22 +00007848 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007849 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007850 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007851 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007852}
7853
David Greene91585092011-01-26 15:38:49 +00007854// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7855// a simple subregister reference or explicit instructions to grab
7856// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007857static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7858 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007859 SDLoc dl(Op);
7860 SDValue In = Op.getOperand(0);
7861 SDValue Idx = Op.getOperand(1);
7862 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007863 MVT ResVT = Op.getSimpleValueType();
7864 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007865
Elena Demikhovsky83952512013-07-31 11:35:14 +00007866 if (Subtarget->hasFp256()) {
7867 if (ResVT.is128BitVector() &&
7868 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007869 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007870 return Extract128BitVector(In, IdxVal, DAG, dl);
7871 }
7872 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7873 isa<ConstantSDNode>(Idx)) {
7874 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007875 }
David Greene91585092011-01-26 15:38:49 +00007876 }
7877 return SDValue();
7878}
7879
David Greenecfe33c42011-01-26 19:13:22 +00007880// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7881// simple superregister reference or explicit instructions to insert
7882// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007883static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7884 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007885 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007886 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007887 SDValue Vec = Op.getNode()->getOperand(0);
7888 SDValue SubVec = Op.getNode()->getOperand(1);
7889 SDValue Idx = Op.getNode()->getOperand(2);
7890
Craig Topper8d725b92013-08-15 05:33:45 +00007891 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7892 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7893 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007894 isa<ConstantSDNode>(Idx)) {
7895 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7896 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007897 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007898
Craig Topper8d725b92013-08-15 05:33:45 +00007899 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7900 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007901 isa<ConstantSDNode>(Idx)) {
7902 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7903 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7904 }
David Greenecfe33c42011-01-26 19:13:22 +00007905 }
7906 return SDValue();
7907}
7908
Bill Wendling056292f2008-09-16 21:48:12 +00007909// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7910// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7911// one of the above mentioned nodes. It has to be wrapped because otherwise
7912// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7913// be used to form addressing mode. These wrapped nodes will be selected
7914// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007915SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007916X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007917 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007918
Chris Lattner41621a22009-06-26 19:22:52 +00007919 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7920 // global base reg.
7921 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007922 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007923 CodeModel::Model M = getTargetMachine().getCodeModel();
7924
Chris Lattner4f066492009-07-11 20:29:19 +00007925 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007926 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007927 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007928 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007929 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007930 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007931 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007932
Evan Cheng1606e8e2009-03-13 07:51:59 +00007933 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007934 CP->getAlignment(),
7935 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007936 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007937 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007938 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007939 if (OpFlag) {
7940 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007941 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007942 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007943 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007944 }
7945
7946 return Result;
7947}
7948
Dan Gohmand858e902010-04-17 15:26:15 +00007949SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007950 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007951
Chris Lattner18c59872009-06-27 04:16:01 +00007952 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7953 // global base reg.
7954 unsigned char OpFlag = 0;
7955 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007956 CodeModel::Model M = getTargetMachine().getCodeModel();
7957
Chris Lattner4f066492009-07-11 20:29:19 +00007958 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007959 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007960 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007961 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007962 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007963 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007964 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007965
Chris Lattner18c59872009-06-27 04:16:01 +00007966 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7967 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007968 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007969 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007970
Chris Lattner18c59872009-06-27 04:16:01 +00007971 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007972 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007973 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7974 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007975 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007976 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007977
Chris Lattner18c59872009-06-27 04:16:01 +00007978 return Result;
7979}
7980
7981SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007982X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007983 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007984
Chris Lattner18c59872009-06-27 04:16:01 +00007985 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7986 // global base reg.
7987 unsigned char OpFlag = 0;
7988 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007989 CodeModel::Model M = getTargetMachine().getCodeModel();
7990
Chris Lattner4f066492009-07-11 20:29:19 +00007991 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007992 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7993 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7994 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007995 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007996 } else if (Subtarget->isPICStyleGOT()) {
7997 OpFlag = X86II::MO_GOT;
7998 } else if (Subtarget->isPICStyleStubPIC()) {
7999 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8000 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8001 OpFlag = X86II::MO_DARWIN_NONLAZY;
8002 }
Eric Christopherfd179292009-08-27 18:07:15 +00008003
Chris Lattner18c59872009-06-27 04:16:01 +00008004 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008005
Andrew Trickac6d9be2013-05-25 02:42:55 +00008006 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008007 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008008
Chris Lattner18c59872009-06-27 04:16:01 +00008009 // With PIC, the address is actually $g + Offset.
8010 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008011 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008012 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8013 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008014 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008015 Result);
8016 }
Eric Christopherfd179292009-08-27 18:07:15 +00008017
Eli Friedman586272d2011-08-11 01:48:05 +00008018 // For symbols that require a load from a stub to get the address, emit the
8019 // load.
8020 if (isGlobalStubReference(OpFlag))
8021 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008022 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008023
Chris Lattner18c59872009-06-27 04:16:01 +00008024 return Result;
8025}
8026
Dan Gohman475871a2008-07-27 21:46:04 +00008027SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008028X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008029 // Create the TargetBlockAddressAddress node.
8030 unsigned char OpFlags =
8031 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008032 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008033 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008034 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008035 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008036 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8037 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008038
Dan Gohmanf705adb2009-10-30 01:28:02 +00008039 if (Subtarget->isPICStyleRIPRel() &&
8040 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008041 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8042 else
8043 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008044
Dan Gohman29cbade2009-11-20 23:18:13 +00008045 // With PIC, the address is actually $g + Offset.
8046 if (isGlobalRelativeToPICBase(OpFlags)) {
8047 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8048 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8049 Result);
8050 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008051
8052 return Result;
8053}
8054
8055SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008056X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008057 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008058 // Create the TargetGlobalAddress node, folding in the constant
8059 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008060 unsigned char OpFlags =
8061 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008062 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008063 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008064 if (OpFlags == X86II::MO_NO_FLAG &&
8065 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008066 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008067 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008068 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008069 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008070 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008071 }
Eric Christopherfd179292009-08-27 18:07:15 +00008072
Chris Lattner4f066492009-07-11 20:29:19 +00008073 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008074 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008075 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8076 else
8077 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008078
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008079 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008080 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008081 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8082 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008083 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008084 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008085
Chris Lattner36c25012009-07-10 07:34:39 +00008086 // For globals that require a load from a stub to get the address, emit the
8087 // load.
8088 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008089 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008090 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008091
Dan Gohman6520e202008-10-18 02:06:02 +00008092 // If there was a non-zero offset that we didn't fold, create an explicit
8093 // addition for it.
8094 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008095 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008096 DAG.getConstant(Offset, getPointerTy()));
8097
Evan Cheng0db9fe62006-04-25 20:13:52 +00008098 return Result;
8099}
8100
Evan Chengda43bcf2008-09-24 00:05:32 +00008101SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008102X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008103 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008104 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008105 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008106}
8107
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008108static SDValue
8109GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008110 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008111 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008112 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008113 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008114 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008115 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008116 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008117 GA->getOffset(),
8118 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008119
8120 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8121 : X86ISD::TLSADDR;
8122
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008123 if (InFlag) {
8124 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008125 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008126 } else {
8127 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008128 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008129 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008130
8131 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008132 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008133
Rafael Espindola15f1b662009-04-24 12:59:40 +00008134 SDValue Flag = Chain.getValue(1);
8135 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008136}
8137
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008138// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008139static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008140LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008141 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008142 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008143 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008144 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008145 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008146 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008147 InFlag = Chain.getValue(1);
8148
Chris Lattnerb903bed2009-06-26 21:20:29 +00008149 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008150}
8151
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008152// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008153static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008154LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008155 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008156 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8157 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008158}
8159
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008160static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8161 SelectionDAG &DAG,
8162 const EVT PtrVT,
8163 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008164 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008165
8166 // Get the start address of the TLS block for this module.
8167 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8168 .getInfo<X86MachineFunctionInfo>();
8169 MFI->incNumLocalDynamicTLSAccesses();
8170
8171 SDValue Base;
8172 if (is64Bit) {
8173 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8174 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8175 } else {
8176 SDValue InFlag;
8177 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008178 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008179 InFlag = Chain.getValue(1);
8180 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8181 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8182 }
8183
8184 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8185 // of Base.
8186
8187 // Build x@dtpoff.
8188 unsigned char OperandFlags = X86II::MO_DTPOFF;
8189 unsigned WrapperKind = X86ISD::Wrapper;
8190 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8191 GA->getValueType(0),
8192 GA->getOffset(), OperandFlags);
8193 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8194
8195 // Add x@dtpoff with the base.
8196 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8197}
8198
Hans Wennborg228756c2012-05-11 10:11:01 +00008199// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008200static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008201 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008202 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008203 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008204
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008205 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8206 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8207 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008208
Eric Christopher739eb9d2013-10-14 21:52:23 +00008209 SDValue ThreadPointer =
8210 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8211 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008212
Chris Lattnerb903bed2009-06-26 21:20:29 +00008213 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008214 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8215 // initialexec.
8216 unsigned WrapperKind = X86ISD::Wrapper;
8217 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008218 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008219 } else if (model == TLSModel::InitialExec) {
8220 if (is64Bit) {
8221 OperandFlags = X86II::MO_GOTTPOFF;
8222 WrapperKind = X86ISD::WrapperRIP;
8223 } else {
8224 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8225 }
Chris Lattner18c59872009-06-27 04:16:01 +00008226 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008227 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008228 }
Eric Christopherfd179292009-08-27 18:07:15 +00008229
Hans Wennborg228756c2012-05-11 10:11:01 +00008230 // emit "addl x@ntpoff,%eax" (local exec)
8231 // or "addl x@indntpoff,%eax" (initial exec)
8232 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008233 SDValue TGA =
8234 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8235 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008236 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008237
Hans Wennborg228756c2012-05-11 10:11:01 +00008238 if (model == TLSModel::InitialExec) {
8239 if (isPIC && !is64Bit) {
8240 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008241 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008242 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008243 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008244
8245 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008246 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008247 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008248
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008249 // The address of the thread local variable is the add of the thread
8250 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008251 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008252}
8253
Dan Gohman475871a2008-07-27 21:46:04 +00008254SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008255X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008256
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008257 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008258 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008259
Eric Christopher30ef0e52010-06-03 04:07:48 +00008260 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008261 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008262
Eric Christopher30ef0e52010-06-03 04:07:48 +00008263 switch (model) {
8264 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008265 if (Subtarget->is64Bit())
8266 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8267 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008268 case TLSModel::LocalDynamic:
8269 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8270 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008271 case TLSModel::InitialExec:
8272 case TLSModel::LocalExec:
8273 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008274 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008275 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008276 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008277 llvm_unreachable("Unknown TLS model.");
8278 }
8279
8280 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008281 // Darwin only has one model of TLS. Lower to that.
8282 unsigned char OpFlag = 0;
8283 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8284 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008285
Eric Christopher30ef0e52010-06-03 04:07:48 +00008286 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8287 // global base reg.
8288 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8289 !Subtarget->is64Bit();
8290 if (PIC32)
8291 OpFlag = X86II::MO_TLVP_PIC_BASE;
8292 else
8293 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008294 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008295 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008296 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008297 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008298 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008299
Eric Christopher30ef0e52010-06-03 04:07:48 +00008300 // With PIC32, the address is actually $g + Offset.
8301 if (PIC32)
8302 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8303 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008304 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008305 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008306
Eric Christopher30ef0e52010-06-03 04:07:48 +00008307 // Lowering the machine isd will make sure everything is in the right
8308 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008309 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008310 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008311 SDValue Args[] = { Chain, Offset };
8312 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008313
Eric Christopher30ef0e52010-06-03 04:07:48 +00008314 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8315 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8316 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008317
Eric Christopher30ef0e52010-06-03 04:07:48 +00008318 // And our return value (tls address) is in the standard call return value
8319 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008320 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008321 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8322 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008323 }
8324
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008325 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008326 // Just use the implicit TLS architecture
8327 // Need to generate someting similar to:
8328 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8329 // ; from TEB
8330 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8331 // mov rcx, qword [rdx+rcx*8]
8332 // mov eax, .tls$:tlsvar
8333 // [rax+rcx] contains the address
8334 // Windows 64bit: gs:0x58
8335 // Windows 32bit: fs:__tls_array
8336
8337 // If GV is an alias then use the aliasee for determining
8338 // thread-localness.
8339 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8340 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008341 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008342 SDValue Chain = DAG.getEntryNode();
8343
8344 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008345 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8346 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008347 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8348 ? Type::getInt8PtrTy(*DAG.getContext(),
8349 256)
8350 : Type::getInt32PtrTy(*DAG.getContext(),
8351 257));
8352
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008353 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8354 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8355 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8356
8357 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008358 MachinePointerInfo(Ptr),
8359 false, false, false, 0);
8360
8361 // Load the _tls_index variable
8362 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8363 if (Subtarget->is64Bit())
8364 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8365 IDX, MachinePointerInfo(), MVT::i32,
8366 false, false, 0);
8367 else
8368 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8369 false, false, false, 0);
8370
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008371 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008372 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008373 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8374
8375 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8376 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8377 false, false, false, 0);
8378
8379 // Get the offset of start of .tls section
8380 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8381 GA->getValueType(0),
8382 GA->getOffset(), X86II::MO_SECREL);
8383 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8384
8385 // The address of the thread local variable is the add of the thread
8386 // pointer with the offset of the variable.
8387 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008388 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008389
David Blaikie4d6ccb52012-01-20 21:51:11 +00008390 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008391}
8392
Chad Rosierb90d2a92012-01-03 23:19:12 +00008393/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8394/// and take a 2 x i32 value to shift plus a shift amount.
8395SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008396 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008397 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008398 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008399 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008400 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008401 SDValue ShOpLo = Op.getOperand(0);
8402 SDValue ShOpHi = Op.getOperand(1);
8403 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008404 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008405 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008406 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008407
Dan Gohman475871a2008-07-27 21:46:04 +00008408 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008409 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008410 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8411 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008412 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008413 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8414 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008415 }
Evan Chenge3413162006-01-09 18:33:28 +00008416
Owen Anderson825b72b2009-08-11 20:47:22 +00008417 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8418 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008419 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008420 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008421
Dan Gohman475871a2008-07-27 21:46:04 +00008422 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008423 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008424 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8425 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008426
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008427 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008428 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8429 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008430 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008431 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8432 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008433 }
8434
Dan Gohman475871a2008-07-27 21:46:04 +00008435 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008436 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008437}
Evan Chenga3195e82006-01-12 22:54:21 +00008438
Dan Gohmand858e902010-04-17 15:26:15 +00008439SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8440 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008441 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008442
Dale Johannesen0488fb62010-09-30 23:57:10 +00008443 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008444 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008445
Owen Anderson825b72b2009-08-11 20:47:22 +00008446 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008447 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Eli Friedman36df4992009-05-27 00:47:34 +00008449 // These are really Legal; return the operand so the caller accepts it as
8450 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008451 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008452 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008453 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008454 Subtarget->is64Bit()) {
8455 return Op;
8456 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008457
Andrew Trickac6d9be2013-05-25 02:42:55 +00008458 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008459 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008460 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008461 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008462 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008463 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008464 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008465 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008466 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008467 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8468}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008469
Owen Andersone50ed302009-08-10 22:56:29 +00008470SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008471 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008472 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008473 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008474 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008475 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008476 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008477 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008478 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008479 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008480 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008481
Chris Lattner492a43e2010-09-22 01:28:21 +00008482 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008483
Stuart Hastings84be9582011-06-02 15:57:11 +00008484 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8485 MachineMemOperand *MMO;
8486 if (FI) {
8487 int SSFI = FI->getIndex();
8488 MMO =
8489 DAG.getMachineFunction()
8490 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8491 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8492 } else {
8493 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8494 StackSlot = StackSlot.getOperand(1);
8495 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008496 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008497 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8498 X86ISD::FILD, DL,
8499 Tys, Ops, array_lengthof(Ops),
8500 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008501
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008502 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008503 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008504 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008505
8506 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8507 // shouldn't be necessary except that RFP cannot be live across
8508 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008509 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008510 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8511 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008512 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008513 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008514 SDValue Ops[] = {
8515 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8516 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008517 MachineMemOperand *MMO =
8518 DAG.getMachineFunction()
8519 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008520 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008521
Chris Lattner492a43e2010-09-22 01:28:21 +00008522 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8523 Ops, array_lengthof(Ops),
8524 Op.getValueType(), MMO);
8525 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008526 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008527 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008528 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008529
Evan Cheng0db9fe62006-04-25 20:13:52 +00008530 return Result;
8531}
8532
Bill Wendling8b8a6362009-01-17 03:56:04 +00008533// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008534SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8535 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008536 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008537 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008538 movq %rax, %xmm0
8539 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8540 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8541 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008542 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008543 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008544 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008545 addpd %xmm1, %xmm0
8546 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008547 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008548
Andrew Trickac6d9be2013-05-25 02:42:55 +00008549 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008550 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008551
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008552 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008553 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008554 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008555 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008556
Chris Lattner97484792012-01-25 09:56:22 +00008557 SmallVector<Constant*,2> CV1;
8558 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008559 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8560 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008561 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008562 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8563 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008564 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008565 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008566
Bill Wendling397ae212012-01-05 02:13:20 +00008567 // Load the 64-bit value into an XMM register.
8568 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8569 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008570 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008571 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008572 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008573 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8574 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8575 CLod0);
8576
Owen Anderson825b72b2009-08-11 20:47:22 +00008577 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008578 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008579 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008580 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008581 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008582 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008583
Craig Topperd0a31172012-01-10 06:37:29 +00008584 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008585 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8586 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8587 } else {
8588 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8589 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8590 S2F, 0x4E, DAG);
8591 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8592 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8593 Sub);
8594 }
8595
8596 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008597 DAG.getIntPtrConstant(0));
8598}
8599
Bill Wendling8b8a6362009-01-17 03:56:04 +00008600// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008601SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8602 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008603 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008604 // FP constant to bias correct the final result.
8605 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008606 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008607
8608 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008609 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008610 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008611
Eli Friedmanf3704762011-08-29 21:15:46 +00008612 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008613 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008614
Owen Anderson825b72b2009-08-11 20:47:22 +00008615 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008616 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008617 DAG.getIntPtrConstant(0));
8618
8619 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008620 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008621 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008622 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008623 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008624 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008625 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008626 MVT::v2f64, Bias)));
8627 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008628 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008629 DAG.getIntPtrConstant(0));
8630
8631 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008632 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008633
8634 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008635 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008636
Craig Topper69947b92012-04-23 06:57:04 +00008637 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008638 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008639 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008640 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008641 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008642
8643 // Handle final rounding.
8644 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008645}
8646
Michael Liaoa7554632012-10-23 17:36:08 +00008647SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8648 SelectionDAG &DAG) const {
8649 SDValue N0 = Op.getOperand(0);
8650 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008651 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008652
8653 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8654 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8655 "Custom UINT_TO_FP is not supported!");
8656
Craig Topperb99bafe2013-01-21 06:21:54 +00008657 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8658 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008659 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8660 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8661}
8662
Dan Gohmand858e902010-04-17 15:26:15 +00008663SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8664 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008665 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008666 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008667
Michael Liaoa7554632012-10-23 17:36:08 +00008668 if (Op.getValueType().isVector())
8669 return lowerUINT_TO_FP_vec(Op, DAG);
8670
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008671 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008672 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8673 // the optimization here.
8674 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008675 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008676
Owen Andersone50ed302009-08-10 22:56:29 +00008677 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008678 EVT DstVT = Op.getValueType();
8679 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008680 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008681 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008682 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008683 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008684 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008685
8686 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008687 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008688 if (SrcVT == MVT::i32) {
8689 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8690 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8691 getPointerTy(), StackSlot, WordOff);
8692 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008693 StackSlot, MachinePointerInfo(),
8694 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008695 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008696 OffsetSlot, MachinePointerInfo(),
8697 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008698 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8699 return Fild;
8700 }
8701
8702 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8703 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008704 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008705 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008706 // For i64 source, we need to add the appropriate power of 2 if the input
8707 // was negative. This is the same as the optimization in
8708 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8709 // we must be careful to do the computation in x87 extended precision, not
8710 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008711 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8712 MachineMemOperand *MMO =
8713 DAG.getMachineFunction()
8714 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8715 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008716
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008717 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8718 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008719 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8720 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008721
8722 APInt FF(32, 0x5F800000ULL);
8723
8724 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008725 SDValue SignSet = DAG.getSetCC(dl,
8726 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008727 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8728 ISD::SETLT);
8729
8730 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8731 SDValue FudgePtr = DAG.getConstantPool(
8732 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8733 getPointerTy());
8734
8735 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8736 SDValue Zero = DAG.getIntPtrConstant(0);
8737 SDValue Four = DAG.getIntPtrConstant(4);
8738 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8739 Zero, Four);
8740 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8741
8742 // Load the value out, extending it from f32 to f80.
8743 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008744 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008745 FudgePtr, MachinePointerInfo::getConstantPool(),
8746 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008747 // Extend everything to 80 bits to force it to be done on x87.
8748 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8749 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008750}
8751
Craig Topperb99bafe2013-01-21 06:21:54 +00008752std::pair<SDValue,SDValue>
8753X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8754 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008755 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008756
Owen Andersone50ed302009-08-10 22:56:29 +00008757 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008758
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008759 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008760 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8761 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008762 }
8763
Owen Anderson825b72b2009-08-11 20:47:22 +00008764 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8765 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008766 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008767
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008768 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008769 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008770 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008771 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008772 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008773 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008774 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008775 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008776
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008777 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8778 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008779 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008780 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008781 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008782 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008783
Evan Cheng0db9fe62006-04-25 20:13:52 +00008784 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008785 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8786 Opc = X86ISD::WIN_FTOL;
8787 else
8788 switch (DstTy.getSimpleVT().SimpleTy) {
8789 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8790 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8791 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8792 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8793 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008794
Dan Gohman475871a2008-07-27 21:46:04 +00008795 SDValue Chain = DAG.getEntryNode();
8796 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008797 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008798 // FIXME This causes a redundant load/store if the SSE-class value is already
8799 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008800 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008801 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008802 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008803 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008804 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008805 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008806 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008807 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008808 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008809
Chris Lattner492a43e2010-09-22 01:28:21 +00008810 MachineMemOperand *MMO =
8811 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8812 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008813 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8814 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008815 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008816 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008817 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8818 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008819
Chris Lattner07290932010-09-22 01:05:16 +00008820 MachineMemOperand *MMO =
8821 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8822 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008823
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008824 if (Opc != X86ISD::WIN_FTOL) {
8825 // Build the FP_TO_INT*_IN_MEM
8826 SDValue Ops[] = { Chain, Value, StackSlot };
8827 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008828 Ops, array_lengthof(Ops), DstTy,
8829 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008830 return std::make_pair(FIST, StackSlot);
8831 } else {
8832 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8833 DAG.getVTList(MVT::Other, MVT::Glue),
8834 Chain, Value);
8835 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8836 MVT::i32, ftol.getValue(1));
8837 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8838 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008839 SDValue Ops[] = { eax, edx };
8840 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008841 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8842 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008843 return std::make_pair(pair, SDValue());
8844 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008845}
8846
Nadav Rotem0509db22012-12-28 05:45:24 +00008847static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8848 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008849 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008850 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008851 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008852 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008853
8854 // Optimize vectors in AVX mode:
8855 //
8856 // v8i16 -> v8i32
8857 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8858 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8859 // Concat upper and lower parts.
8860 //
8861 // v4i32 -> v4i64
8862 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8863 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8864 // Concat upper and lower parts.
8865 //
8866
8867 if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8868 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8869 return SDValue();
8870
8871 if (Subtarget->hasInt256())
8872 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8873
8874 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8875 SDValue Undef = DAG.getUNDEF(InVT);
8876 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8877 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8878 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8879
Craig Toppera080daf2013-01-20 21:50:27 +00008880 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008881 VT.getVectorNumElements()/2);
8882
8883 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8884 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8885
8886 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8887}
8888
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008889static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8890 SelectionDAG &DAG) {
8891 MVT VT = Op->getValueType(0).getSimpleVT();
8892 SDValue In = Op->getOperand(0);
8893 MVT InVT = In.getValueType().getSimpleVT();
8894 SDLoc DL(Op);
8895 unsigned int NumElts = VT.getVectorNumElements();
8896 if (NumElts != 8 && NumElts != 16)
8897 return SDValue();
8898
8899 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8900 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8901
8902 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8903 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8904 // Now we have only mask extension
8905 assert(InVT.getVectorElementType() == MVT::i1);
8906 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8907 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8908 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8909 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8910 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8911 MachinePointerInfo::getConstantPool(),
8912 false, false, false, Alignment);
8913
8914 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8915 if (VT.is512BitVector())
8916 return Brcst;
8917 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8918}
8919
Craig Topperff79bc62013-08-18 08:53:01 +00008920static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8921 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008922 if (Subtarget->hasFp256()) {
8923 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8924 if (Res.getNode())
8925 return Res;
8926 }
8927
8928 return SDValue();
8929}
Craig Topperff79bc62013-08-18 08:53:01 +00008930
8931static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8932 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008933 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008934 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008935 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008936 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008937
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008938 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8939 return LowerZERO_EXTEND_AVX512(Op, DAG);
8940
Nadav Rotem0509db22012-12-28 05:45:24 +00008941 if (Subtarget->hasFp256()) {
8942 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8943 if (Res.getNode())
8944 return Res;
8945 }
8946
Michael Liaoa7554632012-10-23 17:36:08 +00008947 if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8948 VT.getVectorNumElements() != SVT.getVectorNumElements())
8949 return SDValue();
8950
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008951 assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
Michael Liaoa7554632012-10-23 17:36:08 +00008952
8953 // AVX2 has better support of integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008954 if (Subtarget->hasInt256())
Michael Liaoa7554632012-10-23 17:36:08 +00008955 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8956
8957 SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8958 static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8959 SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008960 DAG.getVectorShuffle(MVT::v8i16, DL, In,
8961 DAG.getUNDEF(MVT::v8i16),
8962 &Mask[0]));
Michael Liaoa7554632012-10-23 17:36:08 +00008963
8964 return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8965}
8966
Craig Topperd713c0f2013-01-20 21:34:37 +00008967SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008968 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008969 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008970 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008971 MVT InVT = In.getSimpleValueType();
8972 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8973 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008974
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008975 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8976 if (VT.getVectorElementType().getSizeInBits() >=8)
8977 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8978
8979 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8980 unsigned NumElts = InVT.getVectorNumElements();
8981 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8982 if (InVT.getSizeInBits() < 512) {
8983 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8984 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8985 InVT = ExtVT;
8986 }
8987 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8988 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8989 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8990 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8991 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8992 MachinePointerInfo::getConstantPool(),
8993 false, false, false, Alignment);
8994 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8995 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8996 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8997 }
8998
8999 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009000 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9001 if (Subtarget->hasInt256()) {
9002 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9003 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9004 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9005 ShufMask);
9006 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9007 DAG.getIntPtrConstant(0));
9008 }
9009
9010 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9011 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9012 DAG.getIntPtrConstant(0));
9013 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9014 DAG.getIntPtrConstant(2));
9015
9016 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9017 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9018
9019 // The PSHUFD mask:
9020 static const int ShufMask1[] = {0, 2, 0, 0};
9021 SDValue Undef = DAG.getUNDEF(VT);
9022 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9023 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9024
9025 // The MOVLHPS mask:
9026 static const int ShufMask2[] = {0, 1, 4, 5};
9027 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9028 }
9029
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009030 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009031 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9032 if (Subtarget->hasInt256()) {
9033 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9034
9035 SmallVector<SDValue,32> pshufbMask;
9036 for (unsigned i = 0; i < 2; ++i) {
9037 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9038 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9039 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9040 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9041 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9042 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9043 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9044 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9045 for (unsigned j = 0; j < 8; ++j)
9046 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9047 }
9048 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9049 &pshufbMask[0], 32);
9050 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9051 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9052
9053 static const int ShufMask[] = {0, 2, -1, -1};
9054 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9055 &ShufMask[0]);
9056 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9057 DAG.getIntPtrConstant(0));
9058 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9059 }
9060
9061 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9062 DAG.getIntPtrConstant(0));
9063
9064 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9065 DAG.getIntPtrConstant(4));
9066
9067 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9068 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9069
9070 // The PSHUFB mask:
9071 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9072 -1, -1, -1, -1, -1, -1, -1, -1};
9073
9074 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9075 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9076 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9077
9078 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9079 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9080
9081 // The MOVLHPS Mask:
9082 static const int ShufMask2[] = {0, 1, 4, 5};
9083 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9084 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9085 }
9086
9087 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009088 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009089 return SDValue();
9090
Nadav Rotem3c22a442012-12-27 07:45:10 +00009091 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009092
9093 unsigned NumElems = VT.getVectorNumElements();
9094 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9095 NumElems * 2);
9096
Michael Liaobedcbd42012-10-16 18:14:11 +00009097 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9098 // Prepare truncation shuffle mask
9099 for (unsigned i = 0; i != NumElems; ++i)
9100 MaskVec[i] = i * 2;
9101 SDValue V = DAG.getVectorShuffle(NVT, DL,
9102 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9103 DAG.getUNDEF(NVT), &MaskVec[0]);
9104 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9105 DAG.getIntPtrConstant(0));
9106}
9107
Dan Gohmand858e902010-04-17 15:26:15 +00009108SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9109 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009110 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009111 if (VT.isVector()) {
9112 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009113 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9114 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009115 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009116 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009117 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009118
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009119 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9120 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009121 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009122 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9123 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009124
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009125 if (StackSlot.getNode())
9126 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009127 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009128 FIST, StackSlot, MachinePointerInfo(),
9129 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009130
9131 // The node is the result.
9132 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009133}
9134
Dan Gohmand858e902010-04-17 15:26:15 +00009135SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9136 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009137 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9138 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009139 SDValue FIST = Vals.first, StackSlot = Vals.second;
9140 assert(FIST.getNode() && "Unexpected failure");
9141
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009142 if (StackSlot.getNode())
9143 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009144 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009145 FIST, StackSlot, MachinePointerInfo(),
9146 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009147
9148 // The node is the result.
9149 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009150}
9151
Craig Topperb84b4232013-01-21 06:13:28 +00009152static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009153 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009154 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009155 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009156 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009157
9158 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9159
9160 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9161 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9162 In, DAG.getUNDEF(SVT)));
9163}
9164
Craig Topper43620672012-09-08 07:31:51 +00009165SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009166 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009167 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009168 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009169 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009170 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9171 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009172 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009173 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009174 }
Craig Topper43620672012-09-08 07:31:51 +00009175 Constant *C;
9176 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009177 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9178 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009179 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009180 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9181 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009182 C = ConstantVector::getSplat(NumElts, C);
9183 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9184 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009185 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009186 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009187 false, false, false, Alignment);
9188 if (VT.isVector()) {
9189 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9190 return DAG.getNode(ISD::BITCAST, dl, VT,
9191 DAG.getNode(ISD::AND, dl, ANDVT,
9192 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9193 Op.getOperand(0)),
9194 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9195 }
Dale Johannesenace16102009-02-03 19:33:06 +00009196 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009197}
9198
Dan Gohmand858e902010-04-17 15:26:15 +00009199SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009200 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009201 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009202 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009203 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009204 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9205 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009206 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009207 NumElts = VT.getVectorNumElements();
9208 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009209 Constant *C;
9210 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009211 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9212 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009213 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009214 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9215 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009216 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009217 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9218 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009219 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009220 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009221 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009222 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009223 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009224 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009225 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009226 DAG.getNode(ISD::BITCAST, dl, XORVT,
9227 Op.getOperand(0)),
9228 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009229 }
Craig Topper69947b92012-04-23 06:57:04 +00009230
9231 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009232}
9233
Dan Gohmand858e902010-04-17 15:26:15 +00009234SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009235 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009236 SDValue Op0 = Op.getOperand(0);
9237 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009238 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009239 MVT VT = Op.getSimpleValueType();
9240 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009241
9242 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009243 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009244 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009245 SrcVT = VT;
9246 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009247 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009248 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009249 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009250 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009251 }
9252
9253 // At this point the operands and the result should have the same
9254 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009255
Evan Cheng68c47cb2007-01-05 07:55:56 +00009256 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009257 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009258 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009259 const fltSemantics &Sem = APFloat::IEEEdouble;
9260 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9261 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009262 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009263 const fltSemantics &Sem = APFloat::IEEEsingle;
9264 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9265 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9266 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9267 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009268 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009269 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009270 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009271 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009272 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009273 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009274 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009275
9276 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009277 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009278 // Op0 is MVT::f32, Op1 is MVT::f64.
9279 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9280 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9281 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009282 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009283 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009284 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009285 }
9286
Evan Cheng73d6cf12007-01-05 21:37:56 +00009287 // Clear first operand sign bit.
9288 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009289 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009290 const fltSemantics &Sem = APFloat::IEEEdouble;
9291 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9292 APInt(64, ~(1ULL << 63)))));
9293 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009294 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009295 const fltSemantics &Sem = APFloat::IEEEsingle;
9296 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9297 APInt(32, ~(1U << 31)))));
9298 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9299 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9300 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009301 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009302 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009303 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009304 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009305 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009306 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009307 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009308
9309 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009310 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009311}
9312
Craig Topper55b24052012-09-11 06:15:32 +00009313static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009314 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009315 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009316 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009317
9318 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9319 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9320 DAG.getConstant(1, VT));
9321 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9322}
9323
Michael Liaof966e4e2012-09-13 20:24:54 +00009324// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9325//
Craig Topper158ec072013-08-14 07:34:43 +00009326static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9327 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009328 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9329
9330 if (!Subtarget->hasSSE41())
9331 return SDValue();
9332
9333 if (!Op->hasOneUse())
9334 return SDValue();
9335
9336 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009337 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009338
9339 SmallVector<SDValue, 8> Opnds;
9340 DenseMap<SDValue, unsigned> VecInMap;
9341 EVT VT = MVT::Other;
9342
9343 // Recognize a special case where a vector is casted into wide integer to
9344 // test all 0s.
9345 Opnds.push_back(N->getOperand(0));
9346 Opnds.push_back(N->getOperand(1));
9347
9348 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009349 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009350 // BFS traverse all OR'd operands.
9351 if (I->getOpcode() == ISD::OR) {
9352 Opnds.push_back(I->getOperand(0));
9353 Opnds.push_back(I->getOperand(1));
9354 // Re-evaluate the number of nodes to be traversed.
9355 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9356 continue;
9357 }
9358
9359 // Quit if a non-EXTRACT_VECTOR_ELT
9360 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9361 return SDValue();
9362
9363 // Quit if without a constant index.
9364 SDValue Idx = I->getOperand(1);
9365 if (!isa<ConstantSDNode>(Idx))
9366 return SDValue();
9367
9368 SDValue ExtractedFromVec = I->getOperand(0);
9369 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9370 if (M == VecInMap.end()) {
9371 VT = ExtractedFromVec.getValueType();
9372 // Quit if not 128/256-bit vector.
9373 if (!VT.is128BitVector() && !VT.is256BitVector())
9374 return SDValue();
9375 // Quit if not the same type.
9376 if (VecInMap.begin() != VecInMap.end() &&
9377 VT != VecInMap.begin()->first.getValueType())
9378 return SDValue();
9379 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9380 }
9381 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9382 }
9383
9384 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009385 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009386
9387 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9388 SmallVector<SDValue, 8> VecIns;
9389
9390 for (DenseMap<SDValue, unsigned>::const_iterator
9391 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9392 // Quit if not all elements are used.
9393 if (I->second != FullMask)
9394 return SDValue();
9395 VecIns.push_back(I->first);
9396 }
9397
9398 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9399
9400 // Cast all vectors into TestVT for PTEST.
9401 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9402 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9403
9404 // If more than one full vectors are evaluated, OR them first before PTEST.
9405 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9406 // Each iteration will OR 2 nodes and append the result until there is only
9407 // 1 node left, i.e. the final OR'd value of all vectors.
9408 SDValue LHS = VecIns[Slot];
9409 SDValue RHS = VecIns[Slot + 1];
9410 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9411 }
9412
9413 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9414 VecIns.back(), VecIns.back());
9415}
9416
Dan Gohman076aee32009-03-04 19:44:21 +00009417/// Emit nodes that will be selected as "test Op0,Op0", or something
9418/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009419SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009420 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009421 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009422
Dan Gohman31125812009-03-07 01:58:32 +00009423 // CF and OF aren't always set the way we want. Determine which
9424 // of these we need.
9425 bool NeedCF = false;
9426 bool NeedOF = false;
9427 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009428 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009429 case X86::COND_A: case X86::COND_AE:
9430 case X86::COND_B: case X86::COND_BE:
9431 NeedCF = true;
9432 break;
9433 case X86::COND_G: case X86::COND_GE:
9434 case X86::COND_L: case X86::COND_LE:
9435 case X86::COND_O: case X86::COND_NO:
9436 NeedOF = true;
9437 break;
Dan Gohman31125812009-03-07 01:58:32 +00009438 }
9439
Dan Gohman076aee32009-03-04 19:44:21 +00009440 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009441 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9442 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009443 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9444 // Emit a CMP with 0, which is the TEST pattern.
9445 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9446 DAG.getConstant(0, Op.getValueType()));
9447
9448 unsigned Opcode = 0;
9449 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009450
9451 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009452 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009453 // of the arithmetic instruction and use a reduced bit-width instruction.
9454 bool NeedTruncation = false;
9455 SDValue ArithOp = Op;
9456 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9457 SDValue Arith = Op->getOperand(0);
9458 // Both the trunc and the arithmetic op need to have one user each.
9459 if (Arith->hasOneUse())
9460 switch (Arith.getOpcode()) {
9461 default: break;
9462 case ISD::ADD:
9463 case ISD::SUB:
9464 case ISD::AND:
9465 case ISD::OR:
9466 case ISD::XOR: {
9467 NeedTruncation = true;
9468 ArithOp = Arith;
9469 }
9470 }
9471 }
9472
9473 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9474 // which may be the result of a CAST. We use the variable 'Op', which is the
9475 // non-casted variable when we check for possible users.
9476 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009477 case ISD::ADD:
9478 // Due to an isel shortcoming, be conservative if this add is likely to be
9479 // selected as part of a load-modify-store instruction. When the root node
9480 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9481 // uses of other nodes in the match, such as the ADD in this case. This
9482 // leads to the ADD being left around and reselected, with the result being
9483 // two adds in the output. Alas, even if none our users are stores, that
9484 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9485 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9486 // climbing the DAG back to the root, and it doesn't seem to be worth the
9487 // effort.
9488 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009489 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9490 if (UI->getOpcode() != ISD::CopyToReg &&
9491 UI->getOpcode() != ISD::SETCC &&
9492 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009493 goto default_case;
9494
9495 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009496 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009497 // An add of one will be selected as an INC.
9498 if (C->getAPIntValue() == 1) {
9499 Opcode = X86ISD::INC;
9500 NumOperands = 1;
9501 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009502 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009503
9504 // An add of negative one (subtract of one) will be selected as a DEC.
9505 if (C->getAPIntValue().isAllOnesValue()) {
9506 Opcode = X86ISD::DEC;
9507 NumOperands = 1;
9508 break;
9509 }
Dan Gohman076aee32009-03-04 19:44:21 +00009510 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009511
9512 // Otherwise use a regular EFLAGS-setting add.
9513 Opcode = X86ISD::ADD;
9514 NumOperands = 2;
9515 break;
9516 case ISD::AND: {
9517 // If the primary and result isn't used, don't bother using X86ISD::AND,
9518 // because a TEST instruction will be better.
9519 bool NonFlagUse = false;
9520 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9521 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9522 SDNode *User = *UI;
9523 unsigned UOpNo = UI.getOperandNo();
9524 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9525 // Look pass truncate.
9526 UOpNo = User->use_begin().getOperandNo();
9527 User = *User->use_begin();
9528 }
9529
9530 if (User->getOpcode() != ISD::BRCOND &&
9531 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009532 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009533 NonFlagUse = true;
9534 break;
9535 }
Dan Gohman076aee32009-03-04 19:44:21 +00009536 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009537
9538 if (!NonFlagUse)
9539 break;
9540 }
9541 // FALL THROUGH
9542 case ISD::SUB:
9543 case ISD::OR:
9544 case ISD::XOR:
9545 // Due to the ISEL shortcoming noted above, be conservative if this op is
9546 // likely to be selected as part of a load-modify-store instruction.
9547 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9548 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9549 if (UI->getOpcode() == ISD::STORE)
9550 goto default_case;
9551
9552 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009553 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009554 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009555 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009556 case ISD::XOR: Opcode = X86ISD::XOR; break;
9557 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009558 case ISD::OR: {
9559 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009560 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009561 if (EFLAGS.getNode())
9562 return EFLAGS;
9563 }
9564 Opcode = X86ISD::OR;
9565 break;
9566 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009567 }
9568
9569 NumOperands = 2;
9570 break;
9571 case X86ISD::ADD:
9572 case X86ISD::SUB:
9573 case X86ISD::INC:
9574 case X86ISD::DEC:
9575 case X86ISD::OR:
9576 case X86ISD::XOR:
9577 case X86ISD::AND:
9578 return SDValue(Op.getNode(), 1);
9579 default:
9580 default_case:
9581 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009582 }
9583
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009584 // If we found that truncation is beneficial, perform the truncation and
9585 // update 'Op'.
9586 if (NeedTruncation) {
9587 EVT VT = Op.getValueType();
9588 SDValue WideVal = Op->getOperand(0);
9589 EVT WideVT = WideVal.getValueType();
9590 unsigned ConvertedOp = 0;
9591 // Use a target machine opcode to prevent further DAGCombine
9592 // optimizations that may separate the arithmetic operations
9593 // from the setcc node.
9594 switch (WideVal.getOpcode()) {
9595 default: break;
9596 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9597 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9598 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9599 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9600 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9601 }
9602
9603 if (ConvertedOp) {
9604 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9605 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9606 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9607 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9608 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9609 }
9610 }
9611 }
9612
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009613 if (Opcode == 0)
9614 // Emit a CMP with 0, which is the TEST pattern.
9615 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9616 DAG.getConstant(0, Op.getValueType()));
9617
9618 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9619 SmallVector<SDValue, 4> Ops;
9620 for (unsigned i = 0; i != NumOperands; ++i)
9621 Ops.push_back(Op.getOperand(i));
9622
9623 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9624 DAG.ReplaceAllUsesWith(Op, New);
9625 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009626}
9627
9628/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9629/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009630SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009631 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009632 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9633 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009634 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009635
Andrew Trickac6d9be2013-05-25 02:42:55 +00009636 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009637 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9638 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9639 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9640 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9641 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9642 Op0, Op1);
9643 return SDValue(Sub.getNode(), 1);
9644 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009645 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009646}
9647
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009648/// Convert a comparison if required by the subtarget.
9649SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9650 SelectionDAG &DAG) const {
9651 // If the subtarget does not support the FUCOMI instruction, floating-point
9652 // comparisons have to be converted.
9653 if (Subtarget->hasCMov() ||
9654 Cmp.getOpcode() != X86ISD::CMP ||
9655 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9656 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9657 return Cmp;
9658
9659 // The instruction selector will select an FUCOM instruction instead of
9660 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9661 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9662 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009663 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009664 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9665 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9666 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9667 DAG.getConstant(8, MVT::i8));
9668 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9669 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9670}
9671
Evan Cheng4e544802012-12-05 00:10:38 +00009672static bool isAllOnes(SDValue V) {
9673 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9674 return C && C->isAllOnesValue();
9675}
9676
Evan Chengd40d03e2010-01-06 19:38:29 +00009677/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9678/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009679SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009680 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009681 SDValue Op0 = And.getOperand(0);
9682 SDValue Op1 = And.getOperand(1);
9683 if (Op0.getOpcode() == ISD::TRUNCATE)
9684 Op0 = Op0.getOperand(0);
9685 if (Op1.getOpcode() == ISD::TRUNCATE)
9686 Op1 = Op1.getOperand(0);
9687
Evan Chengd40d03e2010-01-06 19:38:29 +00009688 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009689 if (Op1.getOpcode() == ISD::SHL)
9690 std::swap(Op0, Op1);
9691 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009692 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9693 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009694 // If we looked past a truncate, check that it's only truncating away
9695 // known zeros.
9696 unsigned BitWidth = Op0.getValueSizeInBits();
9697 unsigned AndBitWidth = And.getValueSizeInBits();
9698 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009699 APInt Zeros, Ones;
9700 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009701 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9702 return SDValue();
9703 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009704 LHS = Op1;
9705 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009706 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009707 } else if (Op1.getOpcode() == ISD::Constant) {
9708 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009709 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009710 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009711
9712 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009713 LHS = AndLHS.getOperand(0);
9714 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009715 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009716
9717 // Use BT if the immediate can't be encoded in a TEST instruction.
9718 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9719 LHS = AndLHS;
9720 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9721 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009722 }
Evan Cheng0488db92007-09-25 01:57:46 +00009723
Evan Chengd40d03e2010-01-06 19:38:29 +00009724 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009725 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009726 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009727 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009728 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009729 // Also promote i16 to i32 for performance / code size reason.
9730 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009731 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009732 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009733
Evan Chengd40d03e2010-01-06 19:38:29 +00009734 // If the operand types disagree, extend the shift amount to match. Since
9735 // BT ignores high bits (like shifts) we can use anyextend.
9736 if (LHS.getValueType() != RHS.getValueType())
9737 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009738
Evan Chengd40d03e2010-01-06 19:38:29 +00009739 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009740 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009741 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9742 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009743 }
9744
Evan Cheng54de3ea2010-01-05 06:52:31 +00009745 return SDValue();
9746}
9747
Benjamin Kramer75311b72013-08-04 12:05:16 +00009748/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9749/// mask CMPs.
9750static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9751 SDValue &Op1) {
9752 unsigned SSECC;
9753 bool Swap = false;
9754
9755 // SSE Condition code mapping:
9756 // 0 - EQ
9757 // 1 - LT
9758 // 2 - LE
9759 // 3 - UNORD
9760 // 4 - NEQ
9761 // 5 - NLT
9762 // 6 - NLE
9763 // 7 - ORD
9764 switch (SetCCOpcode) {
9765 default: llvm_unreachable("Unexpected SETCC condition");
9766 case ISD::SETOEQ:
9767 case ISD::SETEQ: SSECC = 0; break;
9768 case ISD::SETOGT:
9769 case ISD::SETGT: Swap = true; // Fallthrough
9770 case ISD::SETLT:
9771 case ISD::SETOLT: SSECC = 1; break;
9772 case ISD::SETOGE:
9773 case ISD::SETGE: Swap = true; // Fallthrough
9774 case ISD::SETLE:
9775 case ISD::SETOLE: SSECC = 2; break;
9776 case ISD::SETUO: SSECC = 3; break;
9777 case ISD::SETUNE:
9778 case ISD::SETNE: SSECC = 4; break;
9779 case ISD::SETULE: Swap = true; // Fallthrough
9780 case ISD::SETUGE: SSECC = 5; break;
9781 case ISD::SETULT: Swap = true; // Fallthrough
9782 case ISD::SETUGT: SSECC = 6; break;
9783 case ISD::SETO: SSECC = 7; break;
9784 case ISD::SETUEQ:
9785 case ISD::SETONE: SSECC = 8; break;
9786 }
9787 if (Swap)
9788 std::swap(Op0, Op1);
9789
9790 return SSECC;
9791}
9792
Craig Topper89af15e2011-09-18 08:03:58 +00009793// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009794// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009795static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009796 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009797
Craig Topper7a9a28b2012-08-12 02:23:29 +00009798 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009799 "Unsupported value type for operation");
9800
Craig Topper66ddd152012-04-27 22:54:43 +00009801 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009802 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009803 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009804
9805 // Extract the LHS vectors
9806 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009807 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9808 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009809
9810 // Extract the RHS vectors
9811 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009812 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9813 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009814
9815 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009816 MVT EltVT = VT.getVectorElementType();
9817 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009818 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9819 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9820 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9821}
9822
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009823static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009824 SDValue Op0 = Op.getOperand(0);
9825 SDValue Op1 = Op.getOperand(1);
9826 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009827 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009828
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009829 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009830 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009831 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009832
9833 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9834 SDLoc dl(Op);
9835
9836 bool Unsigned = false;
9837 unsigned SSECC;
9838 switch (SetCCOpcode) {
9839 default: llvm_unreachable("Unexpected SETCC condition");
9840 case ISD::SETNE: SSECC = 4; break;
9841 case ISD::SETEQ: SSECC = 0; break;
9842 case ISD::SETUGT: Unsigned = true;
9843 case ISD::SETGT: SSECC = 6; break; // NLE
9844 case ISD::SETULT: Unsigned = true;
9845 case ISD::SETLT: SSECC = 1; break;
9846 case ISD::SETUGE: Unsigned = true;
9847 case ISD::SETGE: SSECC = 5; break; // NLT
9848 case ISD::SETULE: Unsigned = true;
9849 case ISD::SETLE: SSECC = 2; break;
9850 }
9851 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9852 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9853 DAG.getConstant(SSECC, MVT::i8));
9854
9855}
9856
Craig Topper26827f32013-01-20 09:02:22 +00009857static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9858 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009859 SDValue Op0 = Op.getOperand(0);
9860 SDValue Op1 = Op.getOperand(1);
9861 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009862 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009863 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009864 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009865 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009866
9867 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009868#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009869 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009870 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9871#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009872
Benjamin Kramer75311b72013-08-04 12:05:16 +00009873 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009874 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009875 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009876 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009877 Opc = X86ISD::CMPM;
9878 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009879 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009880 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009881 unsigned CC0, CC1;
9882 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009883 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009884 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9885 } else {
9886 assert(SetCCOpcode == ISD::SETONE);
9887 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009888 }
Craig Topper523908d2012-08-13 02:34:03 +00009889
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009890 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009891 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009892 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009893 DAG.getConstant(CC1, MVT::i8));
9894 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009895 }
9896 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009897 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009898 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009899 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009900
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009901 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009902 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009903 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009904
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009905 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9906 EVT OpVT = Op1.getValueType();
9907 if (Subtarget->hasAVX512()) {
9908 if (Op1.getValueType().is512BitVector() ||
9909 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9910 return LowerIntVSETCC_AVX512(Op, DAG);
9911
9912 // In AVX-512 architecture setcc returns mask with i1 elements,
9913 // But there is no compare instruction for i8 and i16 elements.
9914 // We are not talking about 512-bit operands in this case, these
9915 // types are illegal.
9916 if (MaskResult &&
9917 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9918 OpVT.getVectorElementType().getSizeInBits() >= 8))
9919 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9920 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9921 }
9922
Nate Begeman30a0de92008-07-17 16:51:19 +00009923 // We are handling one of the integer comparisons here. Since SSE only has
9924 // GT and EQ comparisons for integer, swapping operands and multiple
9925 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009926 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009927 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9928
Nate Begeman30a0de92008-07-17 16:51:19 +00009929 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009930 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009931 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009932 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009933 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009934 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009935 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009936 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9937 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009938 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009939 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9940 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009941 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009942 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9943 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009944 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009945
9946 // Special case: Use min/max operations for SETULE/SETUGE
9947 MVT VET = VT.getVectorElementType();
9948 bool hasMinMax =
9949 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9950 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9951
9952 if (hasMinMax) {
9953 switch (SetCCOpcode) {
9954 default: break;
9955 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9956 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9957 }
9958
9959 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9960 }
9961
Nate Begeman30a0de92008-07-17 16:51:19 +00009962 if (Swap)
9963 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009964
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009965 // Check that the operation in question is available (most are plain SSE2,
9966 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009967 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009968 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9969 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9970
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009971 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009972 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9973 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9974
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009975 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009976 // bits of the inputs before performing those operations. The lower
9977 // compare is always unsigned.
9978 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009979 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009980 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9981 } else {
9982 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9983 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9984 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9985 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009986 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009987 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9988 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009989
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009990 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9991 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9992 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9993
9994 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009995 static const int MaskHi[] = { 1, 1, 3, 3 };
9996 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009997 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9998 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9999 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10000
10001 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10002 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10003
10004 if (Invert)
10005 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10006
10007 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10008 }
10009
Benjamin Kramer382ed782012-12-25 12:54:19 +000010010 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10011 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +000010012 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010013 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10014
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010015 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010016 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10017 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10018
10019 // Do the compare.
10020 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10021
10022 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010023 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010024 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10025 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010026
10027 if (Invert)
10028 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10029
10030 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10031 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010032 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010033
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010034 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10035 // bits of the inputs before performing those operations.
10036 if (FlipSigns) {
10037 EVT EltVT = VT.getVectorElementType();
10038 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10039 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10040 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10041 }
10042
Dale Johannesenace16102009-02-03 19:33:06 +000010043 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010044
10045 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010046 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010047 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010048
10049 if (MinMax)
10050 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010051
Nate Begeman30a0de92008-07-17 16:51:19 +000010052 return Result;
10053}
Evan Cheng0488db92007-09-25 01:57:46 +000010054
Craig Topper26827f32013-01-20 09:02:22 +000010055SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10056
Craig Topper5a0910b2013-08-15 02:33:50 +000010057 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010058
10059 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10060
10061 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10062 SDValue Op0 = Op.getOperand(0);
10063 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010064 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010065 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10066
10067 // Optimize to BT if possible.
10068 // Lower (X & (1 << N)) == 0 to BT(X, N).
10069 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10070 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10071 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10072 Op1.getOpcode() == ISD::Constant &&
10073 cast<ConstantSDNode>(Op1)->isNullValue() &&
10074 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10075 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10076 if (NewSetCC.getNode())
10077 return NewSetCC;
10078 }
10079
10080 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10081 // these.
10082 if (Op1.getOpcode() == ISD::Constant &&
10083 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10084 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10085 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10086
10087 // If the input is a setcc, then reuse the input setcc or use a new one with
10088 // the inverted condition.
10089 if (Op0.getOpcode() == X86ISD::SETCC) {
10090 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10091 bool Invert = (CC == ISD::SETNE) ^
10092 cast<ConstantSDNode>(Op1)->isNullValue();
10093 if (!Invert) return Op0;
10094
10095 CCode = X86::GetOppositeBranchCondition(CCode);
10096 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10097 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10098 }
10099 }
10100
Craig Topper5a0910b2013-08-15 02:33:50 +000010101 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010102 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10103 if (X86CC == X86::COND_INVALID)
10104 return SDValue();
10105
10106 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10107 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10108 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10109 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10110}
10111
Evan Cheng370e5342008-12-03 08:38:43 +000010112// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010113static bool isX86LogicalCmp(SDValue Op) {
10114 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010115 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10116 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010117 return true;
10118 if (Op.getResNo() == 1 &&
10119 (Opc == X86ISD::ADD ||
10120 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010121 Opc == X86ISD::ADC ||
10122 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010123 Opc == X86ISD::SMUL ||
10124 Opc == X86ISD::UMUL ||
10125 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010126 Opc == X86ISD::DEC ||
10127 Opc == X86ISD::OR ||
10128 Opc == X86ISD::XOR ||
10129 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010130 return true;
10131
Chris Lattner9637d5b2010-12-05 07:49:54 +000010132 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10133 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010134
Dan Gohman076aee32009-03-04 19:44:21 +000010135 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010136}
10137
Chris Lattnera2b56002010-12-05 01:23:24 +000010138static bool isZero(SDValue V) {
10139 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10140 return C && C->isNullValue();
10141}
10142
Evan Chengb64dd5f2012-08-07 22:21:00 +000010143static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10144 if (V.getOpcode() != ISD::TRUNCATE)
10145 return false;
10146
10147 SDValue VOp0 = V.getOperand(0);
10148 unsigned InBits = VOp0.getValueSizeInBits();
10149 unsigned Bits = V.getValueSizeInBits();
10150 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10151}
10152
Dan Gohmand858e902010-04-17 15:26:15 +000010153SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010154 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010155 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010156 SDValue Op1 = Op.getOperand(1);
10157 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010158 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010159 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010160 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010161
Benjamin Kramer75311b72013-08-04 12:05:16 +000010162 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10163 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10164 // sequence later on.
10165 if (Cond.getOpcode() == ISD::SETCC &&
10166 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10167 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10168 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10169 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10170 int SSECC = translateX86FSETCC(
10171 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10172
10173 if (SSECC != 8) {
10174 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10175 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10176 DAG.getConstant(SSECC, MVT::i8));
10177 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10178 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10179 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10180 }
10181 }
10182
Dan Gohman1a492952009-10-20 16:22:37 +000010183 if (Cond.getOpcode() == ISD::SETCC) {
10184 SDValue NewCond = LowerSETCC(Cond, DAG);
10185 if (NewCond.getNode())
10186 Cond = NewCond;
10187 }
Evan Cheng734503b2006-09-11 02:19:56 +000010188
Chris Lattnera2b56002010-12-05 01:23:24 +000010189 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010190 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010191 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010192 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010193 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010194 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10195 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010196 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010197
Chris Lattnera2b56002010-12-05 01:23:24 +000010198 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010199
10200 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010201 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10202 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010203
10204 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010205 // Apply further optimizations for special cases
10206 // (select (x != 0), -1, 0) -> neg & sbb
10207 // (select (x == 0), 0, -1) -> neg & sbb
10208 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010209 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010210 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10211 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010212 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10213 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010214 CmpOp0);
10215 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10216 DAG.getConstant(X86::COND_B, MVT::i8),
10217 SDValue(Neg.getNode(), 1));
10218 return Res;
10219 }
10220
Chris Lattnera2b56002010-12-05 01:23:24 +000010221 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10222 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010223 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010224
Chris Lattner96908b12010-12-05 02:00:51 +000010225 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010226 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10227 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010228
Chris Lattner96908b12010-12-05 02:00:51 +000010229 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10230 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010231
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010232 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010233 if (N2C == 0 || !N2C->isNullValue())
10234 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10235 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010236 }
10237 }
10238
Chris Lattnera2b56002010-12-05 01:23:24 +000010239 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010240 if (Cond.getOpcode() == ISD::AND &&
10241 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10242 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010243 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010244 Cond = Cond.getOperand(0);
10245 }
10246
Evan Cheng3f41d662007-10-08 22:16:29 +000010247 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10248 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010249 unsigned CondOpcode = Cond.getOpcode();
10250 if (CondOpcode == X86ISD::SETCC ||
10251 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010252 CC = Cond.getOperand(0);
10253
Dan Gohman475871a2008-07-27 21:46:04 +000010254 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010255 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010256 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010257
Evan Cheng3f41d662007-10-08 22:16:29 +000010258 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010259 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010260 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010261 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010262
Chris Lattnerd1980a52009-03-12 06:52:53 +000010263 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10264 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010265 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010266 addTest = false;
10267 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010268 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10269 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10270 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10271 Cond.getOperand(0).getValueType() != MVT::i8)) {
10272 SDValue LHS = Cond.getOperand(0);
10273 SDValue RHS = Cond.getOperand(1);
10274 unsigned X86Opcode;
10275 unsigned X86Cond;
10276 SDVTList VTs;
10277 switch (CondOpcode) {
10278 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10279 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10280 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10281 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10282 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10283 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10284 default: llvm_unreachable("unexpected overflowing operator");
10285 }
10286 if (CondOpcode == ISD::UMULO)
10287 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10288 MVT::i32);
10289 else
10290 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10291
10292 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10293
10294 if (CondOpcode == ISD::UMULO)
10295 Cond = X86Op.getValue(2);
10296 else
10297 Cond = X86Op.getValue(1);
10298
10299 CC = DAG.getConstant(X86Cond, MVT::i8);
10300 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010301 }
10302
10303 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010304 // Look pass the truncate if the high bits are known zero.
10305 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10306 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010307
10308 // We know the result of AND is compared against zero. Try to match
10309 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010310 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010311 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010312 if (NewSetCC.getNode()) {
10313 CC = NewSetCC.getOperand(0);
10314 Cond = NewSetCC.getOperand(1);
10315 addTest = false;
10316 }
10317 }
10318 }
10319
10320 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010321 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010322 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010323 }
10324
Benjamin Kramere915ff32010-12-22 23:09:28 +000010325 // a < b ? -1 : 0 -> RES = ~setcc_carry
10326 // a < b ? 0 : -1 -> RES = setcc_carry
10327 // a >= b ? -1 : 0 -> RES = setcc_carry
10328 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010329 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010330 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010331 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10332
10333 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10334 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10335 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10336 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10337 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10338 return DAG.getNOT(DL, Res, Res.getValueType());
10339 return Res;
10340 }
10341 }
10342
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010343 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10344 // widen the cmov and push the truncate through. This avoids introducing a new
10345 // branch during isel and doesn't add any extensions.
10346 if (Op.getValueType() == MVT::i8 &&
10347 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10348 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10349 if (T1.getValueType() == T2.getValueType() &&
10350 // Blacklist CopyFromReg to avoid partial register stalls.
10351 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10352 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010353 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010354 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10355 }
10356 }
10357
Evan Cheng0488db92007-09-25 01:57:46 +000010358 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10359 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010360 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010361 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010362 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010363}
10364
Craig Topperff79bc62013-08-18 08:53:01 +000010365static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10366 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010367 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010368 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010369 SDLoc dl(Op);
10370
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010371 unsigned int NumElts = VT.getVectorNumElements();
10372 if (NumElts != 8 && NumElts != 16)
10373 return SDValue();
10374
10375 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010376 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10377
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010378 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10379 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10380
10381 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10382 Constant *C = ConstantInt::get(*DAG.getContext(),
10383 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10384
10385 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10386 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10387 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10388 MachinePointerInfo::getConstantPool(),
10389 false, false, false, Alignment);
10390 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10391 if (VT.is512BitVector())
10392 return Brcst;
10393 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010394}
10395
Craig Topperff79bc62013-08-18 08:53:01 +000010396static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10397 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010398 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010399 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010400 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010401 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010402
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010403 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10404 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10405
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010406 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10407 (VT != MVT::v8i32 || InVT != MVT::v8i16))
10408 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010409
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010410 if (Subtarget->hasInt256())
10411 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010412
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010413 // Optimize vectors in AVX mode
10414 // Sign extend v8i16 to v8i32 and
10415 // v4i32 to v4i64
10416 //
10417 // Divide input vector into two parts
10418 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10419 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10420 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010421
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010422 unsigned NumElems = InVT.getVectorNumElements();
10423 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010424
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010425 SmallVector<int,8> ShufMask1(NumElems, -1);
10426 for (unsigned i = 0; i != NumElems/2; ++i)
10427 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010428
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010429 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010430
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010431 SmallVector<int,8> ShufMask2(NumElems, -1);
10432 for (unsigned i = 0; i != NumElems/2; ++i)
10433 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010434
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010435 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010436
Craig Toppera080daf2013-01-20 21:50:27 +000010437 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010438 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010439
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010440 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10441 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010442
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010443 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010444}
10445
Evan Cheng370e5342008-12-03 08:38:43 +000010446// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10447// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10448// from the AND / OR.
10449static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10450 Opc = Op.getOpcode();
10451 if (Opc != ISD::OR && Opc != ISD::AND)
10452 return false;
10453 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10454 Op.getOperand(0).hasOneUse() &&
10455 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10456 Op.getOperand(1).hasOneUse());
10457}
10458
Evan Cheng961d6d42009-02-02 08:19:07 +000010459// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10460// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010461static bool isXor1OfSetCC(SDValue Op) {
10462 if (Op.getOpcode() != ISD::XOR)
10463 return false;
10464 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10465 if (N1C && N1C->getAPIntValue() == 1) {
10466 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10467 Op.getOperand(0).hasOneUse();
10468 }
10469 return false;
10470}
10471
Dan Gohmand858e902010-04-17 15:26:15 +000010472SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010473 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010474 SDValue Chain = Op.getOperand(0);
10475 SDValue Cond = Op.getOperand(1);
10476 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010477 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010478 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010479 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010480
Dan Gohman1a492952009-10-20 16:22:37 +000010481 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010482 // Check for setcc([su]{add,sub,mul}o == 0).
10483 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10484 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10485 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10486 Cond.getOperand(0).getResNo() == 1 &&
10487 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10488 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10489 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10490 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10491 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10492 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10493 Inverted = true;
10494 Cond = Cond.getOperand(0);
10495 } else {
10496 SDValue NewCond = LowerSETCC(Cond, DAG);
10497 if (NewCond.getNode())
10498 Cond = NewCond;
10499 }
Dan Gohman1a492952009-10-20 16:22:37 +000010500 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010501#if 0
10502 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010503 else if (Cond.getOpcode() == X86ISD::ADD ||
10504 Cond.getOpcode() == X86ISD::SUB ||
10505 Cond.getOpcode() == X86ISD::SMUL ||
10506 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010507 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010508#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010509
Evan Chengad9c0a32009-12-15 00:53:42 +000010510 // Look pass (and (setcc_carry (cmp ...)), 1).
10511 if (Cond.getOpcode() == ISD::AND &&
10512 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10513 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010514 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010515 Cond = Cond.getOperand(0);
10516 }
10517
Evan Cheng3f41d662007-10-08 22:16:29 +000010518 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10519 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010520 unsigned CondOpcode = Cond.getOpcode();
10521 if (CondOpcode == X86ISD::SETCC ||
10522 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010523 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010524
Dan Gohman475871a2008-07-27 21:46:04 +000010525 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010526 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010527 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010528 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010529 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010530 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010531 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010532 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010533 default: break;
10534 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010535 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010536 // These can only come from an arithmetic instruction with overflow,
10537 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010538 Cond = Cond.getNode()->getOperand(1);
10539 addTest = false;
10540 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010541 }
Evan Cheng0488db92007-09-25 01:57:46 +000010542 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010543 }
10544 CondOpcode = Cond.getOpcode();
10545 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10546 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10547 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10548 Cond.getOperand(0).getValueType() != MVT::i8)) {
10549 SDValue LHS = Cond.getOperand(0);
10550 SDValue RHS = Cond.getOperand(1);
10551 unsigned X86Opcode;
10552 unsigned X86Cond;
10553 SDVTList VTs;
10554 switch (CondOpcode) {
10555 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10556 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10557 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10558 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10559 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10560 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10561 default: llvm_unreachable("unexpected overflowing operator");
10562 }
10563 if (Inverted)
10564 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10565 if (CondOpcode == ISD::UMULO)
10566 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10567 MVT::i32);
10568 else
10569 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10570
10571 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10572
10573 if (CondOpcode == ISD::UMULO)
10574 Cond = X86Op.getValue(2);
10575 else
10576 Cond = X86Op.getValue(1);
10577
10578 CC = DAG.getConstant(X86Cond, MVT::i8);
10579 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010580 } else {
10581 unsigned CondOpc;
10582 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10583 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010584 if (CondOpc == ISD::OR) {
10585 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10586 // two branches instead of an explicit OR instruction with a
10587 // separate test.
10588 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010589 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010590 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010591 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010592 Chain, Dest, CC, Cmp);
10593 CC = Cond.getOperand(1).getOperand(0);
10594 Cond = Cmp;
10595 addTest = false;
10596 }
10597 } else { // ISD::AND
10598 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10599 // two branches instead of an explicit AND instruction with a
10600 // separate test. However, we only do this if this block doesn't
10601 // have a fall-through edge, because this requires an explicit
10602 // jmp when the condition is false.
10603 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010604 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010605 Op.getNode()->hasOneUse()) {
10606 X86::CondCode CCode =
10607 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10608 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010609 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010610 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010611 // Look for an unconditional branch following this conditional branch.
10612 // We need this because we need to reverse the successors in order
10613 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010614 if (User->getOpcode() == ISD::BR) {
10615 SDValue FalseBB = User->getOperand(1);
10616 SDNode *NewBR =
10617 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010618 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010619 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010620 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010621
Dale Johannesene4d209d2009-02-03 20:21:25 +000010622 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010623 Chain, Dest, CC, Cmp);
10624 X86::CondCode CCode =
10625 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10626 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010627 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010628 Cond = Cmp;
10629 addTest = false;
10630 }
10631 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010632 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010633 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10634 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10635 // It should be transformed during dag combiner except when the condition
10636 // is set by a arithmetics with overflow node.
10637 X86::CondCode CCode =
10638 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10639 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010640 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010641 Cond = Cond.getOperand(0).getOperand(1);
10642 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010643 } else if (Cond.getOpcode() == ISD::SETCC &&
10644 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10645 // For FCMP_OEQ, we can emit
10646 // two branches instead of an explicit AND instruction with a
10647 // separate test. However, we only do this if this block doesn't
10648 // have a fall-through edge, because this requires an explicit
10649 // jmp when the condition is false.
10650 if (Op.getNode()->hasOneUse()) {
10651 SDNode *User = *Op.getNode()->use_begin();
10652 // Look for an unconditional branch following this conditional branch.
10653 // We need this because we need to reverse the successors in order
10654 // to implement FCMP_OEQ.
10655 if (User->getOpcode() == ISD::BR) {
10656 SDValue FalseBB = User->getOperand(1);
10657 SDNode *NewBR =
10658 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10659 assert(NewBR == User);
10660 (void)NewBR;
10661 Dest = FalseBB;
10662
10663 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10664 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010665 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010666 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10667 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10668 Chain, Dest, CC, Cmp);
10669 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10670 Cond = Cmp;
10671 addTest = false;
10672 }
10673 }
10674 } else if (Cond.getOpcode() == ISD::SETCC &&
10675 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10676 // For FCMP_UNE, we can emit
10677 // two branches instead of an explicit AND instruction with a
10678 // separate test. However, we only do this if this block doesn't
10679 // have a fall-through edge, because this requires an explicit
10680 // jmp when the condition is false.
10681 if (Op.getNode()->hasOneUse()) {
10682 SDNode *User = *Op.getNode()->use_begin();
10683 // Look for an unconditional branch following this conditional branch.
10684 // We need this because we need to reverse the successors in order
10685 // to implement FCMP_UNE.
10686 if (User->getOpcode() == ISD::BR) {
10687 SDValue FalseBB = User->getOperand(1);
10688 SDNode *NewBR =
10689 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10690 assert(NewBR == User);
10691 (void)NewBR;
10692
10693 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10694 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010695 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010696 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10697 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10698 Chain, Dest, CC, Cmp);
10699 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10700 Cond = Cmp;
10701 addTest = false;
10702 Dest = FalseBB;
10703 }
10704 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010705 }
Evan Cheng0488db92007-09-25 01:57:46 +000010706 }
10707
10708 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010709 // Look pass the truncate if the high bits are known zero.
10710 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10711 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010712
10713 // We know the result of AND is compared against zero. Try to match
10714 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010715 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010716 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10717 if (NewSetCC.getNode()) {
10718 CC = NewSetCC.getOperand(0);
10719 Cond = NewSetCC.getOperand(1);
10720 addTest = false;
10721 }
10722 }
10723 }
10724
10725 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010726 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010727 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010728 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010729 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010730 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010731 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010732}
10733
Anton Korobeynikove060b532007-04-17 19:34:00 +000010734// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10735// Calls to _alloca is needed to probe the stack when allocating more than 4k
10736// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10737// that the guard pages used by the OS virtual memory manager are allocated in
10738// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010739SDValue
10740X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010741 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010742 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010743 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010744 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010745 "are being used");
10746 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010747 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010748
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010749 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010750 SDValue Chain = Op.getOperand(0);
10751 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010752 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10753 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010754
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010755 bool Is64Bit = Subtarget->is64Bit();
10756 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010757
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010758 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010759 MachineFunction &MF = DAG.getMachineFunction();
10760 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010761
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010762 if (Is64Bit) {
10763 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010764 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010765 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010766
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010767 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010768 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010769 if (I->hasNestAttr())
10770 report_fatal_error("Cannot use segmented stacks with functions that "
10771 "have nested arguments.");
10772 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010773
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010774 const TargetRegisterClass *AddrRegClass =
10775 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10776 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10777 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10778 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10779 DAG.getRegister(Vreg, SPTy));
10780 SDValue Ops1[2] = { Value, Chain };
10781 return DAG.getMergeValues(Ops1, 2, dl);
10782 } else {
10783 SDValue Flag;
10784 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010785
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010786 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10787 Flag = Chain.getValue(1);
10788 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010789
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010790 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010791
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010792 const X86RegisterInfo *RegInfo =
10793 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010794 unsigned SPReg = RegInfo->getStackRegister();
10795 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10796 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010797
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010798 if (Align) {
10799 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10800 DAG.getConstant(-(uint64_t)Align, VT));
10801 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10802 }
10803
10804 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010805 return DAG.getMergeValues(Ops1, 2, dl);
10806 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010807}
10808
Dan Gohmand858e902010-04-17 15:26:15 +000010809SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010810 MachineFunction &MF = DAG.getMachineFunction();
10811 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10812
Dan Gohman69de1932008-02-06 22:27:42 +000010813 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010814 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010815
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010816 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010817 // vastart just stores the address of the VarArgsFrameIndex slot into the
10818 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010819 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10820 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010821 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10822 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010823 }
10824
10825 // __va_list_tag:
10826 // gp_offset (0 - 6 * 8)
10827 // fp_offset (48 - 48 + 8 * 16)
10828 // overflow_arg_area (point to parameters coming in memory).
10829 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010830 SmallVector<SDValue, 8> MemOps;
10831 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010832 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010833 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010834 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10835 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010836 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010837 MemOps.push_back(Store);
10838
10839 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010840 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010841 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010842 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010843 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10844 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010845 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010846 MemOps.push_back(Store);
10847
10848 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010849 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010850 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010851 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10852 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010853 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10854 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010855 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010856 MemOps.push_back(Store);
10857
10858 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010859 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010860 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010861 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10862 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010863 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10864 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010865 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010866 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010867 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010868}
10869
Dan Gohmand858e902010-04-17 15:26:15 +000010870SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010871 assert(Subtarget->is64Bit() &&
10872 "LowerVAARG only handles 64-bit va_arg!");
10873 assert((Subtarget->isTargetLinux() ||
10874 Subtarget->isTargetDarwin()) &&
10875 "Unhandled target in LowerVAARG");
10876 assert(Op.getNode()->getNumOperands() == 4);
10877 SDValue Chain = Op.getOperand(0);
10878 SDValue SrcPtr = Op.getOperand(1);
10879 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10880 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010881 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010882
Dan Gohman320afb82010-10-12 18:00:49 +000010883 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010884 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010885 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010886 uint8_t ArgMode;
10887
10888 // Decide which area this value should be read from.
10889 // TODO: Implement the AMD64 ABI in its entirety. This simple
10890 // selection mechanism works only for the basic types.
10891 if (ArgVT == MVT::f80) {
10892 llvm_unreachable("va_arg for f80 not yet implemented");
10893 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10894 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10895 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10896 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10897 } else {
10898 llvm_unreachable("Unhandled argument type in LowerVAARG");
10899 }
10900
10901 if (ArgMode == 2) {
10902 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010903 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010904 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010905 .getFunction()->getAttributes()
10906 .hasAttribute(AttributeSet::FunctionIndex,
10907 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010908 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010909 }
10910
10911 // Insert VAARG_64 node into the DAG
10912 // VAARG_64 returns two values: Variable Argument Address, Chain
10913 SmallVector<SDValue, 11> InstOps;
10914 InstOps.push_back(Chain);
10915 InstOps.push_back(SrcPtr);
10916 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10917 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10918 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10919 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10920 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10921 VTs, &InstOps[0], InstOps.size(),
10922 MVT::i64,
10923 MachinePointerInfo(SV),
10924 /*Align=*/0,
10925 /*Volatile=*/false,
10926 /*ReadMem=*/true,
10927 /*WriteMem=*/true);
10928 Chain = VAARG.getValue(1);
10929
10930 // Load the next argument and return it
10931 return DAG.getLoad(ArgVT, dl,
10932 Chain,
10933 VAARG,
10934 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010935 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010936}
10937
Craig Topper55b24052012-09-11 06:15:32 +000010938static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10939 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010940 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010941 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010942 SDValue Chain = Op.getOperand(0);
10943 SDValue DstPtr = Op.getOperand(1);
10944 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010945 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10946 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010947 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010948
Chris Lattnere72f2022010-09-21 05:40:29 +000010949 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010950 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010951 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010952 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010953}
10954
Lang Hames1d825372013-10-21 17:51:24 +000010955// getTargetVShiftByConstNode - Handle vector element shifts where the shift
10956// amount is a constant. Takes immediate version of shift as input.
10957static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10958 SDValue SrcOp, uint64_t ShiftAmt,
10959 SelectionDAG &DAG) {
10960
10961 // Check for ShiftAmt >= element width
10962 if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10963 if (Opc == X86ISD::VSRAI)
10964 ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10965 else
10966 return DAG.getConstant(0, VT);
10967 }
10968
10969 assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10970 && "Unknown target vector shift-by-constant node");
10971
10972 return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10973}
10974
Craig Topperff3139f2013-02-19 07:43:59 +000010975// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010976// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010977static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010978 SDValue SrcOp, SDValue ShAmt,
10979 SelectionDAG &DAG) {
10980 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10981
Lang Hames1d825372013-10-21 17:51:24 +000010982 // Catch shift-by-constant.
10983 if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
10984 return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
10985 CShAmt->getZExtValue(), DAG);
Craig Topper80e46362012-01-23 06:16:53 +000010986
10987 // Change opcode to non-immediate version
10988 switch (Opc) {
10989 default: llvm_unreachable("Unknown target vector shift node");
10990 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10991 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10992 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10993 }
10994
10995 // Need to build a vector containing shift amount
10996 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10997 SDValue ShOps[4];
10998 ShOps[0] = ShAmt;
10999 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000011000 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000011001 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000011002
11003 // The return type has to be a 128-bit type with the same element
11004 // type as the input type.
11005 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11006 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11007
11008 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000011009 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11010}
11011
Craig Topper55b24052012-09-11 06:15:32 +000011012static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011013 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011014 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000011015 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000011016 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000011017 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000011018 case Intrinsic::x86_sse_comieq_ss:
11019 case Intrinsic::x86_sse_comilt_ss:
11020 case Intrinsic::x86_sse_comile_ss:
11021 case Intrinsic::x86_sse_comigt_ss:
11022 case Intrinsic::x86_sse_comige_ss:
11023 case Intrinsic::x86_sse_comineq_ss:
11024 case Intrinsic::x86_sse_ucomieq_ss:
11025 case Intrinsic::x86_sse_ucomilt_ss:
11026 case Intrinsic::x86_sse_ucomile_ss:
11027 case Intrinsic::x86_sse_ucomigt_ss:
11028 case Intrinsic::x86_sse_ucomige_ss:
11029 case Intrinsic::x86_sse_ucomineq_ss:
11030 case Intrinsic::x86_sse2_comieq_sd:
11031 case Intrinsic::x86_sse2_comilt_sd:
11032 case Intrinsic::x86_sse2_comile_sd:
11033 case Intrinsic::x86_sse2_comigt_sd:
11034 case Intrinsic::x86_sse2_comige_sd:
11035 case Intrinsic::x86_sse2_comineq_sd:
11036 case Intrinsic::x86_sse2_ucomieq_sd:
11037 case Intrinsic::x86_sse2_ucomilt_sd:
11038 case Intrinsic::x86_sse2_ucomile_sd:
11039 case Intrinsic::x86_sse2_ucomigt_sd:
11040 case Intrinsic::x86_sse2_ucomige_sd:
11041 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000011042 unsigned Opc;
11043 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000011044 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000011045 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011046 case Intrinsic::x86_sse_comieq_ss:
11047 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011048 Opc = X86ISD::COMI;
11049 CC = ISD::SETEQ;
11050 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011051 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011052 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011053 Opc = X86ISD::COMI;
11054 CC = ISD::SETLT;
11055 break;
11056 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011057 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011058 Opc = X86ISD::COMI;
11059 CC = ISD::SETLE;
11060 break;
11061 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011062 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011063 Opc = X86ISD::COMI;
11064 CC = ISD::SETGT;
11065 break;
11066 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011067 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011068 Opc = X86ISD::COMI;
11069 CC = ISD::SETGE;
11070 break;
11071 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011072 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011073 Opc = X86ISD::COMI;
11074 CC = ISD::SETNE;
11075 break;
11076 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011077 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011078 Opc = X86ISD::UCOMI;
11079 CC = ISD::SETEQ;
11080 break;
11081 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011082 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011083 Opc = X86ISD::UCOMI;
11084 CC = ISD::SETLT;
11085 break;
11086 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011087 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011088 Opc = X86ISD::UCOMI;
11089 CC = ISD::SETLE;
11090 break;
11091 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011092 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011093 Opc = X86ISD::UCOMI;
11094 CC = ISD::SETGT;
11095 break;
11096 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011097 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011098 Opc = X86ISD::UCOMI;
11099 CC = ISD::SETGE;
11100 break;
11101 case Intrinsic::x86_sse_ucomineq_ss:
11102 case Intrinsic::x86_sse2_ucomineq_sd:
11103 Opc = X86ISD::UCOMI;
11104 CC = ISD::SETNE;
11105 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011106 }
Evan Cheng734503b2006-09-11 02:19:56 +000011107
Dan Gohman475871a2008-07-27 21:46:04 +000011108 SDValue LHS = Op.getOperand(1);
11109 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011110 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011111 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011112 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11113 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11114 DAG.getConstant(X86CC, MVT::i8), Cond);
11115 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011116 }
Craig Topper6d688152012-08-14 07:43:25 +000011117
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011118 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011119 case Intrinsic::x86_sse2_pmulu_dq:
11120 case Intrinsic::x86_avx2_pmulu_dq:
11121 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11122 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011123
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011124 // SSE2/AVX2 sub with unsigned saturation intrinsics
11125 case Intrinsic::x86_sse2_psubus_b:
11126 case Intrinsic::x86_sse2_psubus_w:
11127 case Intrinsic::x86_avx2_psubus_b:
11128 case Intrinsic::x86_avx2_psubus_w:
11129 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11130 Op.getOperand(1), Op.getOperand(2));
11131
Craig Topper6d688152012-08-14 07:43:25 +000011132 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011133 case Intrinsic::x86_sse3_hadd_ps:
11134 case Intrinsic::x86_sse3_hadd_pd:
11135 case Intrinsic::x86_avx_hadd_ps_256:
11136 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011137 case Intrinsic::x86_sse3_hsub_ps:
11138 case Intrinsic::x86_sse3_hsub_pd:
11139 case Intrinsic::x86_avx_hsub_ps_256:
11140 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011141 case Intrinsic::x86_ssse3_phadd_w_128:
11142 case Intrinsic::x86_ssse3_phadd_d_128:
11143 case Intrinsic::x86_avx2_phadd_w:
11144 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011145 case Intrinsic::x86_ssse3_phsub_w_128:
11146 case Intrinsic::x86_ssse3_phsub_d_128:
11147 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011148 case Intrinsic::x86_avx2_phsub_d: {
11149 unsigned Opcode;
11150 switch (IntNo) {
11151 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11152 case Intrinsic::x86_sse3_hadd_ps:
11153 case Intrinsic::x86_sse3_hadd_pd:
11154 case Intrinsic::x86_avx_hadd_ps_256:
11155 case Intrinsic::x86_avx_hadd_pd_256:
11156 Opcode = X86ISD::FHADD;
11157 break;
11158 case Intrinsic::x86_sse3_hsub_ps:
11159 case Intrinsic::x86_sse3_hsub_pd:
11160 case Intrinsic::x86_avx_hsub_ps_256:
11161 case Intrinsic::x86_avx_hsub_pd_256:
11162 Opcode = X86ISD::FHSUB;
11163 break;
11164 case Intrinsic::x86_ssse3_phadd_w_128:
11165 case Intrinsic::x86_ssse3_phadd_d_128:
11166 case Intrinsic::x86_avx2_phadd_w:
11167 case Intrinsic::x86_avx2_phadd_d:
11168 Opcode = X86ISD::HADD;
11169 break;
11170 case Intrinsic::x86_ssse3_phsub_w_128:
11171 case Intrinsic::x86_ssse3_phsub_d_128:
11172 case Intrinsic::x86_avx2_phsub_w:
11173 case Intrinsic::x86_avx2_phsub_d:
11174 Opcode = X86ISD::HSUB;
11175 break;
11176 }
11177 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011178 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011179 }
11180
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011181 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11182 case Intrinsic::x86_sse2_pmaxu_b:
11183 case Intrinsic::x86_sse41_pmaxuw:
11184 case Intrinsic::x86_sse41_pmaxud:
11185 case Intrinsic::x86_avx2_pmaxu_b:
11186 case Intrinsic::x86_avx2_pmaxu_w:
11187 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011188 case Intrinsic::x86_sse2_pminu_b:
11189 case Intrinsic::x86_sse41_pminuw:
11190 case Intrinsic::x86_sse41_pminud:
11191 case Intrinsic::x86_avx2_pminu_b:
11192 case Intrinsic::x86_avx2_pminu_w:
11193 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011194 case Intrinsic::x86_sse41_pmaxsb:
11195 case Intrinsic::x86_sse2_pmaxs_w:
11196 case Intrinsic::x86_sse41_pmaxsd:
11197 case Intrinsic::x86_avx2_pmaxs_b:
11198 case Intrinsic::x86_avx2_pmaxs_w:
11199 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011200 case Intrinsic::x86_sse41_pminsb:
11201 case Intrinsic::x86_sse2_pmins_w:
11202 case Intrinsic::x86_sse41_pminsd:
11203 case Intrinsic::x86_avx2_pmins_b:
11204 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000011205 case Intrinsic::x86_avx2_pmins_d: {
11206 unsigned Opcode;
11207 switch (IntNo) {
11208 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11209 case Intrinsic::x86_sse2_pmaxu_b:
11210 case Intrinsic::x86_sse41_pmaxuw:
11211 case Intrinsic::x86_sse41_pmaxud:
11212 case Intrinsic::x86_avx2_pmaxu_b:
11213 case Intrinsic::x86_avx2_pmaxu_w:
11214 case Intrinsic::x86_avx2_pmaxu_d:
11215 Opcode = X86ISD::UMAX;
11216 break;
11217 case Intrinsic::x86_sse2_pminu_b:
11218 case Intrinsic::x86_sse41_pminuw:
11219 case Intrinsic::x86_sse41_pminud:
11220 case Intrinsic::x86_avx2_pminu_b:
11221 case Intrinsic::x86_avx2_pminu_w:
11222 case Intrinsic::x86_avx2_pminu_d:
11223 Opcode = X86ISD::UMIN;
11224 break;
11225 case Intrinsic::x86_sse41_pmaxsb:
11226 case Intrinsic::x86_sse2_pmaxs_w:
11227 case Intrinsic::x86_sse41_pmaxsd:
11228 case Intrinsic::x86_avx2_pmaxs_b:
11229 case Intrinsic::x86_avx2_pmaxs_w:
11230 case Intrinsic::x86_avx2_pmaxs_d:
11231 Opcode = X86ISD::SMAX;
11232 break;
11233 case Intrinsic::x86_sse41_pminsb:
11234 case Intrinsic::x86_sse2_pmins_w:
11235 case Intrinsic::x86_sse41_pminsd:
11236 case Intrinsic::x86_avx2_pmins_b:
11237 case Intrinsic::x86_avx2_pmins_w:
11238 case Intrinsic::x86_avx2_pmins_d:
11239 Opcode = X86ISD::SMIN;
11240 break;
11241 }
11242 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011243 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011244 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011245
Craig Topper6d183e42012-12-29 16:44:25 +000011246 // SSE/SSE2/AVX floating point max/min intrinsics.
11247 case Intrinsic::x86_sse_max_ps:
11248 case Intrinsic::x86_sse2_max_pd:
11249 case Intrinsic::x86_avx_max_ps_256:
11250 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011251 case Intrinsic::x86_avx512_max_ps_512:
11252 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011253 case Intrinsic::x86_sse_min_ps:
11254 case Intrinsic::x86_sse2_min_pd:
11255 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011256 case Intrinsic::x86_avx_min_pd_256:
11257 case Intrinsic::x86_avx512_min_ps_512:
11258 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011259 unsigned Opcode;
11260 switch (IntNo) {
11261 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11262 case Intrinsic::x86_sse_max_ps:
11263 case Intrinsic::x86_sse2_max_pd:
11264 case Intrinsic::x86_avx_max_ps_256:
11265 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011266 case Intrinsic::x86_avx512_max_ps_512:
11267 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011268 Opcode = X86ISD::FMAX;
11269 break;
11270 case Intrinsic::x86_sse_min_ps:
11271 case Intrinsic::x86_sse2_min_pd:
11272 case Intrinsic::x86_avx_min_ps_256:
11273 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011274 case Intrinsic::x86_avx512_min_ps_512:
11275 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011276 Opcode = X86ISD::FMIN;
11277 break;
11278 }
11279 return DAG.getNode(Opcode, dl, Op.getValueType(),
11280 Op.getOperand(1), Op.getOperand(2));
11281 }
11282
Craig Topper6d688152012-08-14 07:43:25 +000011283 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011284 case Intrinsic::x86_avx2_psllv_d:
11285 case Intrinsic::x86_avx2_psllv_q:
11286 case Intrinsic::x86_avx2_psllv_d_256:
11287 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011288 case Intrinsic::x86_avx2_psrlv_d:
11289 case Intrinsic::x86_avx2_psrlv_q:
11290 case Intrinsic::x86_avx2_psrlv_d_256:
11291 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011292 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011293 case Intrinsic::x86_avx2_psrav_d_256: {
11294 unsigned Opcode;
11295 switch (IntNo) {
11296 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11297 case Intrinsic::x86_avx2_psllv_d:
11298 case Intrinsic::x86_avx2_psllv_q:
11299 case Intrinsic::x86_avx2_psllv_d_256:
11300 case Intrinsic::x86_avx2_psllv_q_256:
11301 Opcode = ISD::SHL;
11302 break;
11303 case Intrinsic::x86_avx2_psrlv_d:
11304 case Intrinsic::x86_avx2_psrlv_q:
11305 case Intrinsic::x86_avx2_psrlv_d_256:
11306 case Intrinsic::x86_avx2_psrlv_q_256:
11307 Opcode = ISD::SRL;
11308 break;
11309 case Intrinsic::x86_avx2_psrav_d:
11310 case Intrinsic::x86_avx2_psrav_d_256:
11311 Opcode = ISD::SRA;
11312 break;
11313 }
11314 return DAG.getNode(Opcode, dl, Op.getValueType(),
11315 Op.getOperand(1), Op.getOperand(2));
11316 }
11317
Craig Topper969ba282012-01-25 06:43:11 +000011318 case Intrinsic::x86_ssse3_pshuf_b_128:
11319 case Intrinsic::x86_avx2_pshuf_b:
11320 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11321 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011322
Craig Topper969ba282012-01-25 06:43:11 +000011323 case Intrinsic::x86_ssse3_psign_b_128:
11324 case Intrinsic::x86_ssse3_psign_w_128:
11325 case Intrinsic::x86_ssse3_psign_d_128:
11326 case Intrinsic::x86_avx2_psign_b:
11327 case Intrinsic::x86_avx2_psign_w:
11328 case Intrinsic::x86_avx2_psign_d:
11329 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11330 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011331
Craig Toppere566cd02012-01-26 07:18:03 +000011332 case Intrinsic::x86_sse41_insertps:
11333 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11334 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011335
Craig Toppere566cd02012-01-26 07:18:03 +000011336 case Intrinsic::x86_avx_vperm2f128_ps_256:
11337 case Intrinsic::x86_avx_vperm2f128_pd_256:
11338 case Intrinsic::x86_avx_vperm2f128_si_256:
11339 case Intrinsic::x86_avx2_vperm2i128:
11340 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11341 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011342
Craig Topperffa6c402012-04-16 07:13:00 +000011343 case Intrinsic::x86_avx2_permd:
11344 case Intrinsic::x86_avx2_permps:
11345 // Operands intentionally swapped. Mask is last operand to intrinsic,
Robert Wilhelmf80a63f2013-09-28 11:46:15 +000011346 // but second operand for node/instruction.
Craig Topperffa6c402012-04-16 07:13:00 +000011347 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11348 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011349
Craig Topper22d8f0d2012-12-29 18:18:20 +000011350 case Intrinsic::x86_sse_sqrt_ps:
11351 case Intrinsic::x86_sse2_sqrt_pd:
11352 case Intrinsic::x86_avx_sqrt_ps_256:
11353 case Intrinsic::x86_avx_sqrt_pd_256:
11354 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11355
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011356 // ptest and testp intrinsics. The intrinsic these come from are designed to
11357 // return an integer value, not just an instruction so lower it to the ptest
11358 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011359 case Intrinsic::x86_sse41_ptestz:
11360 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011361 case Intrinsic::x86_sse41_ptestnzc:
11362 case Intrinsic::x86_avx_ptestz_256:
11363 case Intrinsic::x86_avx_ptestc_256:
11364 case Intrinsic::x86_avx_ptestnzc_256:
11365 case Intrinsic::x86_avx_vtestz_ps:
11366 case Intrinsic::x86_avx_vtestc_ps:
11367 case Intrinsic::x86_avx_vtestnzc_ps:
11368 case Intrinsic::x86_avx_vtestz_pd:
11369 case Intrinsic::x86_avx_vtestc_pd:
11370 case Intrinsic::x86_avx_vtestnzc_pd:
11371 case Intrinsic::x86_avx_vtestz_ps_256:
11372 case Intrinsic::x86_avx_vtestc_ps_256:
11373 case Intrinsic::x86_avx_vtestnzc_ps_256:
11374 case Intrinsic::x86_avx_vtestz_pd_256:
11375 case Intrinsic::x86_avx_vtestc_pd_256:
11376 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11377 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011378 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011379 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011380 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011381 case Intrinsic::x86_avx_vtestz_ps:
11382 case Intrinsic::x86_avx_vtestz_pd:
11383 case Intrinsic::x86_avx_vtestz_ps_256:
11384 case Intrinsic::x86_avx_vtestz_pd_256:
11385 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011386 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011387 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011388 // ZF = 1
11389 X86CC = X86::COND_E;
11390 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011391 case Intrinsic::x86_avx_vtestc_ps:
11392 case Intrinsic::x86_avx_vtestc_pd:
11393 case Intrinsic::x86_avx_vtestc_ps_256:
11394 case Intrinsic::x86_avx_vtestc_pd_256:
11395 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011396 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011397 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011398 // CF = 1
11399 X86CC = X86::COND_B;
11400 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011401 case Intrinsic::x86_avx_vtestnzc_ps:
11402 case Intrinsic::x86_avx_vtestnzc_pd:
11403 case Intrinsic::x86_avx_vtestnzc_ps_256:
11404 case Intrinsic::x86_avx_vtestnzc_pd_256:
11405 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011406 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011407 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011408 // ZF and CF = 0
11409 X86CC = X86::COND_A;
11410 break;
11411 }
Eric Christopherfd179292009-08-27 18:07:15 +000011412
Eric Christopher71c67532009-07-29 00:28:05 +000011413 SDValue LHS = Op.getOperand(1);
11414 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011415 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11416 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011417 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11418 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11419 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011420 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011421 case Intrinsic::x86_avx512_kortestz:
11422 case Intrinsic::x86_avx512_kortestc: {
11423 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11424 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11425 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11426 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11427 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11428 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11429 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11430 }
Evan Cheng5759f972008-05-04 09:15:50 +000011431
Craig Topper80e46362012-01-23 06:16:53 +000011432 // SSE/AVX shift intrinsics
11433 case Intrinsic::x86_sse2_psll_w:
11434 case Intrinsic::x86_sse2_psll_d:
11435 case Intrinsic::x86_sse2_psll_q:
11436 case Intrinsic::x86_avx2_psll_w:
11437 case Intrinsic::x86_avx2_psll_d:
11438 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011439 case Intrinsic::x86_sse2_psrl_w:
11440 case Intrinsic::x86_sse2_psrl_d:
11441 case Intrinsic::x86_sse2_psrl_q:
11442 case Intrinsic::x86_avx2_psrl_w:
11443 case Intrinsic::x86_avx2_psrl_d:
11444 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011445 case Intrinsic::x86_sse2_psra_w:
11446 case Intrinsic::x86_sse2_psra_d:
11447 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011448 case Intrinsic::x86_avx2_psra_d: {
11449 unsigned Opcode;
11450 switch (IntNo) {
11451 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11452 case Intrinsic::x86_sse2_psll_w:
11453 case Intrinsic::x86_sse2_psll_d:
11454 case Intrinsic::x86_sse2_psll_q:
11455 case Intrinsic::x86_avx2_psll_w:
11456 case Intrinsic::x86_avx2_psll_d:
11457 case Intrinsic::x86_avx2_psll_q:
11458 Opcode = X86ISD::VSHL;
11459 break;
11460 case Intrinsic::x86_sse2_psrl_w:
11461 case Intrinsic::x86_sse2_psrl_d:
11462 case Intrinsic::x86_sse2_psrl_q:
11463 case Intrinsic::x86_avx2_psrl_w:
11464 case Intrinsic::x86_avx2_psrl_d:
11465 case Intrinsic::x86_avx2_psrl_q:
11466 Opcode = X86ISD::VSRL;
11467 break;
11468 case Intrinsic::x86_sse2_psra_w:
11469 case Intrinsic::x86_sse2_psra_d:
11470 case Intrinsic::x86_avx2_psra_w:
11471 case Intrinsic::x86_avx2_psra_d:
11472 Opcode = X86ISD::VSRA;
11473 break;
11474 }
11475 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011476 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011477 }
11478
11479 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011480 case Intrinsic::x86_sse2_pslli_w:
11481 case Intrinsic::x86_sse2_pslli_d:
11482 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011483 case Intrinsic::x86_avx2_pslli_w:
11484 case Intrinsic::x86_avx2_pslli_d:
11485 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011486 case Intrinsic::x86_sse2_psrli_w:
11487 case Intrinsic::x86_sse2_psrli_d:
11488 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011489 case Intrinsic::x86_avx2_psrli_w:
11490 case Intrinsic::x86_avx2_psrli_d:
11491 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011492 case Intrinsic::x86_sse2_psrai_w:
11493 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011494 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011495 case Intrinsic::x86_avx2_psrai_d: {
11496 unsigned Opcode;
11497 switch (IntNo) {
11498 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11499 case Intrinsic::x86_sse2_pslli_w:
11500 case Intrinsic::x86_sse2_pslli_d:
11501 case Intrinsic::x86_sse2_pslli_q:
11502 case Intrinsic::x86_avx2_pslli_w:
11503 case Intrinsic::x86_avx2_pslli_d:
11504 case Intrinsic::x86_avx2_pslli_q:
11505 Opcode = X86ISD::VSHLI;
11506 break;
11507 case Intrinsic::x86_sse2_psrli_w:
11508 case Intrinsic::x86_sse2_psrli_d:
11509 case Intrinsic::x86_sse2_psrli_q:
11510 case Intrinsic::x86_avx2_psrli_w:
11511 case Intrinsic::x86_avx2_psrli_d:
11512 case Intrinsic::x86_avx2_psrli_q:
11513 Opcode = X86ISD::VSRLI;
11514 break;
11515 case Intrinsic::x86_sse2_psrai_w:
11516 case Intrinsic::x86_sse2_psrai_d:
11517 case Intrinsic::x86_avx2_psrai_w:
11518 case Intrinsic::x86_avx2_psrai_d:
11519 Opcode = X86ISD::VSRAI;
11520 break;
11521 }
11522 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011523 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011524 }
11525
Craig Topper4feb6472012-08-06 06:22:36 +000011526 case Intrinsic::x86_sse42_pcmpistria128:
11527 case Intrinsic::x86_sse42_pcmpestria128:
11528 case Intrinsic::x86_sse42_pcmpistric128:
11529 case Intrinsic::x86_sse42_pcmpestric128:
11530 case Intrinsic::x86_sse42_pcmpistrio128:
11531 case Intrinsic::x86_sse42_pcmpestrio128:
11532 case Intrinsic::x86_sse42_pcmpistris128:
11533 case Intrinsic::x86_sse42_pcmpestris128:
11534 case Intrinsic::x86_sse42_pcmpistriz128:
11535 case Intrinsic::x86_sse42_pcmpestriz128: {
11536 unsigned Opcode;
11537 unsigned X86CC;
11538 switch (IntNo) {
11539 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11540 case Intrinsic::x86_sse42_pcmpistria128:
11541 Opcode = X86ISD::PCMPISTRI;
11542 X86CC = X86::COND_A;
11543 break;
11544 case Intrinsic::x86_sse42_pcmpestria128:
11545 Opcode = X86ISD::PCMPESTRI;
11546 X86CC = X86::COND_A;
11547 break;
11548 case Intrinsic::x86_sse42_pcmpistric128:
11549 Opcode = X86ISD::PCMPISTRI;
11550 X86CC = X86::COND_B;
11551 break;
11552 case Intrinsic::x86_sse42_pcmpestric128:
11553 Opcode = X86ISD::PCMPESTRI;
11554 X86CC = X86::COND_B;
11555 break;
11556 case Intrinsic::x86_sse42_pcmpistrio128:
11557 Opcode = X86ISD::PCMPISTRI;
11558 X86CC = X86::COND_O;
11559 break;
11560 case Intrinsic::x86_sse42_pcmpestrio128:
11561 Opcode = X86ISD::PCMPESTRI;
11562 X86CC = X86::COND_O;
11563 break;
11564 case Intrinsic::x86_sse42_pcmpistris128:
11565 Opcode = X86ISD::PCMPISTRI;
11566 X86CC = X86::COND_S;
11567 break;
11568 case Intrinsic::x86_sse42_pcmpestris128:
11569 Opcode = X86ISD::PCMPESTRI;
11570 X86CC = X86::COND_S;
11571 break;
11572 case Intrinsic::x86_sse42_pcmpistriz128:
11573 Opcode = X86ISD::PCMPISTRI;
11574 X86CC = X86::COND_E;
11575 break;
11576 case Intrinsic::x86_sse42_pcmpestriz128:
11577 Opcode = X86ISD::PCMPESTRI;
11578 X86CC = X86::COND_E;
11579 break;
11580 }
Craig Topper20b46b02013-08-06 04:12:40 +000011581 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011582 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11583 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11584 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11585 DAG.getConstant(X86CC, MVT::i8),
11586 SDValue(PCMP.getNode(), 1));
11587 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11588 }
Craig Topper6d688152012-08-14 07:43:25 +000011589
Craig Topper4feb6472012-08-06 06:22:36 +000011590 case Intrinsic::x86_sse42_pcmpistri128:
11591 case Intrinsic::x86_sse42_pcmpestri128: {
11592 unsigned Opcode;
11593 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11594 Opcode = X86ISD::PCMPISTRI;
11595 else
11596 Opcode = X86ISD::PCMPESTRI;
11597
Craig Topper20b46b02013-08-06 04:12:40 +000011598 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011599 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11600 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11601 }
Craig Topper0e292372012-08-24 04:03:22 +000011602 case Intrinsic::x86_fma_vfmadd_ps:
11603 case Intrinsic::x86_fma_vfmadd_pd:
11604 case Intrinsic::x86_fma_vfmsub_ps:
11605 case Intrinsic::x86_fma_vfmsub_pd:
11606 case Intrinsic::x86_fma_vfnmadd_ps:
11607 case Intrinsic::x86_fma_vfnmadd_pd:
11608 case Intrinsic::x86_fma_vfnmsub_ps:
11609 case Intrinsic::x86_fma_vfnmsub_pd:
11610 case Intrinsic::x86_fma_vfmaddsub_ps:
11611 case Intrinsic::x86_fma_vfmaddsub_pd:
11612 case Intrinsic::x86_fma_vfmsubadd_ps:
11613 case Intrinsic::x86_fma_vfmsubadd_pd:
11614 case Intrinsic::x86_fma_vfmadd_ps_256:
11615 case Intrinsic::x86_fma_vfmadd_pd_256:
11616 case Intrinsic::x86_fma_vfmsub_ps_256:
11617 case Intrinsic::x86_fma_vfmsub_pd_256:
11618 case Intrinsic::x86_fma_vfnmadd_ps_256:
11619 case Intrinsic::x86_fma_vfnmadd_pd_256:
11620 case Intrinsic::x86_fma_vfnmsub_ps_256:
11621 case Intrinsic::x86_fma_vfnmsub_pd_256:
11622 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11623 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11624 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11625 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011626 unsigned Opc;
11627 switch (IntNo) {
11628 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11629 case Intrinsic::x86_fma_vfmadd_ps:
11630 case Intrinsic::x86_fma_vfmadd_pd:
11631 case Intrinsic::x86_fma_vfmadd_ps_256:
11632 case Intrinsic::x86_fma_vfmadd_pd_256:
11633 Opc = X86ISD::FMADD;
11634 break;
11635 case Intrinsic::x86_fma_vfmsub_ps:
11636 case Intrinsic::x86_fma_vfmsub_pd:
11637 case Intrinsic::x86_fma_vfmsub_ps_256:
11638 case Intrinsic::x86_fma_vfmsub_pd_256:
11639 Opc = X86ISD::FMSUB;
11640 break;
11641 case Intrinsic::x86_fma_vfnmadd_ps:
11642 case Intrinsic::x86_fma_vfnmadd_pd:
11643 case Intrinsic::x86_fma_vfnmadd_ps_256:
11644 case Intrinsic::x86_fma_vfnmadd_pd_256:
11645 Opc = X86ISD::FNMADD;
11646 break;
11647 case Intrinsic::x86_fma_vfnmsub_ps:
11648 case Intrinsic::x86_fma_vfnmsub_pd:
11649 case Intrinsic::x86_fma_vfnmsub_ps_256:
11650 case Intrinsic::x86_fma_vfnmsub_pd_256:
11651 Opc = X86ISD::FNMSUB;
11652 break;
11653 case Intrinsic::x86_fma_vfmaddsub_ps:
11654 case Intrinsic::x86_fma_vfmaddsub_pd:
11655 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11656 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11657 Opc = X86ISD::FMADDSUB;
11658 break;
11659 case Intrinsic::x86_fma_vfmsubadd_ps:
11660 case Intrinsic::x86_fma_vfmsubadd_pd:
11661 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11662 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11663 Opc = X86ISD::FMSUBADD;
11664 break;
11665 }
11666
11667 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11668 Op.getOperand(2), Op.getOperand(3));
11669 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011670 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011671}
Evan Cheng72261582005-12-20 06:22:03 +000011672
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011673static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11674 SDValue Base, SDValue Index,
11675 SDValue ScaleOp, SDValue Chain,
11676 const X86Subtarget * Subtarget) {
11677 SDLoc dl(Op);
11678 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11679 assert(C && "Invalid scale type");
11680 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11681 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11682 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11683 Index.getValueType().getVectorNumElements());
11684 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11685 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11686 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11687 SDValue Segment = DAG.getRegister(0, MVT::i32);
11688 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11689 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11690 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11691 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11692}
11693
11694static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11695 SDValue Src, SDValue Mask, SDValue Base,
11696 SDValue Index, SDValue ScaleOp, SDValue Chain,
11697 const X86Subtarget * Subtarget) {
11698 SDLoc dl(Op);
11699 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11700 assert(C && "Invalid scale type");
11701 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11702 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11703 Index.getValueType().getVectorNumElements());
11704 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11705 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11706 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11707 SDValue Segment = DAG.getRegister(0, MVT::i32);
11708 if (Src.getOpcode() == ISD::UNDEF)
11709 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11710 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11711 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11712 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11713 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11714}
11715
11716static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11717 SDValue Src, SDValue Base, SDValue Index,
11718 SDValue ScaleOp, SDValue Chain) {
11719 SDLoc dl(Op);
11720 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11721 assert(C && "Invalid scale type");
11722 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11723 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11724 SDValue Segment = DAG.getRegister(0, MVT::i32);
11725 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11726 Index.getValueType().getVectorNumElements());
11727 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11728 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11729 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11730 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11731 return SDValue(Res, 1);
11732}
11733
11734static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11735 SDValue Src, SDValue Mask, SDValue Base,
11736 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11737 SDLoc dl(Op);
11738 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11739 assert(C && "Invalid scale type");
11740 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11741 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11742 SDValue Segment = DAG.getRegister(0, MVT::i32);
11743 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11744 Index.getValueType().getVectorNumElements());
11745 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11746 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11747 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11748 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11749 return SDValue(Res, 1);
11750}
11751
11752static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11753 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011754 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011755 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11756 switch (IntNo) {
11757 default: return SDValue(); // Don't custom lower most intrinsics.
11758
Michael Liaoc26392a2013-03-28 23:41:26 +000011759 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011760 case Intrinsic::x86_rdrand_16:
11761 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011762 case Intrinsic::x86_rdrand_64:
11763 case Intrinsic::x86_rdseed_16:
11764 case Intrinsic::x86_rdseed_32:
11765 case Intrinsic::x86_rdseed_64: {
11766 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11767 IntNo == Intrinsic::x86_rdseed_32 ||
11768 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11769 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011770 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011771 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011772 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011773
Michael Liaoc26392a2013-03-28 23:41:26 +000011774 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11775 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011776 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11777 DAG.getConstant(1, Op->getValueType(1)),
11778 DAG.getConstant(X86::COND_B, MVT::i32),
11779 SDValue(Result.getNode(), 1) };
11780 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11781 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011782 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011783
11784 // Return { result, isValid, chain }.
11785 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011786 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011787 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011788 //int_gather(index, base, scale);
11789 case Intrinsic::x86_avx512_gather_qpd_512:
11790 case Intrinsic::x86_avx512_gather_qps_512:
11791 case Intrinsic::x86_avx512_gather_dpd_512:
11792 case Intrinsic::x86_avx512_gather_qpi_512:
11793 case Intrinsic::x86_avx512_gather_qpq_512:
11794 case Intrinsic::x86_avx512_gather_dpq_512:
11795 case Intrinsic::x86_avx512_gather_dps_512:
11796 case Intrinsic::x86_avx512_gather_dpi_512: {
11797 unsigned Opc;
11798 switch (IntNo) {
11799 default: llvm_unreachable("Unexpected intrinsic!");
11800 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11801 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11802 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11803 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11804 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11805 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11806 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11807 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11808 }
11809 SDValue Chain = Op.getOperand(0);
11810 SDValue Index = Op.getOperand(2);
11811 SDValue Base = Op.getOperand(3);
11812 SDValue Scale = Op.getOperand(4);
11813 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11814 }
11815 //int_gather_mask(v1, mask, index, base, scale);
11816 case Intrinsic::x86_avx512_gather_qps_mask_512:
11817 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11818 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11819 case Intrinsic::x86_avx512_gather_dps_mask_512:
11820 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11821 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11822 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11823 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11824 unsigned Opc;
11825 switch (IntNo) {
11826 default: llvm_unreachable("Unexpected intrinsic!");
11827 case Intrinsic::x86_avx512_gather_qps_mask_512:
11828 Opc = X86::VGATHERQPSZrm; break;
11829 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11830 Opc = X86::VGATHERQPDZrm; break;
11831 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11832 Opc = X86::VGATHERDPDZrm; break;
11833 case Intrinsic::x86_avx512_gather_dps_mask_512:
11834 Opc = X86::VGATHERDPSZrm; break;
11835 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11836 Opc = X86::VPGATHERQDZrm; break;
11837 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11838 Opc = X86::VPGATHERQQZrm; break;
11839 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11840 Opc = X86::VPGATHERDDZrm; break;
11841 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11842 Opc = X86::VPGATHERDQZrm; break;
11843 }
11844 SDValue Chain = Op.getOperand(0);
11845 SDValue Src = Op.getOperand(2);
11846 SDValue Mask = Op.getOperand(3);
11847 SDValue Index = Op.getOperand(4);
11848 SDValue Base = Op.getOperand(5);
11849 SDValue Scale = Op.getOperand(6);
11850 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11851 Subtarget);
11852 }
11853 //int_scatter(base, index, v1, scale);
11854 case Intrinsic::x86_avx512_scatter_qpd_512:
11855 case Intrinsic::x86_avx512_scatter_qps_512:
11856 case Intrinsic::x86_avx512_scatter_dpd_512:
11857 case Intrinsic::x86_avx512_scatter_qpi_512:
11858 case Intrinsic::x86_avx512_scatter_qpq_512:
11859 case Intrinsic::x86_avx512_scatter_dpq_512:
11860 case Intrinsic::x86_avx512_scatter_dps_512:
11861 case Intrinsic::x86_avx512_scatter_dpi_512: {
11862 unsigned Opc;
11863 switch (IntNo) {
11864 default: llvm_unreachable("Unexpected intrinsic!");
11865 case Intrinsic::x86_avx512_scatter_qpd_512:
11866 Opc = X86::VSCATTERQPDZmr; break;
11867 case Intrinsic::x86_avx512_scatter_qps_512:
11868 Opc = X86::VSCATTERQPSZmr; break;
11869 case Intrinsic::x86_avx512_scatter_dpd_512:
11870 Opc = X86::VSCATTERDPDZmr; break;
11871 case Intrinsic::x86_avx512_scatter_dps_512:
11872 Opc = X86::VSCATTERDPSZmr; break;
11873 case Intrinsic::x86_avx512_scatter_qpi_512:
11874 Opc = X86::VPSCATTERQDZmr; break;
11875 case Intrinsic::x86_avx512_scatter_qpq_512:
11876 Opc = X86::VPSCATTERQQZmr; break;
11877 case Intrinsic::x86_avx512_scatter_dpq_512:
11878 Opc = X86::VPSCATTERDQZmr; break;
11879 case Intrinsic::x86_avx512_scatter_dpi_512:
11880 Opc = X86::VPSCATTERDDZmr; break;
11881 }
11882 SDValue Chain = Op.getOperand(0);
11883 SDValue Base = Op.getOperand(2);
11884 SDValue Index = Op.getOperand(3);
11885 SDValue Src = Op.getOperand(4);
11886 SDValue Scale = Op.getOperand(5);
11887 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11888 }
11889 //int_scatter_mask(base, mask, index, v1, scale);
11890 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11891 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11892 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11893 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11894 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11895 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11896 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11897 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11898 unsigned Opc;
11899 switch (IntNo) {
11900 default: llvm_unreachable("Unexpected intrinsic!");
11901 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11902 Opc = X86::VSCATTERQPDZmr; break;
11903 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11904 Opc = X86::VSCATTERQPSZmr; break;
11905 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11906 Opc = X86::VSCATTERDPDZmr; break;
11907 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11908 Opc = X86::VSCATTERDPSZmr; break;
11909 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11910 Opc = X86::VPSCATTERQDZmr; break;
11911 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11912 Opc = X86::VPSCATTERQQZmr; break;
11913 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11914 Opc = X86::VPSCATTERDQZmr; break;
11915 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11916 Opc = X86::VPSCATTERDDZmr; break;
11917 }
11918 SDValue Chain = Op.getOperand(0);
11919 SDValue Base = Op.getOperand(2);
11920 SDValue Mask = Op.getOperand(3);
11921 SDValue Index = Op.getOperand(4);
11922 SDValue Src = Op.getOperand(5);
11923 SDValue Scale = Op.getOperand(6);
11924 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11925 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011926 // XTEST intrinsics.
11927 case Intrinsic::x86_xtest: {
11928 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11929 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11930 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11931 DAG.getConstant(X86::COND_NE, MVT::i8),
11932 InTrans);
11933 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11934 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11935 Ret, SDValue(InTrans.getNode(), 1));
11936 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011937 }
11938}
11939
Dan Gohmand858e902010-04-17 15:26:15 +000011940SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11941 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011942 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11943 MFI->setReturnAddressIsTaken(true);
11944
Bill Wendling64e87322009-01-16 19:25:27 +000011945 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011946 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011947 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011948
11949 if (Depth > 0) {
11950 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011951 const X86RegisterInfo *RegInfo =
11952 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11953 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011954 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11955 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011956 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011957 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011958 }
11959
11960 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011961 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011962 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011963 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011964}
11965
Dan Gohmand858e902010-04-17 15:26:15 +000011966SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011967 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11968 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011969
Owen Andersone50ed302009-08-10 22:56:29 +000011970 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011971 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011972 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011973 const X86RegisterInfo *RegInfo =
11974 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011975 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11976 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011977 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11978 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011979 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011980 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000011981 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11982 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011983 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000011984 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000011985}
11986
Dan Gohman475871a2008-07-27 21:46:04 +000011987SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000011988 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011989 const X86RegisterInfo *RegInfo =
11990 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011991 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011992}
11993
Dan Gohmand858e902010-04-17 15:26:15 +000011994SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011995 SDValue Chain = Op.getOperand(0);
11996 SDValue Offset = Op.getOperand(1);
11997 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011998 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011999
Michael Liaodb7da202013-05-02 09:18:38 +000012000 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012001 const X86RegisterInfo *RegInfo =
12002 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000012003 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12004 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12005 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12006 "Invalid Frame Register!");
12007 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12008 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012009
Michael Liaodb7da202013-05-02 09:18:38 +000012010 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000012011 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000012012 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000012013 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12014 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000012015 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012016
Michael Liaodb7da202013-05-02 09:18:38 +000012017 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12018 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012019}
12020
Michael Liao6c0e04c2012-10-15 22:39:43 +000012021SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12022 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012023 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012024 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12025 DAG.getVTList(MVT::i32, MVT::Other),
12026 Op.getOperand(0), Op.getOperand(1));
12027}
12028
12029SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12030 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012031 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012032 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12033 Op.getOperand(0), Op.getOperand(1));
12034}
12035
Craig Topper55b24052012-09-11 06:15:32 +000012036static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000012037 return Op.getOperand(0);
12038}
12039
12040SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12041 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012042 SDValue Root = Op.getOperand(0);
12043 SDValue Trmp = Op.getOperand(1); // trampoline
12044 SDValue FPtr = Op.getOperand(2); // nested function
12045 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012046 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012047
Dan Gohman69de1932008-02-06 22:27:42 +000012048 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012049 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012050
12051 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012052 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012053
12054 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012055 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12056 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012057
Michael Liao7abf67a2012-10-04 19:50:43 +000012058 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12059 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012060
12061 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12062
12063 // Load the pointer to the nested function into R11.
12064 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012065 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012066 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012067 Addr, MachinePointerInfo(TrmpAddr),
12068 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012069
Owen Anderson825b72b2009-08-11 20:47:22 +000012070 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12071 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012072 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12073 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012074 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012075
12076 // Load the 'nest' parameter value into R10.
12077 // R10 is specified in X86CallingConv.td
12078 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012079 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12080 DAG.getConstant(10, MVT::i64));
12081 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012082 Addr, MachinePointerInfo(TrmpAddr, 10),
12083 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012084
Owen Anderson825b72b2009-08-11 20:47:22 +000012085 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12086 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012087 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12088 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012089 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012090
12091 // Jump to the nested function.
12092 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012093 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12094 DAG.getConstant(20, MVT::i64));
12095 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012096 Addr, MachinePointerInfo(TrmpAddr, 20),
12097 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012098
12099 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012100 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12101 DAG.getConstant(22, MVT::i64));
12102 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012103 MachinePointerInfo(TrmpAddr, 22),
12104 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012105
Duncan Sands4a544a72011-09-06 13:37:06 +000012106 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012107 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012108 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012109 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012110 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012111 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012112
12113 switch (CC) {
12114 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012115 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012116 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012117 case CallingConv::X86_StdCall: {
12118 // Pass 'nest' parameter in ECX.
12119 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012120 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012121
12122 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012123 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012124 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012125
Chris Lattner58d74912008-03-12 17:45:29 +000012126 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012127 unsigned InRegCount = 0;
12128 unsigned Idx = 1;
12129
12130 for (FunctionType::param_iterator I = FTy->param_begin(),
12131 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012132 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012133 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012134 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012135
12136 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012137 report_fatal_error("Nest register in use - reduce number of inreg"
12138 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012139 }
12140 }
12141 break;
12142 }
12143 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012144 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012145 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012146 // Pass 'nest' parameter in EAX.
12147 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012148 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012149 break;
12150 }
12151
Dan Gohman475871a2008-07-27 21:46:04 +000012152 SDValue OutChains[4];
12153 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012154
Owen Anderson825b72b2009-08-11 20:47:22 +000012155 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12156 DAG.getConstant(10, MVT::i32));
12157 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012158
Chris Lattnera62fe662010-02-05 19:20:30 +000012159 // This is storing the opcode for MOV32ri.
12160 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012161 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012162 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012163 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012164 Trmp, MachinePointerInfo(TrmpAddr),
12165 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012166
Owen Anderson825b72b2009-08-11 20:47:22 +000012167 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12168 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012169 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12170 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012171 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012172
Chris Lattnera62fe662010-02-05 19:20:30 +000012173 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012174 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12175 DAG.getConstant(5, MVT::i32));
12176 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012177 MachinePointerInfo(TrmpAddr, 5),
12178 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012179
Owen Anderson825b72b2009-08-11 20:47:22 +000012180 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12181 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012182 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12183 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012184 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012185
Duncan Sands4a544a72011-09-06 13:37:06 +000012186 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012187 }
12188}
12189
Dan Gohmand858e902010-04-17 15:26:15 +000012190SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12191 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012192 /*
12193 The rounding mode is in bits 11:10 of FPSR, and has the following
12194 settings:
12195 00 Round to nearest
12196 01 Round to -inf
12197 10 Round to +inf
12198 11 Round to 0
12199
12200 FLT_ROUNDS, on the other hand, expects the following:
12201 -1 Undefined
12202 0 Round to 0
12203 1 Round to nearest
12204 2 Round to +inf
12205 3 Round to -inf
12206
12207 To perform the conversion, we do:
12208 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12209 */
12210
12211 MachineFunction &MF = DAG.getMachineFunction();
12212 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012213 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012214 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012215 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012216 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012217
12218 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012219 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012220 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012221
Chris Lattner2156b792010-09-22 01:11:26 +000012222 MachineMemOperand *MMO =
12223 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12224 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012225
Chris Lattner2156b792010-09-22 01:11:26 +000012226 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12227 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12228 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012229 Ops, array_lengthof(Ops), MVT::i16,
12230 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012231
12232 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012233 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012234 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012235
12236 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012237 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012238 DAG.getNode(ISD::SRL, DL, MVT::i16,
12239 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012240 CWD, DAG.getConstant(0x800, MVT::i16)),
12241 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012242 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012243 DAG.getNode(ISD::SRL, DL, MVT::i16,
12244 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012245 CWD, DAG.getConstant(0x400, MVT::i16)),
12246 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012247
Dan Gohman475871a2008-07-27 21:46:04 +000012248 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012249 DAG.getNode(ISD::AND, DL, MVT::i16,
12250 DAG.getNode(ISD::ADD, DL, MVT::i16,
12251 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012252 DAG.getConstant(1, MVT::i16)),
12253 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012254
Duncan Sands83ec4b62008-06-06 12:08:01 +000012255 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012256 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012257}
12258
Craig Topper55b24052012-09-11 06:15:32 +000012259static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012260 EVT VT = Op.getValueType();
12261 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012262 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012263 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012264
12265 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012266 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012267 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012268 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012269 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012270 }
Evan Cheng18efe262007-12-14 02:13:44 +000012271
Evan Cheng152804e2007-12-14 08:30:15 +000012272 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012273 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012274 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012275
12276 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012277 SDValue Ops[] = {
12278 Op,
12279 DAG.getConstant(NumBits+NumBits-1, OpVT),
12280 DAG.getConstant(X86::COND_E, MVT::i8),
12281 Op.getValue(1)
12282 };
12283 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012284
12285 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012286 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012287
Owen Anderson825b72b2009-08-11 20:47:22 +000012288 if (VT == MVT::i8)
12289 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012290 return Op;
12291}
12292
Craig Topper55b24052012-09-11 06:15:32 +000012293static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012294 EVT VT = Op.getValueType();
12295 EVT OpVT = VT;
12296 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012297 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012298
12299 Op = Op.getOperand(0);
12300 if (VT == MVT::i8) {
12301 // Zero extend to i32 since there is not an i8 bsr.
12302 OpVT = MVT::i32;
12303 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12304 }
12305
12306 // Issue a bsr (scan bits in reverse).
12307 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12308 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12309
12310 // And xor with NumBits-1.
12311 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12312
12313 if (VT == MVT::i8)
12314 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12315 return Op;
12316}
12317
Craig Topper55b24052012-09-11 06:15:32 +000012318static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012319 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012320 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012321 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012322 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012323
12324 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012325 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012326 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012327
12328 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012329 SDValue Ops[] = {
12330 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012331 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012332 DAG.getConstant(X86::COND_E, MVT::i8),
12333 Op.getValue(1)
12334 };
Chandler Carruth77821022011-12-24 12:12:34 +000012335 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012336}
12337
Craig Topper13894fa2011-08-24 06:14:18 +000012338// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12339// ones, and then concatenate the result back.
12340static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012341 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012342
Craig Topper7a9a28b2012-08-12 02:23:29 +000012343 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012344 "Unsupported value type for operation");
12345
Craig Topper66ddd152012-04-27 22:54:43 +000012346 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012347 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012348
12349 // Extract the LHS vectors
12350 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012351 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12352 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012353
12354 // Extract the RHS vectors
12355 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012356 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12357 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012358
12359 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12360 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12361
12362 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12363 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12364 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12365}
12366
Craig Topper55b24052012-09-11 06:15:32 +000012367static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012368 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012369 Op.getValueType().isInteger() &&
12370 "Only handle AVX 256-bit vector integer operation");
12371 return Lower256IntArith(Op, DAG);
12372}
12373
Craig Topper55b24052012-09-11 06:15:32 +000012374static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012375 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012376 Op.getValueType().isInteger() &&
12377 "Only handle AVX 256-bit vector integer operation");
12378 return Lower256IntArith(Op, DAG);
12379}
12380
Craig Topper55b24052012-09-11 06:15:32 +000012381static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12382 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012383 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012384 EVT VT = Op.getValueType();
12385
12386 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012387 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012388 return Lower256IntArith(Op, DAG);
12389
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012390 SDValue A = Op.getOperand(0);
12391 SDValue B = Op.getOperand(1);
12392
12393 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12394 if (VT == MVT::v4i32) {
12395 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12396 "Should not custom lower when pmuldq is available!");
12397
12398 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012399 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012400 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12401 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12402
12403 // Multiply the even parts.
12404 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12405 // Now multiply odd parts.
12406 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12407
12408 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12409 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12410
12411 // Merge the two vectors back together with a shuffle. This expands into 2
12412 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012413 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012414 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12415 }
12416
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012417 assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12418 "Only know how to lower V2I64/V4I64/V8I64 multiply");
Craig Topper5b209e82012-02-05 03:14:49 +000012419
Craig Topper5b209e82012-02-05 03:14:49 +000012420 // Ahi = psrlqi(a, 32);
12421 // Bhi = psrlqi(b, 32);
12422 //
12423 // AloBlo = pmuludq(a, b);
12424 // AloBhi = pmuludq(a, Bhi);
12425 // AhiBlo = pmuludq(Ahi, b);
12426
12427 // AloBhi = psllqi(AloBhi, 32);
12428 // AhiBlo = psllqi(AhiBlo, 32);
12429 // return AloBlo + AloBhi + AhiBlo;
12430
Lang Hames1d825372013-10-21 17:51:24 +000012431 SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12432 SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
Craig Topperaaa643c2011-11-09 07:28:55 +000012433
Craig Topper5b209e82012-02-05 03:14:49 +000012434 // Bit cast to 32-bit vectors for MULUDQ
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012435 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12436 (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
Craig Topper5b209e82012-02-05 03:14:49 +000012437 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12438 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12439 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12440 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012441
Craig Topper5b209e82012-02-05 03:14:49 +000012442 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12443 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12444 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012445
Lang Hames1d825372013-10-21 17:51:24 +000012446 AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12447 AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012448
Dale Johannesene4d209d2009-02-03 20:21:25 +000012449 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012450 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012451}
12452
Craig Topper35e194f2013-08-14 07:53:41 +000012453static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012454 EVT VT = Op.getValueType();
12455 EVT EltTy = VT.getVectorElementType();
12456 unsigned NumElts = VT.getVectorNumElements();
12457 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012458 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012459
12460 // Lower sdiv X, pow2-const.
12461 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12462 if (!C)
12463 return SDValue();
12464
12465 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012466 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012467 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012468 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12469 HasAnyUndefs) ||
12470 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012471 return SDValue();
12472
12473 if ((SplatValue != 0) &&
12474 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
Lang Hames1d825372013-10-21 17:51:24 +000012475 unsigned Lg2 = SplatValue.countTrailingZeros();
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012476 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012477 SmallVector<SDValue, 16> Sz(NumElts,
12478 DAG.getConstant(EltTy.getSizeInBits() - 1,
12479 EltTy));
12480 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12481 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12482 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012483 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012484 SmallVector<SDValue, 16> Amt(NumElts,
Lang Hames1d825372013-10-21 17:51:24 +000012485 DAG.getConstant(EltTy.getSizeInBits() - Lg2,
Michael Liaodc8c0442013-10-15 17:51:02 +000012486 EltTy));
12487 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12488 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12489 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012490 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Lang Hames1d825372013-10-21 17:51:24 +000012491 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
Michael Liaodc8c0442013-10-15 17:51:02 +000012492 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12493 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12494 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012495
12496 // If we're dividing by a positive value, we're done. Otherwise, we must
12497 // negate the result.
12498 if (SplatValue.isNonNegative())
12499 return SRA;
12500
12501 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12502 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12503 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12504 }
12505 return SDValue();
12506}
12507
Michael Liao4b7ab122013-03-20 02:20:36 +000012508static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12509 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012510 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012511 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012512 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012513 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012514
Nadav Rotem43012222011-05-11 08:12:09 +000012515 // Optimize shl/srl/sra with constant shift amount.
12516 if (isSplatVector(Amt.getNode())) {
12517 SDValue SclrAmt = Amt->getOperand(0);
12518 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12519 uint64_t ShiftAmt = C->getZExtValue();
12520
Craig Toppered2e13d2012-01-22 19:15:14 +000012521 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012522 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012523 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12524 (Subtarget->hasAVX512() &&
12525 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012526 if (Op.getOpcode() == ISD::SHL)
Lang Hames1d825372013-10-21 17:51:24 +000012527 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12528 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012529 if (Op.getOpcode() == ISD::SRL)
Lang Hames1d825372013-10-21 17:51:24 +000012530 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12531 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012532 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
Lang Hames1d825372013-10-21 17:51:24 +000012533 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12534 DAG);
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012535 }
12536
Craig Toppered2e13d2012-01-22 19:15:14 +000012537 if (VT == MVT::v16i8) {
12538 if (Op.getOpcode() == ISD::SHL) {
12539 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012540 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12541 MVT::v8i16, R, ShiftAmt,
12542 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012543 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12544 // Zero out the rightmost bits.
12545 SmallVector<SDValue, 16> V(16,
12546 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12547 MVT::i8));
12548 return DAG.getNode(ISD::AND, dl, VT, SHL,
12549 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012550 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012551 if (Op.getOpcode() == ISD::SRL) {
12552 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012553 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12554 MVT::v8i16, R, ShiftAmt,
12555 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012556 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12557 // Zero out the leftmost bits.
12558 SmallVector<SDValue, 16> V(16,
12559 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12560 MVT::i8));
12561 return DAG.getNode(ISD::AND, dl, VT, SRL,
12562 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12563 }
12564 if (Op.getOpcode() == ISD::SRA) {
12565 if (ShiftAmt == 7) {
12566 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012567 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012568 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012569 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012570
Craig Toppered2e13d2012-01-22 19:15:14 +000012571 // R s>> a === ((R u>> a) ^ m) - m
12572 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12573 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12574 MVT::i8));
12575 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12576 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12577 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12578 return Res;
12579 }
Craig Topper731dfd02012-04-23 03:42:40 +000012580 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012581 }
Craig Topper46154eb2011-11-11 07:39:23 +000012582
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012583 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012584 if (Op.getOpcode() == ISD::SHL) {
12585 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012586 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12587 MVT::v16i16, R, ShiftAmt,
12588 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012589 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012590 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012591 SmallVector<SDValue, 32> V(32,
12592 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12593 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012594 return DAG.getNode(ISD::AND, dl, VT, SHL,
12595 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012596 }
Craig Topper0d86d462011-11-20 00:12:05 +000012597 if (Op.getOpcode() == ISD::SRL) {
12598 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012599 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12600 MVT::v16i16, R, ShiftAmt,
12601 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012602 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012603 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012604 SmallVector<SDValue, 32> V(32,
12605 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12606 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012607 return DAG.getNode(ISD::AND, dl, VT, SRL,
12608 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12609 }
12610 if (Op.getOpcode() == ISD::SRA) {
12611 if (ShiftAmt == 7) {
12612 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012613 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012614 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012615 }
12616
12617 // R s>> a === ((R u>> a) ^ m) - m
12618 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12619 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12620 MVT::i8));
12621 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12622 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12623 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12624 return Res;
12625 }
Craig Topper731dfd02012-04-23 03:42:40 +000012626 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012627 }
Nadav Rotem43012222011-05-11 08:12:09 +000012628 }
12629 }
12630
Michael Liao42317cc2013-03-20 02:33:21 +000012631 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12632 if (!Subtarget->is64Bit() &&
12633 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12634 Amt.getOpcode() == ISD::BITCAST &&
12635 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12636 Amt = Amt.getOperand(0);
12637 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12638 VT.getVectorNumElements();
12639 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12640 uint64_t ShiftAmt = 0;
12641 for (unsigned i = 0; i != Ratio; ++i) {
12642 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12643 if (C == 0)
12644 return SDValue();
12645 // 6 == Log2(64)
12646 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12647 }
12648 // Check remaining shift amounts.
12649 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12650 uint64_t ShAmt = 0;
12651 for (unsigned j = 0; j != Ratio; ++j) {
12652 ConstantSDNode *C =
12653 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12654 if (C == 0)
12655 return SDValue();
12656 // 6 == Log2(64)
12657 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12658 }
12659 if (ShAmt != ShiftAmt)
12660 return SDValue();
12661 }
12662 switch (Op.getOpcode()) {
12663 default:
12664 llvm_unreachable("Unknown shift opcode!");
12665 case ISD::SHL:
Lang Hames1d825372013-10-21 17:51:24 +000012666 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12667 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012668 case ISD::SRL:
Lang Hames1d825372013-10-21 17:51:24 +000012669 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12670 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012671 case ISD::SRA:
Lang Hames1d825372013-10-21 17:51:24 +000012672 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12673 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012674 }
12675 }
12676
12677 return SDValue();
12678}
12679
12680static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12681 const X86Subtarget* Subtarget) {
12682 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012683 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012684 SDValue R = Op.getOperand(0);
12685 SDValue Amt = Op.getOperand(1);
12686
12687 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12688 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12689 (Subtarget->hasInt256() &&
12690 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012691 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12692 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012693 SDValue BaseShAmt;
12694 EVT EltVT = VT.getVectorElementType();
12695
12696 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12697 unsigned NumElts = VT.getVectorNumElements();
12698 unsigned i, j;
12699 for (i = 0; i != NumElts; ++i) {
12700 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12701 continue;
12702 break;
12703 }
12704 for (j = i; j != NumElts; ++j) {
12705 SDValue Arg = Amt.getOperand(j);
12706 if (Arg.getOpcode() == ISD::UNDEF) continue;
12707 if (Arg != Amt.getOperand(i))
12708 break;
12709 }
12710 if (i != NumElts && j == NumElts)
12711 BaseShAmt = Amt.getOperand(i);
12712 } else {
12713 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12714 Amt = Amt.getOperand(0);
12715 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12716 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12717 SDValue InVec = Amt.getOperand(0);
12718 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12719 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12720 unsigned i = 0;
12721 for (; i != NumElts; ++i) {
12722 SDValue Arg = InVec.getOperand(i);
12723 if (Arg.getOpcode() == ISD::UNDEF) continue;
12724 BaseShAmt = Arg;
12725 break;
12726 }
12727 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12728 if (ConstantSDNode *C =
12729 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12730 unsigned SplatIdx =
12731 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12732 if (C->getZExtValue() == SplatIdx)
12733 BaseShAmt = InVec.getOperand(1);
12734 }
12735 }
12736 if (BaseShAmt.getNode() == 0)
12737 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12738 DAG.getIntPtrConstant(0));
12739 }
12740 }
12741
12742 if (BaseShAmt.getNode()) {
12743 if (EltVT.bitsGT(MVT::i32))
12744 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12745 else if (EltVT.bitsLT(MVT::i32))
12746 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12747
12748 switch (Op.getOpcode()) {
12749 default:
12750 llvm_unreachable("Unknown shift opcode!");
12751 case ISD::SHL:
12752 switch (VT.getSimpleVT().SimpleTy) {
12753 default: return SDValue();
12754 case MVT::v2i64:
12755 case MVT::v4i32:
12756 case MVT::v8i16:
12757 case MVT::v4i64:
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::VSHLI, dl, VT, R, BaseShAmt, DAG);
12763 }
12764 case ISD::SRA:
12765 switch (VT.getSimpleVT().SimpleTy) {
12766 default: return SDValue();
12767 case MVT::v4i32:
12768 case MVT::v8i16:
12769 case MVT::v8i32:
12770 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012771 case MVT::v16i32:
12772 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012773 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12774 }
12775 case ISD::SRL:
12776 switch (VT.getSimpleVT().SimpleTy) {
12777 default: return SDValue();
12778 case MVT::v2i64:
12779 case MVT::v4i32:
12780 case MVT::v8i16:
12781 case MVT::v4i64:
12782 case MVT::v8i32:
12783 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012784 case MVT::v16i32:
12785 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012786 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12787 }
12788 }
12789 }
12790 }
12791
12792 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12793 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012794 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12795 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012796 Amt.getOpcode() == ISD::BITCAST &&
12797 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12798 Amt = Amt.getOperand(0);
12799 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12800 VT.getVectorNumElements();
12801 std::vector<SDValue> Vals(Ratio);
12802 for (unsigned i = 0; i != Ratio; ++i)
12803 Vals[i] = Amt.getOperand(i);
12804 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12805 for (unsigned j = 0; j != Ratio; ++j)
12806 if (Vals[j] != Amt.getOperand(i + j))
12807 return SDValue();
12808 }
12809 switch (Op.getOpcode()) {
12810 default:
12811 llvm_unreachable("Unknown shift opcode!");
12812 case ISD::SHL:
12813 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12814 case ISD::SRL:
12815 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12816 case ISD::SRA:
12817 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12818 }
12819 }
12820
Michael Liao4b7ab122013-03-20 02:20:36 +000012821 return SDValue();
12822}
12823
Craig Topper35e194f2013-08-14 07:53:41 +000012824static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12825 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012826
12827 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012828 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012829 SDValue R = Op.getOperand(0);
12830 SDValue Amt = Op.getOperand(1);
12831 SDValue V;
12832
12833 if (!Subtarget->hasSSE2())
12834 return SDValue();
12835
12836 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12837 if (V.getNode())
12838 return V;
12839
Michael Liao42317cc2013-03-20 02:33:21 +000012840 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12841 if (V.getNode())
12842 return V;
12843
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012844 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12845 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012846 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12847 if (Subtarget->hasInt256()) {
12848 if (Op.getOpcode() == ISD::SRL &&
12849 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12850 VT == MVT::v4i64 || VT == MVT::v8i32))
12851 return Op;
12852 if (Op.getOpcode() == ISD::SHL &&
12853 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12854 VT == MVT::v4i64 || VT == MVT::v8i32))
12855 return Op;
12856 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12857 return Op;
12858 }
12859
Nadav Rotem43012222011-05-11 08:12:09 +000012860 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012861 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012862 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012863
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012864 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012865 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012866 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12867 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12868 }
Nadav Rotem43012222011-05-11 08:12:09 +000012869 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012870 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012871
Nate Begeman51409212010-07-28 00:21:48 +000012872 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012873 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012874 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012875
Lang Hames8b99c1e2011-12-17 01:08:46 +000012876 // Turn 'a' into a mask suitable for VSELECT
12877 SDValue VSelM = DAG.getConstant(0x80, VT);
12878 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012879 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012880
Lang Hames8b99c1e2011-12-17 01:08:46 +000012881 SDValue CM1 = DAG.getConstant(0x0f, VT);
12882 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012883
Lang Hames8b99c1e2011-12-17 01:08:46 +000012884 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12885 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Lang Hames1d825372013-10-21 17:51:24 +000012886 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, 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 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12896 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Lang Hames1d825372013-10-21 17:51:24 +000012897 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012898 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012899 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12900
Nate Begeman51409212010-07-28 00:21:48 +000012901 // a += a
12902 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012903 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012904 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012905
Lang Hames8b99c1e2011-12-17 01:08:46 +000012906 // return VSELECT(r, r+r, a);
12907 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012908 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012909 return R;
12910 }
Craig Topper46154eb2011-11-11 07:39:23 +000012911
12912 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012913 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012914 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012915 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12916 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12917
12918 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012919 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12920 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012921
12922 // Recreate the shift amount vectors
12923 SDValue Amt1, Amt2;
12924 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12925 // Constant shift amount
12926 SmallVector<SDValue, 4> Amt1Csts;
12927 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012928 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012929 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012930 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012931 Amt2Csts.push_back(Amt->getOperand(i));
12932
12933 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12934 &Amt1Csts[0], NumElems/2);
12935 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12936 &Amt2Csts[0], NumElems/2);
12937 } else {
12938 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012939 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12940 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012941 }
12942
12943 // Issue new vector shifts for the smaller types
12944 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12945 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12946
12947 // Concatenate the result back
12948 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12949 }
12950
Nate Begeman51409212010-07-28 00:21:48 +000012951 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012952}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012953
Craig Topper55b24052012-09-11 06:15:32 +000012954static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012955 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12956 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012957 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12958 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012959 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012960 SDValue LHS = N->getOperand(0);
12961 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012962 unsigned BaseOp = 0;
12963 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012964 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012965 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012966 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012967 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012968 // A subtract of one will be selected as a INC. Note that INC doesn't
12969 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012970 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12971 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012972 BaseOp = X86ISD::INC;
12973 Cond = X86::COND_O;
12974 break;
12975 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012976 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012977 Cond = X86::COND_O;
12978 break;
12979 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012980 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012981 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012982 break;
12983 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012984 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12985 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012986 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12987 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012988 BaseOp = X86ISD::DEC;
12989 Cond = X86::COND_O;
12990 break;
12991 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012992 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012993 Cond = X86::COND_O;
12994 break;
12995 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012996 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012997 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012998 break;
12999 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000013000 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000013001 Cond = X86::COND_O;
13002 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013003 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13004 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13005 MVT::i32);
13006 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013007
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013008 SDValue SetCC =
13009 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13010 DAG.getConstant(X86::COND_O, MVT::i32),
13011 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013012
Dan Gohman6e5fda22011-07-22 18:45:15 +000013013 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013014 }
Bill Wendling74c37652008-12-09 22:08:41 +000013015 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013016
Bill Wendling61edeb52008-12-02 01:06:39 +000013017 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013018 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013019 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013020
Bill Wendling61edeb52008-12-02 01:06:39 +000013021 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013022 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13023 DAG.getConstant(Cond, MVT::i32),
13024 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013025
Dan Gohman6e5fda22011-07-22 18:45:15 +000013026 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013027}
13028
Chad Rosier30450e82011-12-22 22:35:21 +000013029SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13030 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013031 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013032 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13033 EVT VT = Op.getValueType();
13034
Craig Toppered2e13d2012-01-22 19:15:14 +000013035 if (!Subtarget->hasSSE2() || !VT.isVector())
13036 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013037
Craig Toppered2e13d2012-01-22 19:15:14 +000013038 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13039 ExtraVT.getScalarType().getSizeInBits();
Craig Toppered2e13d2012-01-22 19:15:14 +000013040
13041 switch (VT.getSimpleVT().SimpleTy) {
13042 default: return SDValue();
13043 case MVT::v8i32:
13044 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013045 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013046 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013047 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000013048 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000013049 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000013050
Craig Toppered2e13d2012-01-22 19:15:14 +000013051 // Extract the LHS vectors
13052 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000013053 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13054 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000013055
Craig Toppered2e13d2012-01-22 19:15:14 +000013056 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13057 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013058
Craig Toppered2e13d2012-01-22 19:15:14 +000013059 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013060 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013061 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13062 ExtraNumElems/2);
13063 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013064
Craig Toppered2e13d2012-01-22 19:15:14 +000013065 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13066 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013067
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013068 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013069 }
13070 // fall through
13071 case MVT::v4i32:
13072 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013073 // (sext (vzext x)) -> (vsext x)
13074 SDValue Op0 = Op.getOperand(0);
13075 SDValue Op00 = Op0.getOperand(0);
13076 SDValue Tmp1;
13077 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13078 if (Op0.getOpcode() == ISD::BITCAST &&
13079 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
Craig Topper158ec072013-08-14 07:34:43 +000013080 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Nadav Rotemb05130e2013-03-19 18:38:27 +000013081 if (Tmp1.getNode()) {
13082 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13083 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13084 "This optimization is invalid without a VZEXT.");
13085 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13086 }
13087
13088 // If the above didn't work, then just use Shift-Left + Shift-Right.
Lang Hames1d825372013-10-21 17:51:24 +000013089 Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13090 DAG);
13091 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13092 DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013093 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013094 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013095}
13096
Craig Topper55b24052012-09-11 06:15:32 +000013097static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13098 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013099 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013100 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13101 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13102 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13103 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13104
13105 // The only fence that needs an instruction is a sequentially-consistent
13106 // cross-thread fence.
13107 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13108 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13109 // no-sse2). There isn't any reason to disable it if the target processor
13110 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013111 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013112 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13113
13114 SDValue Chain = Op.getOperand(0);
13115 SDValue Zero = DAG.getConstant(0, MVT::i32);
13116 SDValue Ops[] = {
13117 DAG.getRegister(X86::ESP, MVT::i32), // Base
13118 DAG.getTargetConstant(1, MVT::i8), // Scale
13119 DAG.getRegister(0, MVT::i32), // Index
13120 DAG.getTargetConstant(0, MVT::i32), // Disp
13121 DAG.getRegister(0, MVT::i32), // Segment.
13122 Zero,
13123 Chain
13124 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013125 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013126 return SDValue(Res, 0);
13127 }
13128
13129 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13130 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13131}
13132
Craig Topper55b24052012-09-11 06:15:32 +000013133static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13134 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013135 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013136 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013137 unsigned Reg = 0;
13138 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013139 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013140 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013141 case MVT::i8: Reg = X86::AL; size = 1; break;
13142 case MVT::i16: Reg = X86::AX; size = 2; break;
13143 case MVT::i32: Reg = X86::EAX; size = 4; break;
13144 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013145 assert(Subtarget->is64Bit() && "Node not type legal!");
13146 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013147 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013148 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013149 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013150 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013151 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013152 Op.getOperand(1),
13153 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013154 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013155 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013156 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013157 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13158 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013159 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013160 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013161 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013162 return cpOut;
13163}
13164
Craig Topper55b24052012-09-11 06:15:32 +000013165static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13166 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013167 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013168 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013169 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013170 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013171 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013172 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13173 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013174 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013175 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13176 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013177 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013178 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013179 rdx.getValue(1)
13180 };
Michael Liao0ee17002013-04-19 04:03:37 +000013181 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013182}
13183
Craig Topper35e194f2013-08-14 07:53:41 +000013184static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13185 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013186 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13187 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013188 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013189 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013190 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013191 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013192 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013193 // i64 <=> MMX conversions are Legal.
13194 if (SrcVT==MVT::i64 && DstVT.isVector())
13195 return Op;
13196 if (DstVT==MVT::i64 && SrcVT.isVector())
13197 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013198 // MMX <=> MMX conversions are Legal.
13199 if (SrcVT.isVector() && DstVT.isVector())
13200 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013201 // All other conversions need to be expanded.
13202 return SDValue();
13203}
Chris Lattner5b856542010-12-20 00:59:46 +000013204
Craig Topper55b24052012-09-11 06:15:32 +000013205static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013206 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013207 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013208 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013209 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013210 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013211 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013212 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013213 Node->getOperand(0),
13214 Node->getOperand(1), negOp,
13215 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013216 cast<AtomicSDNode>(Node)->getAlignment(),
13217 cast<AtomicSDNode>(Node)->getOrdering(),
13218 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013219}
13220
Eli Friedman327236c2011-08-24 20:50:09 +000013221static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13222 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013223 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013224 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013225
13226 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013227 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13228 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13229 // (The only way to get a 16-byte store is cmpxchg16b)
13230 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13231 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13232 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013233 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13234 cast<AtomicSDNode>(Node)->getMemoryVT(),
13235 Node->getOperand(0),
13236 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013237 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013238 cast<AtomicSDNode>(Node)->getOrdering(),
13239 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013240 return Swap.getValue(1);
13241 }
13242 // Other atomic stores have a simple pattern.
13243 return Op;
13244}
13245
Chris Lattner5b856542010-12-20 00:59:46 +000013246static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13247 EVT VT = Op.getNode()->getValueType(0);
13248
13249 // Let legalize expand this if it isn't a legal type yet.
13250 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13251 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013252
Chris Lattner5b856542010-12-20 00:59:46 +000013253 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013254
Chris Lattner5b856542010-12-20 00:59:46 +000013255 unsigned Opc;
13256 bool ExtraOp = false;
13257 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013258 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013259 case ISD::ADDC: Opc = X86ISD::ADD; break;
13260 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13261 case ISD::SUBC: Opc = X86ISD::SUB; break;
13262 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13263 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013264
Chris Lattner5b856542010-12-20 00:59:46 +000013265 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013266 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013267 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013268 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013269 Op.getOperand(1), Op.getOperand(2));
13270}
13271
Craig Topper35e194f2013-08-14 07:53:41 +000013272static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13273 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013274 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013275
Evan Cheng8688a582013-01-29 02:32:37 +000013276 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013277 // which returns the values as { float, float } (in XMM0) or
13278 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013279 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013280 SDValue Arg = Op.getOperand(0);
13281 EVT ArgVT = Arg.getValueType();
13282 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013283
Craig Topper35e194f2013-08-14 07:53:41 +000013284 TargetLowering::ArgListTy Args;
13285 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013286
Evan Cheng8688a582013-01-29 02:32:37 +000013287 Entry.Node = Arg;
13288 Entry.Ty = ArgTy;
13289 Entry.isSExt = false;
13290 Entry.isZExt = false;
13291 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013292
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013293 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013294 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13295 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13296 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013297 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013298 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13299 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013300
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013301 Type *RetTy = isF64
13302 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13303 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013304 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013305 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13306 false, false, false, false, 0,
13307 CallingConv::C, /*isTaillCall=*/false,
13308 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13309 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013310 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013311
13312 if (isF64)
13313 // Returned in xmm0 and xmm1.
13314 return CallResult.first;
13315
13316 // Returned in bits 0:31 and 32:64 xmm0.
13317 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13318 CallResult.first, DAG.getIntPtrConstant(0));
13319 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13320 CallResult.first, DAG.getIntPtrConstant(1));
13321 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13322 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013323}
13324
Evan Cheng0db9fe62006-04-25 20:13:52 +000013325/// LowerOperation - Provide custom lowering hooks for some operations.
13326///
Dan Gohmand858e902010-04-17 15:26:15 +000013327SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013328 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013329 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013330 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013331 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13332 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013333 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013334 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013335 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013336 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013337 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13338 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13339 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013340 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13341 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013342 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13343 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13344 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013345 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013346 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013347 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013348 case ISD::SHL_PARTS:
13349 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013350 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013351 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013352 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013353 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013354 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13355 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13356 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013357 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013358 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013359 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013360 case ISD::FABS: return LowerFABS(Op, DAG);
13361 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013362 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013363 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013364 case ISD::SETCC: return LowerSETCC(Op, DAG);
13365 case ISD::SELECT: return LowerSELECT(Op, DAG);
13366 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013367 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013368 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013369 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013370 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013371 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013372 case ISD::INTRINSIC_VOID:
13373 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013374 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13375 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013376 case ISD::FRAME_TO_ARGS_OFFSET:
13377 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013378 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013379 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013380 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13381 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013382 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13383 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013384 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013385 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013386 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013387 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013388 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013389 case ISD::SRA:
13390 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013391 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013392 case ISD::SADDO:
13393 case ISD::UADDO:
13394 case ISD::SSUBO:
13395 case ISD::USUBO:
13396 case ISD::SMULO:
13397 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013398 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013399 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013400 case ISD::ADDC:
13401 case ISD::ADDE:
13402 case ISD::SUBC:
13403 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013404 case ISD::ADD: return LowerADD(Op, DAG);
13405 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013406 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013407 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013408 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013409}
13410
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013411static void ReplaceATOMIC_LOAD(SDNode *Node,
13412 SmallVectorImpl<SDValue> &Results,
13413 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013414 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013415 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13416
13417 // Convert wide load -> cmpxchg8b/cmpxchg16b
13418 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13419 // (The only way to get a 16-byte load is cmpxchg16b)
13420 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013421 SDValue Zero = DAG.getConstant(0, VT);
13422 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013423 Node->getOperand(0),
13424 Node->getOperand(1), Zero, Zero,
13425 cast<AtomicSDNode>(Node)->getMemOperand(),
13426 cast<AtomicSDNode>(Node)->getOrdering(),
13427 cast<AtomicSDNode>(Node)->getSynchScope());
13428 Results.push_back(Swap.getValue(0));
13429 Results.push_back(Swap.getValue(1));
13430}
13431
Craig Topperc0878702012-08-17 06:55:11 +000013432static void
Duncan Sands1607f052008-12-01 11:39:25 +000013433ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013434 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013435 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013436 assert (Node->getValueType(0) == MVT::i64 &&
13437 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013438
13439 SDValue Chain = Node->getOperand(0);
13440 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013441 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013442 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013443 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013444 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013445 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013446 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013447 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013448 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013449 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013450 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013451 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013452 Results.push_back(Result.getValue(2));
13453}
13454
Duncan Sands126d9072008-07-04 11:47:58 +000013455/// ReplaceNodeResults - Replace a node with an illegal result type
13456/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013457void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13458 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013459 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013460 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013461 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013462 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013463 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013464 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013465 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013466 case ISD::ADDC:
13467 case ISD::ADDE:
13468 case ISD::SUBC:
13469 case ISD::SUBE:
13470 // We don't want to expand or promote these.
13471 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013472 case ISD::FP_TO_SINT:
13473 case ISD::FP_TO_UINT: {
13474 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13475
13476 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13477 return;
13478
Eli Friedman948e95a2009-05-23 09:59:16 +000013479 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013480 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013481 SDValue FIST = Vals.first, StackSlot = Vals.second;
13482 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013483 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013484 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013485 if (StackSlot.getNode() != 0)
13486 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13487 MachinePointerInfo(),
13488 false, false, false, 0));
13489 else
13490 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013491 }
13492 return;
13493 }
Michael Liao991b6a22012-10-24 04:09:32 +000013494 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013495 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13496 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013497 N->getValueType(0) != MVT::v2f32)
13498 return;
13499 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13500 N->getOperand(0));
13501 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13502 MVT::f64);
13503 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13504 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13505 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13506 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13507 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13508 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13509 return;
13510 }
Michael Liao44c2d612012-10-10 16:53:28 +000013511 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013512 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13513 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013514 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13515 Results.push_back(V);
13516 return;
13517 }
Duncan Sands1607f052008-12-01 11:39:25 +000013518 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013519 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013520 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013521 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013522 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013523 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013524 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013525 eax.getValue(2));
13526 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13527 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013528 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13529 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013530 Results.push_back(edx.getValue(1));
13531 return;
13532 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013533 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013534 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013535 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013536 bool Regs64bit = T == MVT::i128;
13537 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013538 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013539 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13540 DAG.getConstant(0, HalfT));
13541 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13542 DAG.getConstant(1, HalfT));
13543 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13544 Regs64bit ? X86::RAX : X86::EAX,
13545 cpInL, SDValue());
13546 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13547 Regs64bit ? X86::RDX : X86::EDX,
13548 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013549 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013550 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13551 DAG.getConstant(0, HalfT));
13552 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13553 DAG.getConstant(1, HalfT));
13554 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13555 Regs64bit ? X86::RBX : X86::EBX,
13556 swapInL, cpInH.getValue(1));
13557 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013558 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013559 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013560 SDValue Ops[] = { swapInH.getValue(0),
13561 N->getOperand(1),
13562 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013563 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013564 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013565 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13566 X86ISD::LCMPXCHG8_DAG;
13567 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013568 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013569 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13570 Regs64bit ? X86::RAX : X86::EAX,
13571 HalfT, Result.getValue(1));
13572 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13573 Regs64bit ? X86::RDX : X86::EDX,
13574 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013575 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013576 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013577 Results.push_back(cpOutH.getValue(1));
13578 return;
13579 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013580 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013581 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013582 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013583 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013584 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013585 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013586 case ISD::ATOMIC_LOAD_MAX:
13587 case ISD::ATOMIC_LOAD_MIN:
13588 case ISD::ATOMIC_LOAD_UMAX:
13589 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013590 case ISD::ATOMIC_SWAP: {
13591 unsigned Opc;
13592 switch (N->getOpcode()) {
13593 default: llvm_unreachable("Unexpected opcode");
13594 case ISD::ATOMIC_LOAD_ADD:
13595 Opc = X86ISD::ATOMADD64_DAG;
13596 break;
13597 case ISD::ATOMIC_LOAD_AND:
13598 Opc = X86ISD::ATOMAND64_DAG;
13599 break;
13600 case ISD::ATOMIC_LOAD_NAND:
13601 Opc = X86ISD::ATOMNAND64_DAG;
13602 break;
13603 case ISD::ATOMIC_LOAD_OR:
13604 Opc = X86ISD::ATOMOR64_DAG;
13605 break;
13606 case ISD::ATOMIC_LOAD_SUB:
13607 Opc = X86ISD::ATOMSUB64_DAG;
13608 break;
13609 case ISD::ATOMIC_LOAD_XOR:
13610 Opc = X86ISD::ATOMXOR64_DAG;
13611 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013612 case ISD::ATOMIC_LOAD_MAX:
13613 Opc = X86ISD::ATOMMAX64_DAG;
13614 break;
13615 case ISD::ATOMIC_LOAD_MIN:
13616 Opc = X86ISD::ATOMMIN64_DAG;
13617 break;
13618 case ISD::ATOMIC_LOAD_UMAX:
13619 Opc = X86ISD::ATOMUMAX64_DAG;
13620 break;
13621 case ISD::ATOMIC_LOAD_UMIN:
13622 Opc = X86ISD::ATOMUMIN64_DAG;
13623 break;
Craig Topperc0878702012-08-17 06:55:11 +000013624 case ISD::ATOMIC_SWAP:
13625 Opc = X86ISD::ATOMSWAP64_DAG;
13626 break;
13627 }
13628 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013629 return;
Craig Topperc0878702012-08-17 06:55:11 +000013630 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013631 case ISD::ATOMIC_LOAD:
13632 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013633 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013634}
13635
Evan Cheng72261582005-12-20 06:22:03 +000013636const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13637 switch (Opcode) {
13638 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013639 case X86ISD::BSF: return "X86ISD::BSF";
13640 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013641 case X86ISD::SHLD: return "X86ISD::SHLD";
13642 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013643 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013644 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013645 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013646 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013647 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013648 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013649 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013650 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13651 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13652 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013653 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013654 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013655 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013656 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013657 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013658 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013659 case X86ISD::COMI: return "X86ISD::COMI";
13660 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013661 case X86ISD::CMPM: return "X86ISD::CMPM";
13662 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013663 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013664 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013665 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13666 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013667 case X86ISD::CMOV: return "X86ISD::CMOV";
13668 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013669 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013670 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13671 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013672 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013673 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013674 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013675 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013676 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013677 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13678 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013679 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013680 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013681 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013682 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013683 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013684 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013685 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013686 case X86ISD::HADD: return "X86ISD::HADD";
13687 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013688 case X86ISD::FHADD: return "X86ISD::FHADD";
13689 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013690 case X86ISD::UMAX: return "X86ISD::UMAX";
13691 case X86ISD::UMIN: return "X86ISD::UMIN";
13692 case X86ISD::SMAX: return "X86ISD::SMAX";
13693 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013694 case X86ISD::FMAX: return "X86ISD::FMAX";
13695 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013696 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13697 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013698 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13699 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013700 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013701 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013702 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013703 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13704 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013705 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013706 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013707 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013708 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013709 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13710 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013711 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13712 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13713 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13714 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13715 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13716 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013717 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013718 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013719 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013720 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13721 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013722 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13723 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013724 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013725 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013726 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013727 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13728 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013729 case X86ISD::VSHL: return "X86ISD::VSHL";
13730 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013731 case X86ISD::VSRA: return "X86ISD::VSRA";
13732 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13733 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13734 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013735 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013736 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13737 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013738 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13739 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013740 case X86ISD::ADD: return "X86ISD::ADD";
13741 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013742 case X86ISD::ADC: return "X86ISD::ADC";
13743 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013744 case X86ISD::SMUL: return "X86ISD::SMUL";
13745 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013746 case X86ISD::INC: return "X86ISD::INC";
13747 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013748 case X86ISD::OR: return "X86ISD::OR";
13749 case X86ISD::XOR: return "X86ISD::XOR";
13750 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013751 case X86ISD::BLSI: return "X86ISD::BLSI";
13752 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13753 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013754 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013755 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013756 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013757 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013758 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013759 case X86ISD::TESTM: return "X86ISD::TESTM";
13760 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13761 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013762 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013763 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13764 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013765 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013766 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013767 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013768 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013769 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013770 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13771 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013772 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13773 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13774 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013775 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13776 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013777 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13778 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013779 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013780 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013781 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013782 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013783 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013784 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013785 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013786 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013787 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013788 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013789 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013790 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013791 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013792 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013793 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013794 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013795 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013796 case X86ISD::FMADD: return "X86ISD::FMADD";
13797 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13798 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13799 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13800 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13801 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013802 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13803 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013804 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013805 }
13806}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013807
Chris Lattnerc9addb72007-03-30 23:15:24 +000013808// isLegalAddressingMode - Return true if the addressing mode represented
13809// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013810bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013811 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013812 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013813 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013814 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013815
Chris Lattnerc9addb72007-03-30 23:15:24 +000013816 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013817 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013818 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013819
Chris Lattnerc9addb72007-03-30 23:15:24 +000013820 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013821 unsigned GVFlags =
13822 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013823
Chris Lattnerdfed4132009-07-10 07:38:24 +000013824 // If a reference to this global requires an extra load, we can't fold it.
13825 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013826 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013827
Chris Lattnerdfed4132009-07-10 07:38:24 +000013828 // If BaseGV requires a register for the PIC base, we cannot also have a
13829 // BaseReg specified.
13830 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013831 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013832
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013833 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013834 if ((M != CodeModel::Small || R != Reloc::Static) &&
13835 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013836 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013837 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013838
Chris Lattnerc9addb72007-03-30 23:15:24 +000013839 switch (AM.Scale) {
13840 case 0:
13841 case 1:
13842 case 2:
13843 case 4:
13844 case 8:
13845 // These scales always work.
13846 break;
13847 case 3:
13848 case 5:
13849 case 9:
13850 // These scales are formed with basereg+scalereg. Only accept if there is
13851 // no basereg yet.
13852 if (AM.HasBaseReg)
13853 return false;
13854 break;
13855 default: // Other stuff never works.
13856 return false;
13857 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013858
Chris Lattnerc9addb72007-03-30 23:15:24 +000013859 return true;
13860}
13861
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013862bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013863 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013864 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013865 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13866 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013867 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013868}
13869
Tim Northoverd1134482013-08-06 09:12:35 +000013870bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13871 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13872 return false;
13873
13874 if (!isTypeLegal(EVT::getEVT(Ty1)))
13875 return false;
13876
13877 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13878
13879 // Assuming the caller doesn't have a zeroext or signext return parameter,
13880 // truncation all the way down to i1 is valid.
13881 return true;
13882}
13883
Evan Cheng70e10d32012-07-17 06:53:39 +000013884bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013885 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013886}
13887
13888bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013889 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013890 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013891}
13892
Owen Andersone50ed302009-08-10 22:56:29 +000013893bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013894 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013895 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013896 unsigned NumBits1 = VT1.getSizeInBits();
13897 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013898 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013899}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013900
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013901bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013902 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013903 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013904}
13905
Owen Andersone50ed302009-08-10 22:56:29 +000013906bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013907 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013908 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013909}
13910
Evan Cheng2766a472012-12-06 19:13:27 +000013911bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13912 EVT VT1 = Val.getValueType();
13913 if (isZExtFree(VT1, VT2))
13914 return true;
13915
13916 if (Val.getOpcode() != ISD::LOAD)
13917 return false;
13918
13919 if (!VT1.isSimple() || !VT1.isInteger() ||
13920 !VT2.isSimple() || !VT2.isInteger())
13921 return false;
13922
13923 switch (VT1.getSimpleVT().SimpleTy) {
13924 default: break;
13925 case MVT::i8:
13926 case MVT::i16:
13927 case MVT::i32:
13928 // X86 has 8, 16, and 32-bit zero-extending loads.
13929 return true;
13930 }
13931
13932 return false;
13933}
13934
Stephen Line54885a2013-07-09 18:16:56 +000013935bool
13936X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13937 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13938 return false;
13939
13940 VT = VT.getScalarType();
13941
13942 if (!VT.isSimple())
13943 return false;
13944
13945 switch (VT.getSimpleVT().SimpleTy) {
13946 case MVT::f32:
13947 case MVT::f64:
13948 return true;
13949 default:
13950 break;
13951 }
13952
13953 return false;
13954}
13955
Owen Andersone50ed302009-08-10 22:56:29 +000013956bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013957 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013958 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013959}
13960
Evan Cheng60c07e12006-07-05 22:17:51 +000013961/// isShuffleMaskLegal - Targets can use this to indicate that they only
13962/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13963/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13964/// are assumed to be legal.
13965bool
Eric Christopherfd179292009-08-27 18:07:15 +000013966X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013967 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013968 if (!VT.isSimple())
13969 return false;
13970
13971 MVT SVT = VT.getSimpleVT();
13972
Eric Christophercff6f852010-04-15 01:40:20 +000013973 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013974 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013975 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013976
Nate Begemana09008b2009-10-19 02:17:23 +000013977 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013978 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013979 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013980 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013981 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013982 isPSHUFDMask(M, SVT) ||
13983 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13984 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13985 isPALIGNRMask(M, SVT, Subtarget) ||
13986 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13987 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13988 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13989 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013990}
13991
Dan Gohman7d8143f2008-04-09 20:09:42 +000013992bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013993X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013994 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013995 if (!VT.isSimple())
13996 return false;
13997
13998 MVT SVT = VT.getSimpleVT();
13999 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000014000 // FIXME: This collection of masks seems suspect.
14001 if (NumElts == 2)
14002 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000014003 if (NumElts == 4 && SVT.is128BitVector()) {
14004 return (isMOVLMask(Mask, SVT) ||
14005 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000014006 isSHUFPMask(Mask, SVT) ||
14007 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000014008 }
14009 return false;
14010}
14011
14012//===----------------------------------------------------------------------===//
14013// X86 Scheduler Hooks
14014//===----------------------------------------------------------------------===//
14015
Michael Liaobe02a902012-11-08 07:28:54 +000014016/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014017static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14018 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014019 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014020
14021 const BasicBlock *BB = MBB->getBasicBlock();
14022 MachineFunction::iterator I = MBB;
14023 ++I;
14024
14025 // For the v = xbegin(), we generate
14026 //
14027 // thisMBB:
14028 // xbegin sinkMBB
14029 //
14030 // mainMBB:
14031 // eax = -1
14032 //
14033 // sinkMBB:
14034 // v = eax
14035
14036 MachineBasicBlock *thisMBB = MBB;
14037 MachineFunction *MF = MBB->getParent();
14038 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14039 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14040 MF->insert(I, mainMBB);
14041 MF->insert(I, sinkMBB);
14042
14043 // Transfer the remainder of BB and its successor edges to sinkMBB.
14044 sinkMBB->splice(sinkMBB->begin(), MBB,
14045 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14046 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14047
14048 // thisMBB:
14049 // xbegin sinkMBB
14050 // # fallthrough to mainMBB
14051 // # abortion to sinkMBB
14052 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14053 thisMBB->addSuccessor(mainMBB);
14054 thisMBB->addSuccessor(sinkMBB);
14055
14056 // mainMBB:
14057 // EAX = -1
14058 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14059 mainMBB->addSuccessor(sinkMBB);
14060
14061 // sinkMBB:
14062 // EAX is live into the sinkMBB
14063 sinkMBB->addLiveIn(X86::EAX);
14064 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14065 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14066 .addReg(X86::EAX);
14067
14068 MI->eraseFromParent();
14069 return sinkMBB;
14070}
14071
Michael Liaob118a072012-09-20 03:06:15 +000014072// Get CMPXCHG opcode for the specified data type.
14073static unsigned getCmpXChgOpcode(EVT VT) {
14074 switch (VT.getSimpleVT().SimpleTy) {
14075 case MVT::i8: return X86::LCMPXCHG8;
14076 case MVT::i16: return X86::LCMPXCHG16;
14077 case MVT::i32: return X86::LCMPXCHG32;
14078 case MVT::i64: return X86::LCMPXCHG64;
14079 default:
14080 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014081 }
Michael Liaob118a072012-09-20 03:06:15 +000014082 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014083}
14084
Michael Liaob118a072012-09-20 03:06:15 +000014085// Get LOAD opcode for the specified data type.
14086static unsigned getLoadOpcode(EVT VT) {
14087 switch (VT.getSimpleVT().SimpleTy) {
14088 case MVT::i8: return X86::MOV8rm;
14089 case MVT::i16: return X86::MOV16rm;
14090 case MVT::i32: return X86::MOV32rm;
14091 case MVT::i64: return X86::MOV64rm;
14092 default:
14093 break;
14094 }
14095 llvm_unreachable("Invalid operand size!");
14096}
14097
14098// Get opcode of the non-atomic one from the specified atomic instruction.
14099static unsigned getNonAtomicOpcode(unsigned Opc) {
14100 switch (Opc) {
14101 case X86::ATOMAND8: return X86::AND8rr;
14102 case X86::ATOMAND16: return X86::AND16rr;
14103 case X86::ATOMAND32: return X86::AND32rr;
14104 case X86::ATOMAND64: return X86::AND64rr;
14105 case X86::ATOMOR8: return X86::OR8rr;
14106 case X86::ATOMOR16: return X86::OR16rr;
14107 case X86::ATOMOR32: return X86::OR32rr;
14108 case X86::ATOMOR64: return X86::OR64rr;
14109 case X86::ATOMXOR8: return X86::XOR8rr;
14110 case X86::ATOMXOR16: return X86::XOR16rr;
14111 case X86::ATOMXOR32: return X86::XOR32rr;
14112 case X86::ATOMXOR64: return X86::XOR64rr;
14113 }
14114 llvm_unreachable("Unhandled atomic-load-op opcode!");
14115}
14116
14117// Get opcode of the non-atomic one from the specified atomic instruction with
14118// extra opcode.
14119static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14120 unsigned &ExtraOpc) {
14121 switch (Opc) {
14122 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14123 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14124 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14125 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014126 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014127 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14128 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14129 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014130 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014131 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14132 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14133 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014134 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014135 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14136 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14137 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014138 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014139 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14140 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14141 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14142 }
14143 llvm_unreachable("Unhandled atomic-load-op opcode!");
14144}
14145
14146// Get opcode of the non-atomic one from the specified atomic instruction for
14147// 64-bit data type on 32-bit target.
14148static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14149 switch (Opc) {
14150 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14151 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14152 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14153 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14154 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14155 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014156 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14157 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14158 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14159 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014160 }
14161 llvm_unreachable("Unhandled atomic-load-op opcode!");
14162}
14163
14164// Get opcode of the non-atomic one from the specified atomic instruction for
14165// 64-bit data type on 32-bit target with extra opcode.
14166static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14167 unsigned &HiOpc,
14168 unsigned &ExtraOpc) {
14169 switch (Opc) {
14170 case X86::ATOMNAND6432:
14171 ExtraOpc = X86::NOT32r;
14172 HiOpc = X86::AND32rr;
14173 return X86::AND32rr;
14174 }
14175 llvm_unreachable("Unhandled atomic-load-op opcode!");
14176}
14177
14178// Get pseudo CMOV opcode from the specified data type.
14179static unsigned getPseudoCMOVOpc(EVT VT) {
14180 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014181 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014182 case MVT::i16: return X86::CMOV_GR16;
14183 case MVT::i32: return X86::CMOV_GR32;
14184 default:
14185 break;
14186 }
14187 llvm_unreachable("Unknown CMOV opcode!");
14188}
14189
14190// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14191// They will be translated into a spin-loop or compare-exchange loop from
14192//
14193// ...
14194// dst = atomic-fetch-op MI.addr, MI.val
14195// ...
14196//
14197// to
14198//
14199// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014200// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014201// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014202// t4 = phi(t1, t3 / loop)
14203// t2 = OP MI.val, t4
14204// EAX = t4
14205// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14206// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014207// JNE loop
14208// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014209// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014210// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014211MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014212X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14213 MachineBasicBlock *MBB) const {
14214 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14215 DebugLoc DL = MI->getDebugLoc();
14216
14217 MachineFunction *MF = MBB->getParent();
14218 MachineRegisterInfo &MRI = MF->getRegInfo();
14219
14220 const BasicBlock *BB = MBB->getBasicBlock();
14221 MachineFunction::iterator I = MBB;
14222 ++I;
14223
Michael Liao13d08bf2013-01-22 21:47:38 +000014224 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014225 "Unexpected number of operands");
14226
14227 assert(MI->hasOneMemOperand() &&
14228 "Expected atomic-load-op to have one memoperand");
14229
14230 // Memory Reference
14231 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14232 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14233
14234 unsigned DstReg, SrcReg;
14235 unsigned MemOpndSlot;
14236
14237 unsigned CurOp = 0;
14238
14239 DstReg = MI->getOperand(CurOp++).getReg();
14240 MemOpndSlot = CurOp;
14241 CurOp += X86::AddrNumOperands;
14242 SrcReg = MI->getOperand(CurOp++).getReg();
14243
14244 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014245 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014246 unsigned t1 = MRI.createVirtualRegister(RC);
14247 unsigned t2 = MRI.createVirtualRegister(RC);
14248 unsigned t3 = MRI.createVirtualRegister(RC);
14249 unsigned t4 = MRI.createVirtualRegister(RC);
14250 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014251
14252 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14253 unsigned LOADOpc = getLoadOpcode(VT);
14254
14255 // For the atomic load-arith operator, we generate
14256 //
14257 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014258 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014259 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014260 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014261 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014262 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014263 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014264 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014265 // JNE mainMBB
14266 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014267 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014268
14269 MachineBasicBlock *thisMBB = MBB;
14270 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14271 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14272 MF->insert(I, mainMBB);
14273 MF->insert(I, sinkMBB);
14274
14275 MachineInstrBuilder MIB;
14276
14277 // Transfer the remainder of BB and its successor edges to sinkMBB.
14278 sinkMBB->splice(sinkMBB->begin(), MBB,
14279 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14280 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14281
14282 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014283 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14284 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14285 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14286 if (NewMO.isReg())
14287 NewMO.setIsKill(false);
14288 MIB.addOperand(NewMO);
14289 }
14290 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14291 unsigned flags = (*MMOI)->getFlags();
14292 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14293 MachineMemOperand *MMO =
14294 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14295 (*MMOI)->getSize(),
14296 (*MMOI)->getBaseAlignment(),
14297 (*MMOI)->getTBAAInfo(),
14298 (*MMOI)->getRanges());
14299 MIB.addMemOperand(MMO);
14300 }
Michael Liaob118a072012-09-20 03:06:15 +000014301
14302 thisMBB->addSuccessor(mainMBB);
14303
14304 // mainMBB:
14305 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014306
Michael Liaoc537f792013-03-06 00:17:04 +000014307 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014308 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14309 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014310
Michael Liaob118a072012-09-20 03:06:15 +000014311 unsigned Opc = MI->getOpcode();
14312 switch (Opc) {
14313 default:
14314 llvm_unreachable("Unhandled atomic-load-op opcode!");
14315 case X86::ATOMAND8:
14316 case X86::ATOMAND16:
14317 case X86::ATOMAND32:
14318 case X86::ATOMAND64:
14319 case X86::ATOMOR8:
14320 case X86::ATOMOR16:
14321 case X86::ATOMOR32:
14322 case X86::ATOMOR64:
14323 case X86::ATOMXOR8:
14324 case X86::ATOMXOR16:
14325 case X86::ATOMXOR32:
14326 case X86::ATOMXOR64: {
14327 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014328 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14329 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014330 break;
14331 }
14332 case X86::ATOMNAND8:
14333 case X86::ATOMNAND16:
14334 case X86::ATOMNAND32:
14335 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014336 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014337 unsigned NOTOpc;
14338 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014339 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14340 .addReg(t4);
14341 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014342 break;
14343 }
Michael Liao08382492012-09-21 03:00:17 +000014344 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014345 case X86::ATOMMAX16:
14346 case X86::ATOMMAX32:
14347 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014348 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014349 case X86::ATOMMIN16:
14350 case X86::ATOMMIN32:
14351 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014352 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014353 case X86::ATOMUMAX16:
14354 case X86::ATOMUMAX32:
14355 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014356 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014357 case X86::ATOMUMIN16:
14358 case X86::ATOMUMIN32:
14359 case X86::ATOMUMIN64: {
14360 unsigned CMPOpc;
14361 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14362
14363 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14364 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014365 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014366
14367 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014368 if (VT != MVT::i8) {
14369 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014370 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014371 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014372 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014373 } else {
14374 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014375 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14376 const TargetRegisterClass *RC32 =
14377 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014378 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14379 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014380 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014381
14382 unsigned Undef = MRI.createVirtualRegister(RC32);
14383 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14384
14385 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14386 .addReg(Undef)
14387 .addReg(SrcReg)
14388 .addImm(X86::sub_8bit);
14389 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14390 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014391 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014392 .addImm(X86::sub_8bit);
14393
Michael Liaoc537f792013-03-06 00:17:04 +000014394 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014395 .addReg(SrcReg32)
14396 .addReg(AccReg32);
14397
Michael Liaoc537f792013-03-06 00:17:04 +000014398 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14399 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014400 }
Michael Liaob118a072012-09-20 03:06:15 +000014401 } else {
14402 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014403 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014404 "Invalid atomic-load-op transformation!");
14405 unsigned SelOpc = getPseudoCMOVOpc(VT);
14406 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14407 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014408 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14409 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014410 .addImm(CC);
14411 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014412 // Replace the original PHI node as mainMBB is changed after CMOV
14413 // lowering.
14414 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14415 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14416 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014417 }
14418 break;
14419 }
14420 }
14421
Michael Liaoc537f792013-03-06 00:17:04 +000014422 // Copy PhyReg back from virtual register.
14423 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14424 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014425
14426 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014427 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14428 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14429 if (NewMO.isReg())
14430 NewMO.setIsKill(false);
14431 MIB.addOperand(NewMO);
14432 }
14433 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014434 MIB.setMemRefs(MMOBegin, MMOEnd);
14435
Michael Liaoc537f792013-03-06 00:17:04 +000014436 // Copy PhyReg back to virtual register.
14437 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14438 .addReg(PhyReg);
14439
Michael Liaob118a072012-09-20 03:06:15 +000014440 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14441
14442 mainMBB->addSuccessor(origMainMBB);
14443 mainMBB->addSuccessor(sinkMBB);
14444
14445 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014446 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14447 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014448 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014449
14450 MI->eraseFromParent();
14451 return sinkMBB;
14452}
14453
14454// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14455// instructions. They will be translated into a spin-loop or compare-exchange
14456// loop from
14457//
14458// ...
14459// dst = atomic-fetch-op MI.addr, MI.val
14460// ...
14461//
14462// to
14463//
14464// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014465// t1L = LOAD [MI.addr + 0]
14466// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014467// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014468// t4L = phi(t1L, t3L / loop)
14469// t4H = phi(t1H, t3H / loop)
14470// t2L = OP MI.val.lo, t4L
14471// t2H = OP MI.val.hi, t4H
14472// EAX = t4L
14473// EDX = t4H
14474// EBX = t2L
14475// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014476// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014477// t3L = EAX
14478// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014479// JNE loop
14480// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014481// dstL = t3L
14482// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014483// ...
14484MachineBasicBlock *
14485X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14486 MachineBasicBlock *MBB) const {
14487 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14488 DebugLoc DL = MI->getDebugLoc();
14489
14490 MachineFunction *MF = MBB->getParent();
14491 MachineRegisterInfo &MRI = MF->getRegInfo();
14492
14493 const BasicBlock *BB = MBB->getBasicBlock();
14494 MachineFunction::iterator I = MBB;
14495 ++I;
14496
Michael Liao13d08bf2013-01-22 21:47:38 +000014497 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014498 "Unexpected number of operands");
14499
14500 assert(MI->hasOneMemOperand() &&
14501 "Expected atomic-load-op32 to have one memoperand");
14502
14503 // Memory Reference
14504 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14505 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14506
14507 unsigned DstLoReg, DstHiReg;
14508 unsigned SrcLoReg, SrcHiReg;
14509 unsigned MemOpndSlot;
14510
14511 unsigned CurOp = 0;
14512
14513 DstLoReg = MI->getOperand(CurOp++).getReg();
14514 DstHiReg = MI->getOperand(CurOp++).getReg();
14515 MemOpndSlot = CurOp;
14516 CurOp += X86::AddrNumOperands;
14517 SrcLoReg = MI->getOperand(CurOp++).getReg();
14518 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014519
Craig Topperc9099502012-04-20 06:31:50 +000014520 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014521 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014522
Michael Liaoc537f792013-03-06 00:17:04 +000014523 unsigned t1L = MRI.createVirtualRegister(RC);
14524 unsigned t1H = MRI.createVirtualRegister(RC);
14525 unsigned t2L = MRI.createVirtualRegister(RC);
14526 unsigned t2H = MRI.createVirtualRegister(RC);
14527 unsigned t3L = MRI.createVirtualRegister(RC);
14528 unsigned t3H = MRI.createVirtualRegister(RC);
14529 unsigned t4L = MRI.createVirtualRegister(RC);
14530 unsigned t4H = MRI.createVirtualRegister(RC);
14531
Michael Liaob118a072012-09-20 03:06:15 +000014532 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14533 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014534
Michael Liaob118a072012-09-20 03:06:15 +000014535 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014536 //
Michael Liaob118a072012-09-20 03:06:15 +000014537 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014538 // t1L = LOAD [MI.addr + 0]
14539 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014540 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014541 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14542 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14543 // t2L = OP MI.val.lo, t4L
14544 // t2H = OP MI.val.hi, t4H
14545 // EBX = t2L
14546 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014547 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014548 // t3L = EAX
14549 // t3H = EDX
14550 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014551 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014552 // dstL = t3L
14553 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014554
Mon P Wang63307c32008-05-05 19:05:59 +000014555 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014556 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14557 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14558 MF->insert(I, mainMBB);
14559 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014560
Michael Liaob118a072012-09-20 03:06:15 +000014561 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014562
Michael Liaob118a072012-09-20 03:06:15 +000014563 // Transfer the remainder of BB and its successor edges to sinkMBB.
14564 sinkMBB->splice(sinkMBB->begin(), MBB,
14565 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14566 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014567
Michael Liaob118a072012-09-20 03:06:15 +000014568 // thisMBB:
14569 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014570 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014571 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014572 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14573 if (NewMO.isReg())
14574 NewMO.setIsKill(false);
14575 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014576 }
Michael Liaoc537f792013-03-06 00:17:04 +000014577 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14578 unsigned flags = (*MMOI)->getFlags();
14579 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14580 MachineMemOperand *MMO =
14581 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14582 (*MMOI)->getSize(),
14583 (*MMOI)->getBaseAlignment(),
14584 (*MMOI)->getTBAAInfo(),
14585 (*MMOI)->getRanges());
14586 MIB.addMemOperand(MMO);
14587 };
14588 MachineInstr *LowMI = MIB;
14589
14590 // Hi
14591 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14592 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14593 if (i == X86::AddrDisp) {
14594 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14595 } else {
14596 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14597 if (NewMO.isReg())
14598 NewMO.setIsKill(false);
14599 MIB.addOperand(NewMO);
14600 }
14601 }
14602 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014603
Michael Liaob118a072012-09-20 03:06:15 +000014604 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014605
Michael Liaob118a072012-09-20 03:06:15 +000014606 // mainMBB:
14607 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014608
Michael Liaoc537f792013-03-06 00:17:04 +000014609 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014610 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14611 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14612 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14613 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014614
Michael Liaob118a072012-09-20 03:06:15 +000014615 unsigned Opc = MI->getOpcode();
14616 switch (Opc) {
14617 default:
14618 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14619 case X86::ATOMAND6432:
14620 case X86::ATOMOR6432:
14621 case X86::ATOMXOR6432:
14622 case X86::ATOMADD6432:
14623 case X86::ATOMSUB6432: {
14624 unsigned HiOpc;
14625 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014626 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14627 .addReg(SrcLoReg);
14628 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14629 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014630 break;
14631 }
14632 case X86::ATOMNAND6432: {
14633 unsigned HiOpc, NOTOpc;
14634 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014635 unsigned TmpL = MRI.createVirtualRegister(RC);
14636 unsigned TmpH = MRI.createVirtualRegister(RC);
14637 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14638 .addReg(t4L);
14639 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14640 .addReg(t4H);
14641 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14642 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014643 break;
14644 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014645 case X86::ATOMMAX6432:
14646 case X86::ATOMMIN6432:
14647 case X86::ATOMUMAX6432:
14648 case X86::ATOMUMIN6432: {
14649 unsigned HiOpc;
14650 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14651 unsigned cL = MRI.createVirtualRegister(RC8);
14652 unsigned cH = MRI.createVirtualRegister(RC8);
14653 unsigned cL32 = MRI.createVirtualRegister(RC);
14654 unsigned cH32 = MRI.createVirtualRegister(RC);
14655 unsigned cc = MRI.createVirtualRegister(RC);
14656 // cl := cmp src_lo, lo
14657 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014658 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014659 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14660 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14661 // ch := cmp src_hi, hi
14662 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014663 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014664 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14665 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14666 // cc := if (src_hi == hi) ? cl : ch;
14667 if (Subtarget->hasCMov()) {
14668 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14669 .addReg(cH32).addReg(cL32);
14670 } else {
14671 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14672 .addReg(cH32).addReg(cL32)
14673 .addImm(X86::COND_E);
14674 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14675 }
14676 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14677 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014678 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14679 .addReg(SrcLoReg).addReg(t4L);
14680 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14681 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014682 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014683 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14684 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014685 .addImm(X86::COND_NE);
14686 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014687 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14688 // 2nd CMOV lowering.
14689 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014690 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14691 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014692 .addImm(X86::COND_NE);
14693 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014694 // Replace the original PHI node as mainMBB is changed after CMOV
14695 // lowering.
14696 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14697 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14698 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14699 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14700 PhiL->eraseFromParent();
14701 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014702 }
14703 break;
14704 }
Michael Liaob118a072012-09-20 03:06:15 +000014705 case X86::ATOMSWAP6432: {
14706 unsigned HiOpc;
14707 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014708 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14709 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014710 break;
14711 }
14712 }
Mon P Wang63307c32008-05-05 19:05:59 +000014713
Michael Liaob118a072012-09-20 03:06:15 +000014714 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014715 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14716 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014717 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014718 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14719 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014720
Michael Liaob118a072012-09-20 03:06:15 +000014721 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014722 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14723 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14724 if (NewMO.isReg())
14725 NewMO.setIsKill(false);
14726 MIB.addOperand(NewMO);
14727 }
Michael Liaob118a072012-09-20 03:06:15 +000014728 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014729
Michael Liaoc537f792013-03-06 00:17:04 +000014730 // Copy EDX:EAX back to t3H:t3L
14731 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14732 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14733
Michael Liaob118a072012-09-20 03:06:15 +000014734 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014735
Michael Liaob118a072012-09-20 03:06:15 +000014736 mainMBB->addSuccessor(origMainMBB);
14737 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014738
Michael Liaob118a072012-09-20 03:06:15 +000014739 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014740 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14741 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014742 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014743 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14744 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014745 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014746
Michael Liaob118a072012-09-20 03:06:15 +000014747 MI->eraseFromParent();
14748 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014749}
14750
Eric Christopherf83a5de2009-08-27 18:08:16 +000014751// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014752// or XMM0_V32I8 in AVX all of this code can be replaced with that
14753// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014754static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14755 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014756 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014757 switch (MI->getOpcode()) {
14758 default: llvm_unreachable("illegal opcode!");
14759 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14760 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14761 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14762 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14763 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14764 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14765 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14766 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014767 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014768
Craig Topper8aae8dd2012-11-10 08:57:41 +000014769 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014770 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014771
Craig Topper52ea2452012-11-10 09:25:36 +000014772 unsigned NumArgs = MI->getNumOperands();
14773 for (unsigned i = 1; i < NumArgs; ++i) {
14774 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014775 if (!(Op.isReg() && Op.isImplicit()))
14776 MIB.addOperand(Op);
14777 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014778 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014779 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14780
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014781 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014782 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014783 .addReg(X86::XMM0);
14784
Dan Gohman14152b42010-07-06 20:24:04 +000014785 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014786 return BB;
14787}
14788
Craig Topper9c7ae012012-11-10 01:23:36 +000014789// FIXME: Custom handling because TableGen doesn't support multiple implicit
14790// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014791static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14792 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014793 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014794 switch (MI->getOpcode()) {
14795 default: llvm_unreachable("illegal opcode!");
14796 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14797 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14798 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14799 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14800 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14801 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14802 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14803 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014804 }
14805
Craig Topper8aae8dd2012-11-10 08:57:41 +000014806 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014807 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014808
Craig Topper52ea2452012-11-10 09:25:36 +000014809 unsigned NumArgs = MI->getNumOperands(); // remove the results
14810 for (unsigned i = 1; i < NumArgs; ++i) {
14811 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014812 if (!(Op.isReg() && Op.isImplicit()))
14813 MIB.addOperand(Op);
14814 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014815 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014816 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14817
14818 BuildMI(*BB, MI, dl,
14819 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14820 .addReg(X86::ECX);
14821
14822 MI->eraseFromParent();
14823 return BB;
14824}
14825
Craig Topper2da36912012-11-11 22:45:02 +000014826static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14827 const TargetInstrInfo *TII,
14828 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014829 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014830
Eric Christopher228232b2010-11-30 07:20:12 +000014831 // Address into RAX/EAX, other two args into ECX, EDX.
14832 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14833 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14834 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14835 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014836 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014837
Eric Christopher228232b2010-11-30 07:20:12 +000014838 unsigned ValOps = X86::AddrNumOperands;
14839 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14840 .addReg(MI->getOperand(ValOps).getReg());
14841 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14842 .addReg(MI->getOperand(ValOps+1).getReg());
14843
14844 // The instruction doesn't actually take any operands though.
14845 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014846
Eric Christopher228232b2010-11-30 07:20:12 +000014847 MI->eraseFromParent(); // The pseudo is gone now.
14848 return BB;
14849}
14850
14851MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014852X86TargetLowering::EmitVAARG64WithCustomInserter(
14853 MachineInstr *MI,
14854 MachineBasicBlock *MBB) const {
14855 // Emit va_arg instruction on X86-64.
14856
14857 // Operands to this pseudo-instruction:
14858 // 0 ) Output : destination address (reg)
14859 // 1-5) Input : va_list address (addr, i64mem)
14860 // 6 ) ArgSize : Size (in bytes) of vararg type
14861 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14862 // 8 ) Align : Alignment of type
14863 // 9 ) EFLAGS (implicit-def)
14864
14865 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14866 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14867
14868 unsigned DestReg = MI->getOperand(0).getReg();
14869 MachineOperand &Base = MI->getOperand(1);
14870 MachineOperand &Scale = MI->getOperand(2);
14871 MachineOperand &Index = MI->getOperand(3);
14872 MachineOperand &Disp = MI->getOperand(4);
14873 MachineOperand &Segment = MI->getOperand(5);
14874 unsigned ArgSize = MI->getOperand(6).getImm();
14875 unsigned ArgMode = MI->getOperand(7).getImm();
14876 unsigned Align = MI->getOperand(8).getImm();
14877
14878 // Memory Reference
14879 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14880 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14881 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14882
14883 // Machine Information
14884 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14885 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14886 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14887 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14888 DebugLoc DL = MI->getDebugLoc();
14889
14890 // struct va_list {
14891 // i32 gp_offset
14892 // i32 fp_offset
14893 // i64 overflow_area (address)
14894 // i64 reg_save_area (address)
14895 // }
14896 // sizeof(va_list) = 24
14897 // alignment(va_list) = 8
14898
14899 unsigned TotalNumIntRegs = 6;
14900 unsigned TotalNumXMMRegs = 8;
14901 bool UseGPOffset = (ArgMode == 1);
14902 bool UseFPOffset = (ArgMode == 2);
14903 unsigned MaxOffset = TotalNumIntRegs * 8 +
14904 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14905
14906 /* Align ArgSize to a multiple of 8 */
14907 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14908 bool NeedsAlign = (Align > 8);
14909
14910 MachineBasicBlock *thisMBB = MBB;
14911 MachineBasicBlock *overflowMBB;
14912 MachineBasicBlock *offsetMBB;
14913 MachineBasicBlock *endMBB;
14914
14915 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14916 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14917 unsigned OffsetReg = 0;
14918
14919 if (!UseGPOffset && !UseFPOffset) {
14920 // If we only pull from the overflow region, we don't create a branch.
14921 // We don't need to alter control flow.
14922 OffsetDestReg = 0; // unused
14923 OverflowDestReg = DestReg;
14924
14925 offsetMBB = NULL;
14926 overflowMBB = thisMBB;
14927 endMBB = thisMBB;
14928 } else {
14929 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14930 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14931 // If not, pull from overflow_area. (branch to overflowMBB)
14932 //
14933 // thisMBB
14934 // | .
14935 // | .
14936 // offsetMBB overflowMBB
14937 // | .
14938 // | .
14939 // endMBB
14940
14941 // Registers for the PHI in endMBB
14942 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14943 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14944
14945 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14946 MachineFunction *MF = MBB->getParent();
14947 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14948 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14949 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14950
14951 MachineFunction::iterator MBBIter = MBB;
14952 ++MBBIter;
14953
14954 // Insert the new basic blocks
14955 MF->insert(MBBIter, offsetMBB);
14956 MF->insert(MBBIter, overflowMBB);
14957 MF->insert(MBBIter, endMBB);
14958
14959 // Transfer the remainder of MBB and its successor edges to endMBB.
14960 endMBB->splice(endMBB->begin(), thisMBB,
14961 llvm::next(MachineBasicBlock::iterator(MI)),
14962 thisMBB->end());
14963 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14964
14965 // Make offsetMBB and overflowMBB successors of thisMBB
14966 thisMBB->addSuccessor(offsetMBB);
14967 thisMBB->addSuccessor(overflowMBB);
14968
14969 // endMBB is a successor of both offsetMBB and overflowMBB
14970 offsetMBB->addSuccessor(endMBB);
14971 overflowMBB->addSuccessor(endMBB);
14972
14973 // Load the offset value into a register
14974 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14975 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14976 .addOperand(Base)
14977 .addOperand(Scale)
14978 .addOperand(Index)
14979 .addDisp(Disp, UseFPOffset ? 4 : 0)
14980 .addOperand(Segment)
14981 .setMemRefs(MMOBegin, MMOEnd);
14982
14983 // Check if there is enough room left to pull this argument.
14984 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14985 .addReg(OffsetReg)
14986 .addImm(MaxOffset + 8 - ArgSizeA8);
14987
14988 // Branch to "overflowMBB" if offset >= max
14989 // Fall through to "offsetMBB" otherwise
14990 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14991 .addMBB(overflowMBB);
14992 }
14993
14994 // In offsetMBB, emit code to use the reg_save_area.
14995 if (offsetMBB) {
14996 assert(OffsetReg != 0);
14997
14998 // Read the reg_save_area address.
14999 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15000 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15001 .addOperand(Base)
15002 .addOperand(Scale)
15003 .addOperand(Index)
15004 .addDisp(Disp, 16)
15005 .addOperand(Segment)
15006 .setMemRefs(MMOBegin, MMOEnd);
15007
15008 // Zero-extend the offset
15009 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15010 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15011 .addImm(0)
15012 .addReg(OffsetReg)
15013 .addImm(X86::sub_32bit);
15014
15015 // Add the offset to the reg_save_area to get the final address.
15016 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15017 .addReg(OffsetReg64)
15018 .addReg(RegSaveReg);
15019
15020 // Compute the offset for the next argument
15021 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15022 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15023 .addReg(OffsetReg)
15024 .addImm(UseFPOffset ? 16 : 8);
15025
15026 // Store it back into the va_list.
15027 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15028 .addOperand(Base)
15029 .addOperand(Scale)
15030 .addOperand(Index)
15031 .addDisp(Disp, UseFPOffset ? 4 : 0)
15032 .addOperand(Segment)
15033 .addReg(NextOffsetReg)
15034 .setMemRefs(MMOBegin, MMOEnd);
15035
15036 // Jump to endMBB
15037 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15038 .addMBB(endMBB);
15039 }
15040
15041 //
15042 // Emit code to use overflow area
15043 //
15044
15045 // Load the overflow_area address into a register.
15046 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15047 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15048 .addOperand(Base)
15049 .addOperand(Scale)
15050 .addOperand(Index)
15051 .addDisp(Disp, 8)
15052 .addOperand(Segment)
15053 .setMemRefs(MMOBegin, MMOEnd);
15054
15055 // If we need to align it, do so. Otherwise, just copy the address
15056 // to OverflowDestReg.
15057 if (NeedsAlign) {
15058 // Align the overflow address
15059 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15060 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15061
15062 // aligned_addr = (addr + (align-1)) & ~(align-1)
15063 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15064 .addReg(OverflowAddrReg)
15065 .addImm(Align-1);
15066
15067 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15068 .addReg(TmpReg)
15069 .addImm(~(uint64_t)(Align-1));
15070 } else {
15071 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15072 .addReg(OverflowAddrReg);
15073 }
15074
15075 // Compute the next overflow address after this argument.
15076 // (the overflow address should be kept 8-byte aligned)
15077 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15078 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15079 .addReg(OverflowDestReg)
15080 .addImm(ArgSizeA8);
15081
15082 // Store the new overflow address.
15083 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15084 .addOperand(Base)
15085 .addOperand(Scale)
15086 .addOperand(Index)
15087 .addDisp(Disp, 8)
15088 .addOperand(Segment)
15089 .addReg(NextAddrReg)
15090 .setMemRefs(MMOBegin, MMOEnd);
15091
15092 // If we branched, emit the PHI to the front of endMBB.
15093 if (offsetMBB) {
15094 BuildMI(*endMBB, endMBB->begin(), DL,
15095 TII->get(X86::PHI), DestReg)
15096 .addReg(OffsetDestReg).addMBB(offsetMBB)
15097 .addReg(OverflowDestReg).addMBB(overflowMBB);
15098 }
15099
15100 // Erase the pseudo instruction
15101 MI->eraseFromParent();
15102
15103 return endMBB;
15104}
15105
15106MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015107X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15108 MachineInstr *MI,
15109 MachineBasicBlock *MBB) const {
15110 // Emit code to save XMM registers to the stack. The ABI says that the
15111 // number of registers to save is given in %al, so it's theoretically
15112 // possible to do an indirect jump trick to avoid saving all of them,
15113 // however this code takes a simpler approach and just executes all
15114 // of the stores if %al is non-zero. It's less code, and it's probably
15115 // easier on the hardware branch predictor, and stores aren't all that
15116 // expensive anyway.
15117
15118 // Create the new basic blocks. One block contains all the XMM stores,
15119 // and one block is the final destination regardless of whether any
15120 // stores were performed.
15121 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15122 MachineFunction *F = MBB->getParent();
15123 MachineFunction::iterator MBBIter = MBB;
15124 ++MBBIter;
15125 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15126 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15127 F->insert(MBBIter, XMMSaveMBB);
15128 F->insert(MBBIter, EndMBB);
15129
Dan Gohman14152b42010-07-06 20:24:04 +000015130 // Transfer the remainder of MBB and its successor edges to EndMBB.
15131 EndMBB->splice(EndMBB->begin(), MBB,
15132 llvm::next(MachineBasicBlock::iterator(MI)),
15133 MBB->end());
15134 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15135
Dan Gohmand6708ea2009-08-15 01:38:56 +000015136 // The original block will now fall through to the XMM save block.
15137 MBB->addSuccessor(XMMSaveMBB);
15138 // The XMMSaveMBB will fall through to the end block.
15139 XMMSaveMBB->addSuccessor(EndMBB);
15140
15141 // Now add the instructions.
15142 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15143 DebugLoc DL = MI->getDebugLoc();
15144
15145 unsigned CountReg = MI->getOperand(0).getReg();
15146 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15147 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15148
15149 if (!Subtarget->isTargetWin64()) {
15150 // If %al is 0, branch around the XMM save block.
15151 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015152 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015153 MBB->addSuccessor(EndMBB);
15154 }
15155
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015156 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015157 // In the XMM save block, save all the XMM argument registers.
15158 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15159 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015160 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015161 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015162 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015163 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015164 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015165 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015166 .addFrameIndex(RegSaveFrameIndex)
15167 .addImm(/*Scale=*/1)
15168 .addReg(/*IndexReg=*/0)
15169 .addImm(/*Disp=*/Offset)
15170 .addReg(/*Segment=*/0)
15171 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015172 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015173 }
15174
Dan Gohman14152b42010-07-06 20:24:04 +000015175 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015176
15177 return EndMBB;
15178}
Mon P Wang63307c32008-05-05 19:05:59 +000015179
Lang Hames6e3f7e42012-02-03 01:13:49 +000015180// The EFLAGS operand of SelectItr might be missing a kill marker
15181// because there were multiple uses of EFLAGS, and ISel didn't know
15182// which to mark. Figure out whether SelectItr should have had a
15183// kill marker, and set it if it should. Returns the correct kill
15184// marker value.
15185static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15186 MachineBasicBlock* BB,
15187 const TargetRegisterInfo* TRI) {
15188 // Scan forward through BB for a use/def of EFLAGS.
15189 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15190 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015191 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015192 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015193 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015194 if (mi.definesRegister(X86::EFLAGS))
15195 break; // Should have kill-flag - update below.
15196 }
15197
15198 // If we hit the end of the block, check whether EFLAGS is live into a
15199 // successor.
15200 if (miI == BB->end()) {
15201 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15202 sEnd = BB->succ_end();
15203 sItr != sEnd; ++sItr) {
15204 MachineBasicBlock* succ = *sItr;
15205 if (succ->isLiveIn(X86::EFLAGS))
15206 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015207 }
15208 }
15209
Lang Hames6e3f7e42012-02-03 01:13:49 +000015210 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15211 // out. SelectMI should have a kill flag on EFLAGS.
15212 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015213 return true;
15214}
15215
Evan Cheng60c07e12006-07-05 22:17:51 +000015216MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015217X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015218 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015219 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15220 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015221
Chris Lattner52600972009-09-02 05:57:00 +000015222 // To "insert" a SELECT_CC instruction, we actually have to insert the
15223 // diamond control-flow pattern. The incoming instruction knows the
15224 // destination vreg to set, the condition code register to branch on, the
15225 // true/false values to select between, and a branch opcode to use.
15226 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15227 MachineFunction::iterator It = BB;
15228 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015229
Chris Lattner52600972009-09-02 05:57:00 +000015230 // thisMBB:
15231 // ...
15232 // TrueVal = ...
15233 // cmpTY ccX, r1, r2
15234 // bCC copy1MBB
15235 // fallthrough --> copy0MBB
15236 MachineBasicBlock *thisMBB = BB;
15237 MachineFunction *F = BB->getParent();
15238 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15239 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015240 F->insert(It, copy0MBB);
15241 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015242
Bill Wendling730c07e2010-06-25 20:48:10 +000015243 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15244 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015245 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15246 if (!MI->killsRegister(X86::EFLAGS) &&
15247 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15248 copy0MBB->addLiveIn(X86::EFLAGS);
15249 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015250 }
15251
Dan Gohman14152b42010-07-06 20:24:04 +000015252 // Transfer the remainder of BB and its successor edges to sinkMBB.
15253 sinkMBB->splice(sinkMBB->begin(), BB,
15254 llvm::next(MachineBasicBlock::iterator(MI)),
15255 BB->end());
15256 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15257
15258 // Add the true and fallthrough blocks as its successors.
15259 BB->addSuccessor(copy0MBB);
15260 BB->addSuccessor(sinkMBB);
15261
15262 // Create the conditional branch instruction.
15263 unsigned Opc =
15264 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15265 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15266
Chris Lattner52600972009-09-02 05:57:00 +000015267 // copy0MBB:
15268 // %FalseValue = ...
15269 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015270 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015271
Chris Lattner52600972009-09-02 05:57:00 +000015272 // sinkMBB:
15273 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15274 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015275 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15276 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015277 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15278 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15279
Dan Gohman14152b42010-07-06 20:24:04 +000015280 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015281 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015282}
15283
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015284MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015285X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15286 bool Is64Bit) const {
15287 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15288 DebugLoc DL = MI->getDebugLoc();
15289 MachineFunction *MF = BB->getParent();
15290 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15291
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015292 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015293
15294 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15295 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15296
15297 // BB:
15298 // ... [Till the alloca]
15299 // If stacklet is not large enough, jump to mallocMBB
15300 //
15301 // bumpMBB:
15302 // Allocate by subtracting from RSP
15303 // Jump to continueMBB
15304 //
15305 // mallocMBB:
15306 // Allocate by call to runtime
15307 //
15308 // continueMBB:
15309 // ...
15310 // [rest of original BB]
15311 //
15312
15313 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15314 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15315 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15316
15317 MachineRegisterInfo &MRI = MF->getRegInfo();
15318 const TargetRegisterClass *AddrRegClass =
15319 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15320
15321 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15322 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15323 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015324 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015325 sizeVReg = MI->getOperand(1).getReg(),
15326 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15327
15328 MachineFunction::iterator MBBIter = BB;
15329 ++MBBIter;
15330
15331 MF->insert(MBBIter, bumpMBB);
15332 MF->insert(MBBIter, mallocMBB);
15333 MF->insert(MBBIter, continueMBB);
15334
15335 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15336 (MachineBasicBlock::iterator(MI)), BB->end());
15337 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15338
15339 // Add code to the main basic block to check if the stack limit has been hit,
15340 // and if so, jump to mallocMBB otherwise to bumpMBB.
15341 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015342 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015343 .addReg(tmpSPVReg).addReg(sizeVReg);
15344 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015345 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015346 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015347 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15348
15349 // bumpMBB simply decreases the stack pointer, since we know the current
15350 // stacklet has enough space.
15351 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015352 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015353 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015354 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015355 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15356
15357 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015358 const uint32_t *RegMask =
15359 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015360 if (Is64Bit) {
15361 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15362 .addReg(sizeVReg);
15363 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015364 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015365 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015366 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015367 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015368 } else {
15369 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15370 .addImm(12);
15371 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15372 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015373 .addExternalSymbol("__morestack_allocate_stack_space")
15374 .addRegMask(RegMask)
15375 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015376 }
15377
15378 if (!Is64Bit)
15379 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15380 .addImm(16);
15381
15382 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15383 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15384 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15385
15386 // Set up the CFG correctly.
15387 BB->addSuccessor(bumpMBB);
15388 BB->addSuccessor(mallocMBB);
15389 mallocMBB->addSuccessor(continueMBB);
15390 bumpMBB->addSuccessor(continueMBB);
15391
15392 // Take care of the PHI nodes.
15393 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15394 MI->getOperand(0).getReg())
15395 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15396 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15397
15398 // Delete the original pseudo instruction.
15399 MI->eraseFromParent();
15400
15401 // And we're done.
15402 return continueMBB;
15403}
15404
15405MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015406X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015407 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015408 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15409 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015410
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015411 assert(!Subtarget->isTargetEnvMacho());
15412
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015413 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15414 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015415
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015416 if (Subtarget->isTargetWin64()) {
15417 if (Subtarget->isTargetCygMing()) {
15418 // ___chkstk(Mingw64):
15419 // Clobbers R10, R11, RAX and EFLAGS.
15420 // Updates RSP.
15421 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15422 .addExternalSymbol("___chkstk")
15423 .addReg(X86::RAX, RegState::Implicit)
15424 .addReg(X86::RSP, RegState::Implicit)
15425 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15426 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15427 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15428 } else {
15429 // __chkstk(MSVCRT): does not update stack pointer.
15430 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015431 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15432 .addExternalSymbol("__chkstk")
15433 .addReg(X86::RAX, RegState::Implicit)
15434 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015435 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015436 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15437 .addReg(X86::RSP)
15438 .addReg(X86::RAX);
15439 }
15440 } else {
15441 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015442 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15443
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015444 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15445 .addExternalSymbol(StackProbeSymbol)
15446 .addReg(X86::EAX, RegState::Implicit)
15447 .addReg(X86::ESP, RegState::Implicit)
15448 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15449 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15450 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15451 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015452
Dan Gohman14152b42010-07-06 20:24:04 +000015453 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015454 return BB;
15455}
Chris Lattner52600972009-09-02 05:57:00 +000015456
15457MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015458X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15459 MachineBasicBlock *BB) const {
15460 // This is pretty easy. We're taking the value that we received from
15461 // our load from the relocation, sticking it in either RDI (x86-64)
15462 // or EAX and doing an indirect call. The return value will then
15463 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015464 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015465 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015466 DebugLoc DL = MI->getDebugLoc();
15467 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015468
15469 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015470 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015471
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015472 // Get a register mask for the lowered call.
15473 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15474 // proper register mask.
15475 const uint32_t *RegMask =
15476 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015477 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015478 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15479 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015480 .addReg(X86::RIP)
15481 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015482 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015483 MI->getOperand(3).getTargetFlags())
15484 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015485 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015486 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015487 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015488 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015489 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15490 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015491 .addReg(0)
15492 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015493 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +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 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015500 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15501 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015502 .addReg(TII->getGlobalBaseReg(F))
15503 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015504 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015505 MI->getOperand(3).getTargetFlags())
15506 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015507 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015508 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015509 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015510 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015511
Dan Gohman14152b42010-07-06 20:24:04 +000015512 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015513 return BB;
15514}
15515
15516MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015517X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15518 MachineBasicBlock *MBB) const {
15519 DebugLoc DL = MI->getDebugLoc();
15520 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15521
15522 MachineFunction *MF = MBB->getParent();
15523 MachineRegisterInfo &MRI = MF->getRegInfo();
15524
15525 const BasicBlock *BB = MBB->getBasicBlock();
15526 MachineFunction::iterator I = MBB;
15527 ++I;
15528
15529 // Memory Reference
15530 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15531 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15532
15533 unsigned DstReg;
15534 unsigned MemOpndSlot = 0;
15535
15536 unsigned CurOp = 0;
15537
15538 DstReg = MI->getOperand(CurOp++).getReg();
15539 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15540 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15541 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15542 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15543
15544 MemOpndSlot = CurOp;
15545
15546 MVT PVT = getPointerTy();
15547 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15548 "Invalid Pointer Size!");
15549
15550 // For v = setjmp(buf), we generate
15551 //
15552 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015553 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015554 // SjLjSetup restoreMBB
15555 //
15556 // mainMBB:
15557 // v_main = 0
15558 //
15559 // sinkMBB:
15560 // v = phi(main, restore)
15561 //
15562 // restoreMBB:
15563 // v_restore = 1
15564
15565 MachineBasicBlock *thisMBB = MBB;
15566 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15567 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15568 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15569 MF->insert(I, mainMBB);
15570 MF->insert(I, sinkMBB);
15571 MF->push_back(restoreMBB);
15572
15573 MachineInstrBuilder MIB;
15574
15575 // Transfer the remainder of BB and its successor edges to sinkMBB.
15576 sinkMBB->splice(sinkMBB->begin(), MBB,
15577 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15578 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15579
15580 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015581 unsigned PtrStoreOpc = 0;
15582 unsigned LabelReg = 0;
15583 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15584 Reloc::Model RM = getTargetMachine().getRelocationModel();
15585 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15586 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015587
Michael Liao281ae5a2012-10-17 02:22:27 +000015588 // Prepare IP either in reg or imm.
15589 if (!UseImmLabel) {
15590 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15591 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15592 LabelReg = MRI.createVirtualRegister(PtrRC);
15593 if (Subtarget->is64Bit()) {
15594 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15595 .addReg(X86::RIP)
15596 .addImm(0)
15597 .addReg(0)
15598 .addMBB(restoreMBB)
15599 .addReg(0);
15600 } else {
15601 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15602 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15603 .addReg(XII->getGlobalBaseReg(MF))
15604 .addImm(0)
15605 .addReg(0)
15606 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15607 .addReg(0);
15608 }
15609 } else
15610 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015611 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015612 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015613 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15614 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015615 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015616 else
15617 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15618 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015619 if (!UseImmLabel)
15620 MIB.addReg(LabelReg);
15621 else
15622 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015623 MIB.setMemRefs(MMOBegin, MMOEnd);
15624 // Setup
15625 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15626 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015627
15628 const X86RegisterInfo *RegInfo =
15629 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015630 MIB.addRegMask(RegInfo->getNoPreservedMask());
15631 thisMBB->addSuccessor(mainMBB);
15632 thisMBB->addSuccessor(restoreMBB);
15633
15634 // mainMBB:
15635 // EAX = 0
15636 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15637 mainMBB->addSuccessor(sinkMBB);
15638
15639 // sinkMBB:
15640 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15641 TII->get(X86::PHI), DstReg)
15642 .addReg(mainDstReg).addMBB(mainMBB)
15643 .addReg(restoreDstReg).addMBB(restoreMBB);
15644
15645 // restoreMBB:
15646 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15647 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15648 restoreMBB->addSuccessor(sinkMBB);
15649
15650 MI->eraseFromParent();
15651 return sinkMBB;
15652}
15653
15654MachineBasicBlock *
15655X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15656 MachineBasicBlock *MBB) const {
15657 DebugLoc DL = MI->getDebugLoc();
15658 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15659
15660 MachineFunction *MF = MBB->getParent();
15661 MachineRegisterInfo &MRI = MF->getRegInfo();
15662
15663 // Memory Reference
15664 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15665 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15666
15667 MVT PVT = getPointerTy();
15668 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15669 "Invalid Pointer Size!");
15670
15671 const TargetRegisterClass *RC =
15672 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15673 unsigned Tmp = MRI.createVirtualRegister(RC);
15674 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015675 const X86RegisterInfo *RegInfo =
15676 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015677 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15678 unsigned SP = RegInfo->getStackRegister();
15679
15680 MachineInstrBuilder MIB;
15681
Michael Liao281ae5a2012-10-17 02:22:27 +000015682 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15683 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015684
15685 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15686 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15687
15688 // Reload FP
15689 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15690 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15691 MIB.addOperand(MI->getOperand(i));
15692 MIB.setMemRefs(MMOBegin, MMOEnd);
15693 // Reload IP
15694 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15695 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15696 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015697 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015698 else
15699 MIB.addOperand(MI->getOperand(i));
15700 }
15701 MIB.setMemRefs(MMOBegin, MMOEnd);
15702 // Reload SP
15703 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15704 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15705 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015706 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015707 else
15708 MIB.addOperand(MI->getOperand(i));
15709 }
15710 MIB.setMemRefs(MMOBegin, MMOEnd);
15711 // Jump
15712 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15713
15714 MI->eraseFromParent();
15715 return MBB;
15716}
15717
15718MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015719X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015720 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015721 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015722 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015723 case X86::TAILJMPd64:
15724 case X86::TAILJMPr64:
15725 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015726 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015727 case X86::TCRETURNdi64:
15728 case X86::TCRETURNri64:
15729 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015730 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015731 case X86::WIN_ALLOCA:
15732 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015733 case X86::SEG_ALLOCA_32:
15734 return EmitLoweredSegAlloca(MI, BB, false);
15735 case X86::SEG_ALLOCA_64:
15736 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015737 case X86::TLSCall_32:
15738 case X86::TLSCall_64:
15739 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015740 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015741 case X86::CMOV_FR32:
15742 case X86::CMOV_FR64:
15743 case X86::CMOV_V4F32:
15744 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015745 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015746 case X86::CMOV_V8F32:
15747 case X86::CMOV_V4F64:
15748 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015749 case X86::CMOV_GR16:
15750 case X86::CMOV_GR32:
15751 case X86::CMOV_RFP32:
15752 case X86::CMOV_RFP64:
15753 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015754 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015755
Dale Johannesen849f2142007-07-03 00:53:03 +000015756 case X86::FP32_TO_INT16_IN_MEM:
15757 case X86::FP32_TO_INT32_IN_MEM:
15758 case X86::FP32_TO_INT64_IN_MEM:
15759 case X86::FP64_TO_INT16_IN_MEM:
15760 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015761 case X86::FP64_TO_INT64_IN_MEM:
15762 case X86::FP80_TO_INT16_IN_MEM:
15763 case X86::FP80_TO_INT32_IN_MEM:
15764 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015765 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15766 DebugLoc DL = MI->getDebugLoc();
15767
Evan Cheng60c07e12006-07-05 22:17:51 +000015768 // Change the floating point control register to use "round towards zero"
15769 // mode when truncating to an integer value.
15770 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015771 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015772 addFrameReference(BuildMI(*BB, MI, DL,
15773 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015774
15775 // Load the old value of the high byte of the control word...
15776 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015777 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015778 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015779 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015780
15781 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015782 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015783 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015784
15785 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015786 addFrameReference(BuildMI(*BB, MI, DL,
15787 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015788
15789 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015790 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015791 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015792
15793 // Get the X86 opcode to use.
15794 unsigned Opc;
15795 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015796 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015797 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15798 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15799 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15800 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15801 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15802 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015803 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15804 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15805 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015806 }
15807
15808 X86AddressMode AM;
15809 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015810 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015811 AM.BaseType = X86AddressMode::RegBase;
15812 AM.Base.Reg = Op.getReg();
15813 } else {
15814 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015815 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015816 }
15817 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015818 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015819 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015820 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015821 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015822 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015823 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015824 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015825 AM.GV = Op.getGlobal();
15826 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015827 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015828 }
Dan Gohman14152b42010-07-06 20:24:04 +000015829 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015830 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015831
15832 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015833 addFrameReference(BuildMI(*BB, MI, DL,
15834 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015835
Dan Gohman14152b42010-07-06 20:24:04 +000015836 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015837 return BB;
15838 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015839 // String/text processing lowering.
15840 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015841 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015842 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015843 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015844 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015845 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015846 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015847 case X86::VPCMPESTRM128MEM:
15848 assert(Subtarget->hasSSE42() &&
15849 "Target must have SSE4.2 or AVX features enabled");
15850 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015851
15852 // String/text processing lowering.
15853 case X86::PCMPISTRIREG:
15854 case X86::VPCMPISTRIREG:
15855 case X86::PCMPISTRIMEM:
15856 case X86::VPCMPISTRIMEM:
15857 case X86::PCMPESTRIREG:
15858 case X86::VPCMPESTRIREG:
15859 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015860 case X86::VPCMPESTRIMEM:
15861 assert(Subtarget->hasSSE42() &&
15862 "Target must have SSE4.2 or AVX features enabled");
15863 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015864
Craig Topper8aae8dd2012-11-10 08:57:41 +000015865 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015866 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015867 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015868
Michael Liaobe02a902012-11-08 07:28:54 +000015869 // xbegin
15870 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015871 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015872
Craig Topper8aae8dd2012-11-10 08:57:41 +000015873 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015874 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015875 case X86::ATOMAND16:
15876 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015877 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015878 // Fall through
15879 case X86::ATOMOR8:
15880 case X86::ATOMOR16:
15881 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015882 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015883 // Fall through
15884 case X86::ATOMXOR16:
15885 case X86::ATOMXOR8:
15886 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015887 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015888 // Fall through
15889 case X86::ATOMNAND8:
15890 case X86::ATOMNAND16:
15891 case X86::ATOMNAND32:
15892 case X86::ATOMNAND64:
15893 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015894 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015895 case X86::ATOMMAX16:
15896 case X86::ATOMMAX32:
15897 case X86::ATOMMAX64:
15898 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015899 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015900 case X86::ATOMMIN16:
15901 case X86::ATOMMIN32:
15902 case X86::ATOMMIN64:
15903 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015904 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015905 case X86::ATOMUMAX16:
15906 case X86::ATOMUMAX32:
15907 case X86::ATOMUMAX64:
15908 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015909 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015910 case X86::ATOMUMIN16:
15911 case X86::ATOMUMIN32:
15912 case X86::ATOMUMIN64:
15913 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015914
15915 // This group does 64-bit operations on a 32-bit host.
15916 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015917 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015918 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015919 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015920 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015921 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015922 case X86::ATOMMAX6432:
15923 case X86::ATOMMIN6432:
15924 case X86::ATOMUMAX6432:
15925 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015926 case X86::ATOMSWAP6432:
15927 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015928
Dan Gohmand6708ea2009-08-15 01:38:56 +000015929 case X86::VASTART_SAVE_XMM_REGS:
15930 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015931
15932 case X86::VAARG_64:
15933 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015934
15935 case X86::EH_SjLj_SetJmp32:
15936 case X86::EH_SjLj_SetJmp64:
15937 return emitEHSjLjSetJmp(MI, BB);
15938
15939 case X86::EH_SjLj_LongJmp32:
15940 case X86::EH_SjLj_LongJmp64:
15941 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015942 }
15943}
15944
15945//===----------------------------------------------------------------------===//
15946// X86 Optimization Hooks
15947//===----------------------------------------------------------------------===//
15948
Dan Gohman475871a2008-07-27 21:46:04 +000015949void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015950 APInt &KnownZero,
15951 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015952 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015953 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015954 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015955 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015956 assert((Opc >= ISD::BUILTIN_OP_END ||
15957 Opc == ISD::INTRINSIC_WO_CHAIN ||
15958 Opc == ISD::INTRINSIC_W_CHAIN ||
15959 Opc == ISD::INTRINSIC_VOID) &&
15960 "Should use MaskedValueIsZero if you don't know whether Op"
15961 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015962
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015963 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015964 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015965 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015966 case X86ISD::ADD:
15967 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015968 case X86ISD::ADC:
15969 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015970 case X86ISD::SMUL:
15971 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015972 case X86ISD::INC:
15973 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015974 case X86ISD::OR:
15975 case X86ISD::XOR:
15976 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015977 // These nodes' second result is a boolean.
15978 if (Op.getResNo() == 0)
15979 break;
15980 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015981 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015982 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015983 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015984 case ISD::INTRINSIC_WO_CHAIN: {
15985 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15986 unsigned NumLoBits = 0;
15987 switch (IntId) {
15988 default: break;
15989 case Intrinsic::x86_sse_movmsk_ps:
15990 case Intrinsic::x86_avx_movmsk_ps_256:
15991 case Intrinsic::x86_sse2_movmsk_pd:
15992 case Intrinsic::x86_avx_movmsk_pd_256:
15993 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015994 case Intrinsic::x86_sse2_pmovmskb_128:
15995 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015996 // High bits of movmskp{s|d}, pmovmskb are known zero.
15997 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015998 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015999 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
16000 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
16001 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
16002 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
16003 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
16004 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000016005 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000016006 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016007 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000016008 break;
16009 }
16010 }
16011 break;
16012 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016013 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016014}
Chris Lattner259e97c2006-01-31 19:43:35 +000016015
Owen Andersonbc146b02010-09-21 20:42:50 +000016016unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16017 unsigned Depth) const {
16018 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16019 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16020 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016021
Owen Andersonbc146b02010-09-21 20:42:50 +000016022 // Fallback case.
16023 return 1;
16024}
16025
Evan Cheng206ee9d2006-07-07 08:33:52 +000016026/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016027/// node is a GlobalAddress + offset.
16028bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016029 const GlobalValue* &GA,
16030 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016031 if (N->getOpcode() == X86ISD::Wrapper) {
16032 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016033 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016034 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016035 return true;
16036 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016037 }
Evan Chengad4196b2008-05-12 19:56:52 +000016038 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016039}
16040
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016041/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16042/// same as extracting the high 128-bit part of 256-bit vector and then
16043/// inserting the result into the low part of a new 256-bit vector
16044static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16045 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016046 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016047
16048 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016049 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016050 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16051 SVOp->getMaskElt(j) >= 0)
16052 return false;
16053
16054 return true;
16055}
16056
16057/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16058/// same as extracting the low 128-bit part of 256-bit vector and then
16059/// inserting the result into the high part of a new 256-bit vector
16060static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16061 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016062 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016063
16064 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016065 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016066 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16067 SVOp->getMaskElt(j) >= 0)
16068 return false;
16069
16070 return true;
16071}
16072
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016073/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16074static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016075 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016076 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016077 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016078 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16079 SDValue V1 = SVOp->getOperand(0);
16080 SDValue V2 = SVOp->getOperand(1);
16081 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016082 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016083
16084 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16085 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16086 //
16087 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016088 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016089 // V UNDEF BUILD_VECTOR UNDEF
16090 // \ / \ /
16091 // CONCAT_VECTOR CONCAT_VECTOR
16092 // \ /
16093 // \ /
16094 // RESULT: V + zero extended
16095 //
16096 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16097 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16098 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16099 return SDValue();
16100
16101 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16102 return SDValue();
16103
16104 // To match the shuffle mask, the first half of the mask should
16105 // be exactly the first vector, and all the rest a splat with the
16106 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016107 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016108 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16109 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16110 return SDValue();
16111
Chad Rosier3d1161e2012-01-03 21:05:52 +000016112 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16113 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016114 if (Ld->hasNUsesOfValue(1, 0)) {
16115 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16116 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16117 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016118 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16119 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016120 Ld->getMemoryVT(),
16121 Ld->getPointerInfo(),
16122 Ld->getAlignment(),
16123 false/*isVolatile*/, true/*ReadMem*/,
16124 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016125
16126 // Make sure the newly-created LOAD is in the same position as Ld in
16127 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16128 // and update uses of Ld's output chain to use the TokenFactor.
16129 if (Ld->hasAnyUseOfValue(1)) {
16130 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16131 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16132 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16133 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16134 SDValue(ResNode.getNode(), 1));
16135 }
16136
Chad Rosier42726832012-05-07 18:47:44 +000016137 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16138 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016139 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016140
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016141 // Emit a zeroed vector and insert the desired subvector on its
16142 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016143 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016144 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016145 return DCI.CombineTo(N, InsV);
16146 }
16147
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016148 //===--------------------------------------------------------------------===//
16149 // Combine some shuffles into subvector extracts and inserts:
16150 //
16151
16152 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16153 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016154 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16155 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016156 return DCI.CombineTo(N, InsV);
16157 }
16158
16159 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16160 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016161 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16162 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016163 return DCI.CombineTo(N, InsV);
16164 }
16165
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016166 return SDValue();
16167}
16168
Jim Grosbach49af3802013-10-17 02:58:06 +000016169static SDValue PerformConcatCombine(SDNode *N, SelectionDAG &DAG,
16170 TargetLowering::DAGCombinerInfo &DCI,
16171 const X86Subtarget *Subtarget) {
16172 // Creating a v8i16 from a v4i16 argument and an undef runs into trouble in
16173 // type legalization and ends up spilling to the stack. Avoid that by
16174 // creating a vector first and bitcasting the result rather than
16175 // bitcasting the source then creating the vector. Similar problems with
16176 // v8i8.
16177
16178 // No point in doing this after legalize, so early exit for that.
16179 if (!DCI.isBeforeLegalize())
16180 return SDValue();
16181
16182 EVT VT = N->getValueType(0);
16183 SDValue Op0 = N->getOperand(0);
16184 SDValue Op1 = N->getOperand(1);
16185 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16186 if (VT.getSizeInBits() == 128 && N->getNumOperands() == 2 &&
16187 Op1->getOpcode() == ISD::UNDEF &&
16188 Op0->getOpcode() == ISD::BITCAST &&
16189 !TLI.isTypeLegal(Op0->getValueType(0)) &&
16190 TLI.isTypeLegal(Op0->getOperand(0)->getValueType(0))) {
16191 SDValue Scalar = Op0->getOperand(0);
16192 // Any legal type here will be a simple value type.
16193 MVT SVT = Scalar->getValueType(0).getSimpleVT();
16194 // As a special case, bail out on MMX values.
16195 if (SVT == MVT::x86mmx)
16196 return SDValue();
16197 EVT NVT = MVT::getVectorVT(SVT, 2);
16198 SDLoc dl = SDLoc(N);
16199 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NVT, Scalar);
16200 Res = DAG.getNode(ISD::BITCAST, dl, VT, Res);
16201 return Res;
16202 }
16203
16204 return SDValue();
16205}
16206
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016207/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016208static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016209 TargetLowering::DAGCombinerInfo &DCI,
16210 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016211 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016212 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016213
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016214 // Don't create instructions with illegal types after legalize types has run.
16215 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16216 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16217 return SDValue();
16218
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016219 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016220 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016221 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016222 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016223
16224 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016225 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016226 return SDValue();
16227
16228 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16229 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16230 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016231 SmallVector<SDValue, 16> Elts;
16232 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016233 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016234
Nate Begemanfdea31a2010-03-24 20:49:50 +000016235 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016236}
Evan Chengd880b972008-05-09 21:53:03 +000016237
Nadav Roteme12bf182013-01-04 17:35:21 +000016238/// PerformTruncateCombine - Converts truncate operation to
16239/// a sequence of vector shuffle operations.
16240/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016241static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16242 TargetLowering::DAGCombinerInfo &DCI,
16243 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016244 return SDValue();
16245}
16246
Craig Topper89f4e662012-03-20 07:17:59 +000016247/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16248/// specific shuffle of a load can be folded into a single element load.
16249/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16250/// shuffles have been customed lowered so we need to handle those here.
16251static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16252 TargetLowering::DAGCombinerInfo &DCI) {
16253 if (DCI.isBeforeLegalizeOps())
16254 return SDValue();
16255
16256 SDValue InVec = N->getOperand(0);
16257 SDValue EltNo = N->getOperand(1);
16258
16259 if (!isa<ConstantSDNode>(EltNo))
16260 return SDValue();
16261
16262 EVT VT = InVec.getValueType();
16263
16264 bool HasShuffleIntoBitcast = false;
16265 if (InVec.getOpcode() == ISD::BITCAST) {
16266 // Don't duplicate a load with other uses.
16267 if (!InVec.hasOneUse())
16268 return SDValue();
16269 EVT BCVT = InVec.getOperand(0).getValueType();
16270 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16271 return SDValue();
16272 InVec = InVec.getOperand(0);
16273 HasShuffleIntoBitcast = true;
16274 }
16275
16276 if (!isTargetShuffle(InVec.getOpcode()))
16277 return SDValue();
16278
16279 // Don't duplicate a load with other uses.
16280 if (!InVec.hasOneUse())
16281 return SDValue();
16282
16283 SmallVector<int, 16> ShuffleMask;
16284 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016285 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16286 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016287 return SDValue();
16288
16289 // Select the input vector, guarding against out of range extract vector.
16290 unsigned NumElems = VT.getVectorNumElements();
16291 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16292 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16293 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16294 : InVec.getOperand(1);
16295
16296 // If inputs to shuffle are the same for both ops, then allow 2 uses
16297 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16298
16299 if (LdNode.getOpcode() == ISD::BITCAST) {
16300 // Don't duplicate a load with other uses.
16301 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16302 return SDValue();
16303
16304 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16305 LdNode = LdNode.getOperand(0);
16306 }
16307
16308 if (!ISD::isNormalLoad(LdNode.getNode()))
16309 return SDValue();
16310
16311 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16312
16313 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16314 return SDValue();
16315
16316 if (HasShuffleIntoBitcast) {
16317 // If there's a bitcast before the shuffle, check if the load type and
16318 // alignment is valid.
16319 unsigned Align = LN0->getAlignment();
16320 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016321 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016322 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16323
16324 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16325 return SDValue();
16326 }
16327
16328 // All checks match so transform back to vector_shuffle so that DAG combiner
16329 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016330 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016331
16332 // Create shuffle node taking into account the case that its a unary shuffle
16333 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16334 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16335 InVec.getOperand(0), Shuffle,
16336 &ShuffleMask[0]);
16337 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16338 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16339 EltNo);
16340}
16341
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016342/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16343/// generation and convert it from being a bunch of shuffles and extracts
16344/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016345static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016346 TargetLowering::DAGCombinerInfo &DCI) {
16347 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16348 if (NewOp.getNode())
16349 return NewOp;
16350
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016351 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016352 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16353 // from mmx to v2i32 has a single usage.
16354 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16355 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16356 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016357 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016358 N->getValueType(0),
16359 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016360
16361 // Only operate on vectors of 4 elements, where the alternative shuffling
16362 // gets to be more expensive.
16363 if (InputVector.getValueType() != MVT::v4i32)
16364 return SDValue();
16365
16366 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16367 // single use which is a sign-extend or zero-extend, and all elements are
16368 // used.
16369 SmallVector<SDNode *, 4> Uses;
16370 unsigned ExtractedElements = 0;
16371 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16372 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16373 if (UI.getUse().getResNo() != InputVector.getResNo())
16374 return SDValue();
16375
16376 SDNode *Extract = *UI;
16377 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16378 return SDValue();
16379
16380 if (Extract->getValueType(0) != MVT::i32)
16381 return SDValue();
16382 if (!Extract->hasOneUse())
16383 return SDValue();
16384 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16385 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16386 return SDValue();
16387 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16388 return SDValue();
16389
16390 // Record which element was extracted.
16391 ExtractedElements |=
16392 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16393
16394 Uses.push_back(Extract);
16395 }
16396
16397 // If not all the elements were used, this may not be worthwhile.
16398 if (ExtractedElements != 15)
16399 return SDValue();
16400
16401 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016402 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016403
16404 // Store the value to a temporary stack slot.
16405 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016406 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16407 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016408
16409 // Replace each use (extract) with a load of the appropriate element.
16410 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16411 UE = Uses.end(); UI != UE; ++UI) {
16412 SDNode *Extract = *UI;
16413
Nadav Rotem86694292011-05-17 08:31:57 +000016414 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016415 SDValue Idx = Extract->getOperand(1);
16416 unsigned EltSize =
16417 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16418 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016419 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016420 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16421
Nadav Rotem86694292011-05-17 08:31:57 +000016422 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016423 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016424
16425 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016426 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016427 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016428 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016429
16430 // Replace the exact with the load.
16431 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16432 }
16433
16434 // The replacement was made in place; don't return anything.
16435 return SDValue();
16436}
16437
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016438/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016439static std::pair<unsigned, bool>
16440matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16441 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016442 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016443 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016444
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016445 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016446 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016447 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016448 case MVT::v32i8:
16449 case MVT::v16i16:
16450 case MVT::v8i32:
16451 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016452 NeedSplit = true;
16453 if (!Subtarget->hasAVX())
16454 return std::make_pair(0, false);
16455 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016456 case MVT::v16i8:
16457 case MVT::v8i16:
16458 case MVT::v4i32:
16459 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016460 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016461 }
16462
16463 // SSE2 has only a small subset of the operations.
16464 bool hasUnsigned = Subtarget->hasSSE41() ||
16465 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16466 bool hasSigned = Subtarget->hasSSE41() ||
16467 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16468
16469 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16470
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016471 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016472 // Check for x CC y ? x : y.
16473 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16474 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16475 switch (CC) {
16476 default: break;
16477 case ISD::SETULT:
16478 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016479 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016480 case ISD::SETUGT:
16481 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016482 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016483 case ISD::SETLT:
16484 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016485 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016486 case ISD::SETGT:
16487 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016488 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016489 }
16490 // Check for x CC y ? y : x -- a min/max with reversed arms.
16491 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16492 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16493 switch (CC) {
16494 default: break;
16495 case ISD::SETULT:
16496 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016497 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016498 case ISD::SETUGT:
16499 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016500 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016501 case ISD::SETLT:
16502 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016503 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016504 case ISD::SETGT:
16505 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016506 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016507 }
16508 }
16509
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016510 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016511}
16512
Duncan Sands6bcd2192011-09-17 16:49:39 +000016513/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16514/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016515static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016516 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016517 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016518 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016519 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016520 // Get the LHS/RHS of the select.
16521 SDValue LHS = N->getOperand(1);
16522 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016523 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016524 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016525
Dan Gohman670e5392009-09-21 18:03:22 +000016526 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016527 // instructions match the semantics of the common C idiom x<y?x:y but not
16528 // x<=y?x:y, because of how they handle negative zero (which can be
16529 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016530 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016531 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016532 (Subtarget->hasSSE2() ||
16533 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016534 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016535
Chris Lattner47b4ce82009-03-11 05:48:52 +000016536 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016537 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016538 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16539 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016540 switch (CC) {
16541 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016542 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016543 // Converting this to a min would handle NaNs incorrectly, and swapping
16544 // the operands would cause it to handle comparisons between positive
16545 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016546 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016547 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016548 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16549 break;
16550 std::swap(LHS, RHS);
16551 }
Dan Gohman670e5392009-09-21 18:03:22 +000016552 Opcode = X86ISD::FMIN;
16553 break;
16554 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016555 // Converting this to a min would handle comparisons between positive
16556 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016557 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016558 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16559 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016560 Opcode = X86ISD::FMIN;
16561 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016562 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016563 // Converting this to a min would handle both negative zeros and NaNs
16564 // incorrectly, but we can swap the operands to fix both.
16565 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016566 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016567 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016568 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016569 Opcode = X86ISD::FMIN;
16570 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016571
Dan Gohman670e5392009-09-21 18:03:22 +000016572 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016573 // Converting this to a max would handle comparisons between positive
16574 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016575 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016576 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016577 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016578 Opcode = X86ISD::FMAX;
16579 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016580 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016581 // Converting this to a max would handle NaNs incorrectly, and swapping
16582 // the operands would cause it to handle comparisons between positive
16583 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016584 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016585 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016586 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16587 break;
16588 std::swap(LHS, RHS);
16589 }
Dan Gohman670e5392009-09-21 18:03:22 +000016590 Opcode = X86ISD::FMAX;
16591 break;
16592 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016593 // Converting this to a max would handle both negative zeros and NaNs
16594 // incorrectly, but we can swap the operands to fix both.
16595 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016596 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016597 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016598 case ISD::SETGE:
16599 Opcode = X86ISD::FMAX;
16600 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016601 }
Dan Gohman670e5392009-09-21 18:03:22 +000016602 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016603 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16604 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016605 switch (CC) {
16606 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016607 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016608 // Converting this to a min would handle comparisons between positive
16609 // and negative zero incorrectly, and swapping the operands would
16610 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016611 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016612 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016613 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016614 break;
16615 std::swap(LHS, RHS);
16616 }
Dan Gohman670e5392009-09-21 18:03:22 +000016617 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016618 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016619 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016620 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016621 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016622 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16623 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016624 Opcode = X86ISD::FMIN;
16625 break;
16626 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016627 // Converting this to a min would handle both negative zeros and NaNs
16628 // incorrectly, but we can swap the operands to fix both.
16629 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016630 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016631 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016632 case ISD::SETGE:
16633 Opcode = X86ISD::FMIN;
16634 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016635
Dan Gohman670e5392009-09-21 18:03:22 +000016636 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016637 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016638 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016639 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016640 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016641 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016642 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016643 // Converting this to a max would handle comparisons between positive
16644 // and negative zero incorrectly, and swapping the operands would
16645 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016646 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016647 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016648 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016649 break;
16650 std::swap(LHS, RHS);
16651 }
Dan Gohman670e5392009-09-21 18:03:22 +000016652 Opcode = X86ISD::FMAX;
16653 break;
16654 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016655 // Converting this to a max would handle both negative zeros and NaNs
16656 // incorrectly, but we can swap the operands to fix both.
16657 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016658 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016659 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016660 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016661 Opcode = X86ISD::FMAX;
16662 break;
16663 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016664 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016665
Chris Lattner47b4ce82009-03-11 05:48:52 +000016666 if (Opcode)
16667 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016668 }
Eric Christopherfd179292009-08-27 18:07:15 +000016669
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016670 if (Subtarget->hasAVX512() && VT.isVector() &&
16671 Cond.getValueType().getVectorElementType() == MVT::i1) {
16672 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16673 // lowering on AVX-512. In this case we convert it to
16674 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16675 // The same situation for all 128 and 256-bit vectors of i8 and i16
16676 EVT OpVT = LHS.getValueType();
16677 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16678 (OpVT.getVectorElementType() == MVT::i8 ||
16679 OpVT.getVectorElementType() == MVT::i16)) {
16680 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16681 DCI.AddToWorklist(Cond.getNode());
16682 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16683 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016684 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016685 // If this is a select between two integer constants, try to do some
16686 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016687 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16688 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016689 // Don't do this for crazy integer types.
16690 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16691 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016692 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016693 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016694
Chris Lattnercee56e72009-03-13 05:53:31 +000016695 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016696 // Efficiently invertible.
16697 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16698 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16699 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16700 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016701 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016702 }
Eric Christopherfd179292009-08-27 18:07:15 +000016703
Chris Lattnerd1980a52009-03-12 06:52:53 +000016704 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016705 if (FalseC->getAPIntValue() == 0 &&
16706 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016707 if (NeedsCondInvert) // Invert the condition if needed.
16708 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16709 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016710
Chris Lattnerd1980a52009-03-12 06:52:53 +000016711 // Zero extend the condition if needed.
16712 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016713
Chris Lattnercee56e72009-03-13 05:53:31 +000016714 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016715 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016716 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016717 }
Eric Christopherfd179292009-08-27 18:07:15 +000016718
Chris Lattner97a29a52009-03-13 05:22:11 +000016719 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016720 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016721 if (NeedsCondInvert) // Invert the condition if needed.
16722 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16723 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016724
Chris Lattner97a29a52009-03-13 05:22:11 +000016725 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016726 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16727 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016728 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016729 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016730 }
Eric Christopherfd179292009-08-27 18:07:15 +000016731
Chris Lattnercee56e72009-03-13 05:53:31 +000016732 // Optimize cases that will turn into an LEA instruction. This requires
16733 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016734 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016735 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016736 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016737
Chris Lattnercee56e72009-03-13 05:53:31 +000016738 bool isFastMultiplier = false;
16739 if (Diff < 10) {
16740 switch ((unsigned char)Diff) {
16741 default: break;
16742 case 1: // result = add base, cond
16743 case 2: // result = lea base( , cond*2)
16744 case 3: // result = lea base(cond, cond*2)
16745 case 4: // result = lea base( , cond*4)
16746 case 5: // result = lea base(cond, cond*4)
16747 case 8: // result = lea base( , cond*8)
16748 case 9: // result = lea base(cond, cond*8)
16749 isFastMultiplier = true;
16750 break;
16751 }
16752 }
Eric Christopherfd179292009-08-27 18:07:15 +000016753
Chris Lattnercee56e72009-03-13 05:53:31 +000016754 if (isFastMultiplier) {
16755 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16756 if (NeedsCondInvert) // Invert the condition if needed.
16757 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16758 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016759
Chris Lattnercee56e72009-03-13 05:53:31 +000016760 // Zero extend the condition if needed.
16761 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16762 Cond);
16763 // Scale the condition by the difference.
16764 if (Diff != 1)
16765 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16766 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016767
Chris Lattnercee56e72009-03-13 05:53:31 +000016768 // Add the base if non-zero.
16769 if (FalseC->getAPIntValue() != 0)
16770 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16771 SDValue(FalseC, 0));
16772 return Cond;
16773 }
Eric Christopherfd179292009-08-27 18:07:15 +000016774 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016775 }
16776 }
Eric Christopherfd179292009-08-27 18:07:15 +000016777
Evan Cheng56f582d2012-01-04 01:41:39 +000016778 // Canonicalize max and min:
16779 // (x > y) ? x : y -> (x >= y) ? x : y
16780 // (x < y) ? x : y -> (x <= y) ? x : y
16781 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16782 // the need for an extra compare
16783 // against zero. e.g.
16784 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16785 // subl %esi, %edi
16786 // testl %edi, %edi
16787 // movl $0, %eax
16788 // cmovgl %edi, %eax
16789 // =>
16790 // xorl %eax, %eax
16791 // subl %esi, $edi
16792 // cmovsl %eax, %edi
16793 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16794 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16795 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16796 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16797 switch (CC) {
16798 default: break;
16799 case ISD::SETLT:
16800 case ISD::SETGT: {
16801 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016802 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016803 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16804 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16805 }
16806 }
16807 }
16808
Juergen Ributzkad7174712013-09-05 23:02:56 +000016809 // Early exit check
16810 if (!TLI.isTypeLegal(VT))
16811 return SDValue();
16812
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016813 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016814 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016815 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16816 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16817 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16818 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16819
16820 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16821 // left side invert the predicate to simplify logic below.
16822 SDValue Other;
16823 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16824 Other = RHS;
16825 CC = ISD::getSetCCInverse(CC, true);
16826 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16827 Other = LHS;
16828 }
16829
16830 if (Other.getNode() && Other->getNumOperands() == 2 &&
16831 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16832 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16833 SDValue CondRHS = Cond->getOperand(1);
16834
16835 // Look for a general sub with unsigned saturation first.
16836 // x >= y ? x-y : 0 --> subus x, y
16837 // x > y ? x-y : 0 --> subus x, y
16838 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16839 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16840 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16841
16842 // If the RHS is a constant we have to reverse the const canonicalization.
16843 // x > C-1 ? x+-C : 0 --> subus x, C
16844 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16845 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16846 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016847 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016848 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016849 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016850 }
16851
16852 // Another special case: If C was a sign bit, the sub has been
16853 // canonicalized into a xor.
16854 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16855 // it's safe to decanonicalize the xor?
16856 // x s< 0 ? x^C : 0 --> subus x, C
16857 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16858 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16859 isSplatVector(OpRHS.getNode())) {
16860 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16861 if (A.isSignBit())
16862 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16863 }
16864 }
16865 }
16866
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016867 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016868 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016869 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16870 unsigned Opc = ret.first;
16871 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016872
16873 if (Opc && NeedSplit) {
16874 unsigned NumElems = VT.getVectorNumElements();
16875 // Extract the LHS vectors
16876 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16877 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16878
16879 // Extract the RHS vectors
16880 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16881 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16882
16883 // Create min/max for each subvector
16884 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16885 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16886
16887 // Merge the result
16888 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16889 } else if (Opc)
16890 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16891 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016892
Michael Liaobf538412013-04-11 05:15:54 +000016893 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016894 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16895 // Check if SETCC has already been promoted
16896 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016897
16898 assert(Cond.getValueType().isVector() &&
16899 "vector select expects a vector selector!");
16900
16901 EVT IntVT = Cond.getValueType();
16902 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16903 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16904
16905 if (!TValIsAllOnes && !FValIsAllZeros) {
16906 // Try invert the condition if true value is not all 1s and false value
16907 // is not all 0s.
16908 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16909 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16910
16911 if (TValIsAllZeros || FValIsAllOnes) {
16912 SDValue CC = Cond.getOperand(2);
16913 ISD::CondCode NewCC =
16914 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16915 Cond.getOperand(0).getValueType().isInteger());
16916 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16917 std::swap(LHS, RHS);
16918 TValIsAllOnes = FValIsAllOnes;
16919 FValIsAllZeros = TValIsAllZeros;
16920 }
16921 }
16922
16923 if (TValIsAllOnes || FValIsAllZeros) {
16924 SDValue Ret;
16925
16926 if (TValIsAllOnes && FValIsAllZeros)
16927 Ret = Cond;
16928 else if (TValIsAllOnes)
16929 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16930 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16931 else if (FValIsAllZeros)
16932 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16933 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16934
16935 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16936 }
16937 }
16938
Nadav Rotemcc616562012-01-15 19:27:55 +000016939 // If we know that this node is legal then we know that it is going to be
16940 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16941 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16942 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000016943 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016944 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016945 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016946
16947 // Don't optimize vector selects that map to mask-registers.
16948 if (BitWidth == 1)
16949 return SDValue();
16950
Nadav Rotemcc616562012-01-15 19:27:55 +000016951 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16952 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16953
16954 APInt KnownZero, KnownOne;
16955 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16956 DCI.isBeforeLegalizeOps());
16957 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16958 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16959 DCI.CommitTargetLoweringOpt(TLO);
16960 }
16961
Dan Gohman475871a2008-07-27 21:46:04 +000016962 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016963}
16964
Michael Liao2a33cec2012-08-10 19:58:13 +000016965// Check whether a boolean test is testing a boolean value generated by
16966// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16967// code.
16968//
16969// Simplify the following patterns:
16970// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16971// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16972// to (Op EFLAGS Cond)
16973//
16974// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16975// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16976// to (Op EFLAGS !Cond)
16977//
16978// where Op could be BRCOND or CMOV.
16979//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016980static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016981 // Quit if not CMP and SUB with its value result used.
16982 if (Cmp.getOpcode() != X86ISD::CMP &&
16983 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16984 return SDValue();
16985
16986 // Quit if not used as a boolean value.
16987 if (CC != X86::COND_E && CC != X86::COND_NE)
16988 return SDValue();
16989
16990 // Check CMP operands. One of them should be 0 or 1 and the other should be
16991 // an SetCC or extended from it.
16992 SDValue Op1 = Cmp.getOperand(0);
16993 SDValue Op2 = Cmp.getOperand(1);
16994
16995 SDValue SetCC;
16996 const ConstantSDNode* C = 0;
16997 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016998 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016999
17000 if ((C = dyn_cast<ConstantSDNode>(Op1)))
17001 SetCC = Op2;
17002 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17003 SetCC = Op1;
17004 else // Quit if all operands are not constants.
17005 return SDValue();
17006
Michael Liao959ddbb2013-04-11 04:43:09 +000017007 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000017008 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000017009 checkAgainstTrue = true;
17010 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000017011 // Quit if the constant is neither 0 or 1.
17012 return SDValue();
17013
Michael Liao959ddbb2013-04-11 04:43:09 +000017014 bool truncatedToBoolWithAnd = false;
17015 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17016 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17017 SetCC.getOpcode() == ISD::TRUNCATE ||
17018 SetCC.getOpcode() == ISD::AND) {
17019 if (SetCC.getOpcode() == ISD::AND) {
17020 int OpIdx = -1;
17021 ConstantSDNode *CS;
17022 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17023 CS->getZExtValue() == 1)
17024 OpIdx = 1;
17025 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17026 CS->getZExtValue() == 1)
17027 OpIdx = 0;
17028 if (OpIdx == -1)
17029 break;
17030 SetCC = SetCC.getOperand(OpIdx);
17031 truncatedToBoolWithAnd = true;
17032 } else
17033 SetCC = SetCC.getOperand(0);
17034 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017035
Michael Liao7fdc66b2012-09-10 16:36:16 +000017036 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000017037 case X86ISD::SETCC_CARRY:
17038 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17039 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17040 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17041 // truncated to i1 using 'and'.
17042 if (checkAgainstTrue && !truncatedToBoolWithAnd)
17043 break;
17044 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17045 "Invalid use of SETCC_CARRY!");
17046 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000017047 case X86ISD::SETCC:
17048 // Set the condition code or opposite one if necessary.
17049 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17050 if (needOppositeCond)
17051 CC = X86::GetOppositeBranchCondition(CC);
17052 return SetCC.getOperand(1);
17053 case X86ISD::CMOV: {
17054 // Check whether false/true value has canonical one, i.e. 0 or 1.
17055 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17056 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17057 // Quit if true value is not a constant.
17058 if (!TVal)
17059 return SDValue();
17060 // Quit if false value is not a constant.
17061 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017062 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017063 // Skip 'zext' or 'trunc' node.
17064 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17065 Op.getOpcode() == ISD::TRUNCATE)
17066 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017067 // A special case for rdrand/rdseed, where 0 is set if false cond is
17068 // found.
17069 if ((Op.getOpcode() != X86ISD::RDRAND &&
17070 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017071 return SDValue();
17072 }
17073 // Quit if false value is not the constant 0 or 1.
17074 bool FValIsFalse = true;
17075 if (FVal && FVal->getZExtValue() != 0) {
17076 if (FVal->getZExtValue() != 1)
17077 return SDValue();
17078 // If FVal is 1, opposite cond is needed.
17079 needOppositeCond = !needOppositeCond;
17080 FValIsFalse = false;
17081 }
17082 // Quit if TVal is not the constant opposite of FVal.
17083 if (FValIsFalse && TVal->getZExtValue() != 1)
17084 return SDValue();
17085 if (!FValIsFalse && TVal->getZExtValue() != 0)
17086 return SDValue();
17087 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17088 if (needOppositeCond)
17089 CC = X86::GetOppositeBranchCondition(CC);
17090 return SetCC.getOperand(3);
17091 }
17092 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017093
Michael Liao7fdc66b2012-09-10 16:36:16 +000017094 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017095}
17096
Chris Lattnerd1980a52009-03-12 06:52:53 +000017097/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17098static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017099 TargetLowering::DAGCombinerInfo &DCI,
17100 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017101 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017102
Chris Lattnerd1980a52009-03-12 06:52:53 +000017103 // If the flag operand isn't dead, don't touch this CMOV.
17104 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17105 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017106
Evan Chengb5a55d92011-05-24 01:48:22 +000017107 SDValue FalseOp = N->getOperand(0);
17108 SDValue TrueOp = N->getOperand(1);
17109 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17110 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017111
Evan Chengb5a55d92011-05-24 01:48:22 +000017112 if (CC == X86::COND_E || CC == X86::COND_NE) {
17113 switch (Cond.getOpcode()) {
17114 default: break;
17115 case X86ISD::BSR:
17116 case X86ISD::BSF:
17117 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17118 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17119 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17120 }
17121 }
17122
Michael Liao2a33cec2012-08-10 19:58:13 +000017123 SDValue Flags;
17124
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017125 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017126 if (Flags.getNode() &&
17127 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017128 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017129 SDValue Ops[] = { FalseOp, TrueOp,
17130 DAG.getConstant(CC, MVT::i8), Flags };
17131 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17132 Ops, array_lengthof(Ops));
17133 }
17134
Chris Lattnerd1980a52009-03-12 06:52:53 +000017135 // If this is a select between two integer constants, try to do some
17136 // optimizations. Note that the operands are ordered the opposite of SELECT
17137 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017138 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17139 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017140 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17141 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017142 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17143 CC = X86::GetOppositeBranchCondition(CC);
17144 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017145 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017146 }
Eric Christopherfd179292009-08-27 18:07:15 +000017147
Chris Lattnerd1980a52009-03-12 06:52:53 +000017148 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017149 // This is efficient for any integer data type (including i8/i16) and
17150 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017151 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017152 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17153 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017154
Chris Lattnerd1980a52009-03-12 06:52:53 +000017155 // Zero extend the condition if needed.
17156 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017157
Chris Lattnerd1980a52009-03-12 06:52:53 +000017158 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17159 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017160 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017161 if (N->getNumValues() == 2) // Dead flag value?
17162 return DCI.CombineTo(N, Cond, SDValue());
17163 return Cond;
17164 }
Eric Christopherfd179292009-08-27 18:07:15 +000017165
Chris Lattnercee56e72009-03-13 05:53:31 +000017166 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17167 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017168 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017169 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17170 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017171
Chris Lattner97a29a52009-03-13 05:22:11 +000017172 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017173 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17174 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017175 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17176 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017177
Chris Lattner97a29a52009-03-13 05:22:11 +000017178 if (N->getNumValues() == 2) // Dead flag value?
17179 return DCI.CombineTo(N, Cond, SDValue());
17180 return Cond;
17181 }
Eric Christopherfd179292009-08-27 18:07:15 +000017182
Chris Lattnercee56e72009-03-13 05:53:31 +000017183 // Optimize cases that will turn into an LEA instruction. This requires
17184 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017185 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017186 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017187 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017188
Chris Lattnercee56e72009-03-13 05:53:31 +000017189 bool isFastMultiplier = false;
17190 if (Diff < 10) {
17191 switch ((unsigned char)Diff) {
17192 default: break;
17193 case 1: // result = add base, cond
17194 case 2: // result = lea base( , cond*2)
17195 case 3: // result = lea base(cond, cond*2)
17196 case 4: // result = lea base( , cond*4)
17197 case 5: // result = lea base(cond, cond*4)
17198 case 8: // result = lea base( , cond*8)
17199 case 9: // result = lea base(cond, cond*8)
17200 isFastMultiplier = true;
17201 break;
17202 }
17203 }
Eric Christopherfd179292009-08-27 18:07:15 +000017204
Chris Lattnercee56e72009-03-13 05:53:31 +000017205 if (isFastMultiplier) {
17206 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017207 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17208 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017209 // Zero extend the condition if needed.
17210 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17211 Cond);
17212 // Scale the condition by the difference.
17213 if (Diff != 1)
17214 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17215 DAG.getConstant(Diff, Cond.getValueType()));
17216
17217 // Add the base if non-zero.
17218 if (FalseC->getAPIntValue() != 0)
17219 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17220 SDValue(FalseC, 0));
17221 if (N->getNumValues() == 2) // Dead flag value?
17222 return DCI.CombineTo(N, Cond, SDValue());
17223 return Cond;
17224 }
Eric Christopherfd179292009-08-27 18:07:15 +000017225 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017226 }
17227 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017228
17229 // Handle these cases:
17230 // (select (x != c), e, c) -> select (x != c), e, x),
17231 // (select (x == c), c, e) -> select (x == c), x, e)
17232 // where the c is an integer constant, and the "select" is the combination
17233 // of CMOV and CMP.
17234 //
17235 // The rationale for this change is that the conditional-move from a constant
17236 // needs two instructions, however, conditional-move from a register needs
17237 // only one instruction.
17238 //
17239 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17240 // some instruction-combining opportunities. This opt needs to be
17241 // postponed as late as possible.
17242 //
17243 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17244 // the DCI.xxxx conditions are provided to postpone the optimization as
17245 // late as possible.
17246
17247 ConstantSDNode *CmpAgainst = 0;
17248 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17249 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017250 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017251
17252 if (CC == X86::COND_NE &&
17253 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17254 CC = X86::GetOppositeBranchCondition(CC);
17255 std::swap(TrueOp, FalseOp);
17256 }
17257
17258 if (CC == X86::COND_E &&
17259 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17260 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17261 DAG.getConstant(CC, MVT::i8), Cond };
17262 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17263 array_lengthof(Ops));
17264 }
17265 }
17266 }
17267
Chris Lattnerd1980a52009-03-12 06:52:53 +000017268 return SDValue();
17269}
17270
Evan Cheng0b0cd912009-03-28 05:57:29 +000017271/// PerformMulCombine - Optimize a single multiply with constant into two
17272/// in order to implement it with two cheaper instructions, e.g.
17273/// LEA + SHL, LEA + LEA.
17274static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17275 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017276 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17277 return SDValue();
17278
Owen Andersone50ed302009-08-10 22:56:29 +000017279 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017280 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017281 return SDValue();
17282
17283 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17284 if (!C)
17285 return SDValue();
17286 uint64_t MulAmt = C->getZExtValue();
17287 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17288 return SDValue();
17289
17290 uint64_t MulAmt1 = 0;
17291 uint64_t MulAmt2 = 0;
17292 if ((MulAmt % 9) == 0) {
17293 MulAmt1 = 9;
17294 MulAmt2 = MulAmt / 9;
17295 } else if ((MulAmt % 5) == 0) {
17296 MulAmt1 = 5;
17297 MulAmt2 = MulAmt / 5;
17298 } else if ((MulAmt % 3) == 0) {
17299 MulAmt1 = 3;
17300 MulAmt2 = MulAmt / 3;
17301 }
17302 if (MulAmt2 &&
17303 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017304 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017305
17306 if (isPowerOf2_64(MulAmt2) &&
17307 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17308 // If second multiplifer is pow2, issue it first. We want the multiply by
17309 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17310 // is an add.
17311 std::swap(MulAmt1, MulAmt2);
17312
17313 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017314 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017315 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017316 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017317 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017318 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017319 DAG.getConstant(MulAmt1, VT));
17320
Eric Christopherfd179292009-08-27 18:07:15 +000017321 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017322 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017323 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017324 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017325 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017326 DAG.getConstant(MulAmt2, VT));
17327
17328 // Do not add new nodes to DAG combiner worklist.
17329 DCI.CombineTo(N, NewMul, false);
17330 }
17331 return SDValue();
17332}
17333
Evan Chengad9c0a32009-12-15 00:53:42 +000017334static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17335 SDValue N0 = N->getOperand(0);
17336 SDValue N1 = N->getOperand(1);
17337 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17338 EVT VT = N0.getValueType();
17339
17340 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17341 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017342 if (VT.isInteger() && !VT.isVector() &&
17343 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017344 N0.getOperand(1).getOpcode() == ISD::Constant) {
17345 SDValue N00 = N0.getOperand(0);
17346 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17347 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17348 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17349 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17350 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17351 APInt ShAmt = N1C->getAPIntValue();
17352 Mask = Mask.shl(ShAmt);
17353 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017354 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017355 N00, DAG.getConstant(Mask, VT));
17356 }
17357 }
17358
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017359 // Hardware support for vector shifts is sparse which makes us scalarize the
17360 // vector operations in many cases. Also, on sandybridge ADD is faster than
17361 // shl.
17362 // (shl V, 1) -> add V,V
17363 if (isSplatVector(N1.getNode())) {
17364 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17365 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17366 // We shift all of the values by one. In many cases we do not have
17367 // hardware support for this operation. This is better expressed as an ADD
17368 // of two values.
17369 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017370 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017371 }
17372 }
17373
Evan Chengad9c0a32009-12-15 00:53:42 +000017374 return SDValue();
17375}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017376
Stephen Linfff96732013-07-12 15:31:36 +000017377/// \brief Returns a vector of 0s if the node in input is a vector logical
17378/// shift by a constant amount which is known to be bigger than or equal
17379/// to the vector element size in bits.
17380static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17381 const X86Subtarget *Subtarget) {
17382 EVT VT = N->getValueType(0);
17383
17384 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17385 (!Subtarget->hasInt256() ||
17386 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17387 return SDValue();
17388
17389 SDValue Amt = N->getOperand(1);
17390 SDLoc DL(N);
17391 if (isSplatVector(Amt.getNode())) {
17392 SDValue SclrAmt = Amt->getOperand(0);
17393 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17394 APInt ShiftAmt = C->getAPIntValue();
17395 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17396
17397 // SSE2/AVX2 logical shifts always return a vector of 0s
17398 // if the shift amount is bigger than or equal to
17399 // the element size. The constant shift amount will be
17400 // encoded as a 8-bit immediate.
17401 if (ShiftAmt.trunc(8).uge(MaxAmount))
17402 return getZeroVector(VT, Subtarget, DAG, DL);
17403 }
17404 }
17405
17406 return SDValue();
17407}
17408
Nadav Rotem0fb65232013-05-04 23:24:56 +000017409/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017410static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017411 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017412 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017413 if (N->getOpcode() == ISD::SHL) {
17414 SDValue V = PerformSHLCombine(N, DAG);
17415 if (V.getNode()) return V;
17416 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017417
Stephen Linfff96732013-07-12 15:31:36 +000017418 if (N->getOpcode() != ISD::SRA) {
17419 // Try to fold this logical shift into a zero vector.
17420 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17421 if (V.getNode()) return V;
17422 }
17423
Michael Liao42317cc2013-03-20 02:33:21 +000017424 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017425}
17426
Stuart Hastings865f0932011-06-03 23:53:54 +000017427// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17428// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17429// and friends. Likewise for OR -> CMPNEQSS.
17430static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17431 TargetLowering::DAGCombinerInfo &DCI,
17432 const X86Subtarget *Subtarget) {
17433 unsigned opcode;
17434
17435 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17436 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017437 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017438 SDValue N0 = N->getOperand(0);
17439 SDValue N1 = N->getOperand(1);
17440 SDValue CMP0 = N0->getOperand(1);
17441 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017442 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017443
17444 // The SETCCs should both refer to the same CMP.
17445 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17446 return SDValue();
17447
17448 SDValue CMP00 = CMP0->getOperand(0);
17449 SDValue CMP01 = CMP0->getOperand(1);
17450 EVT VT = CMP00.getValueType();
17451
17452 if (VT == MVT::f32 || VT == MVT::f64) {
17453 bool ExpectingFlags = false;
17454 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017455 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017456 !ExpectingFlags && UI != UE; ++UI)
17457 switch (UI->getOpcode()) {
17458 default:
17459 case ISD::BR_CC:
17460 case ISD::BRCOND:
17461 case ISD::SELECT:
17462 ExpectingFlags = true;
17463 break;
17464 case ISD::CopyToReg:
17465 case ISD::SIGN_EXTEND:
17466 case ISD::ZERO_EXTEND:
17467 case ISD::ANY_EXTEND:
17468 break;
17469 }
17470
17471 if (!ExpectingFlags) {
17472 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17473 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17474
17475 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17476 X86::CondCode tmp = cc0;
17477 cc0 = cc1;
17478 cc1 = tmp;
17479 }
17480
17481 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17482 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17483 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17484 X86ISD::NodeType NTOperator = is64BitFP ?
17485 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17486 // FIXME: need symbolic constants for these magic numbers.
17487 // See X86ATTInstPrinter.cpp:printSSECC().
17488 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17489 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17490 DAG.getConstant(x86cc, MVT::i8));
17491 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17492 OnesOrZeroesF);
17493 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17494 DAG.getConstant(1, MVT::i32));
17495 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17496 return OneBitOfTruth;
17497 }
17498 }
17499 }
17500 }
17501 return SDValue();
17502}
17503
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017504/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17505/// so it can be folded inside ANDNP.
17506static bool CanFoldXORWithAllOnes(const SDNode *N) {
17507 EVT VT = N->getValueType(0);
17508
17509 // Match direct AllOnes for 128 and 256-bit vectors
17510 if (ISD::isBuildVectorAllOnes(N))
17511 return true;
17512
17513 // Look through a bit convert.
17514 if (N->getOpcode() == ISD::BITCAST)
17515 N = N->getOperand(0).getNode();
17516
17517 // Sometimes the operand may come from a insert_subvector building a 256-bit
17518 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017519 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017520 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17521 SDValue V1 = N->getOperand(0);
17522 SDValue V2 = N->getOperand(1);
17523
17524 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17525 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17526 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17527 ISD::isBuildVectorAllOnes(V2.getNode()))
17528 return true;
17529 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017530
17531 return false;
17532}
17533
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017534// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17535// register. In most cases we actually compare or select YMM-sized registers
17536// and mixing the two types creates horrible code. This method optimizes
17537// some of the transition sequences.
17538static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17539 TargetLowering::DAGCombinerInfo &DCI,
17540 const X86Subtarget *Subtarget) {
17541 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017542 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017543 return SDValue();
17544
17545 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17546 N->getOpcode() == ISD::ZERO_EXTEND ||
17547 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17548
17549 SDValue Narrow = N->getOperand(0);
17550 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017551 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017552 return SDValue();
17553
17554 if (Narrow->getOpcode() != ISD::XOR &&
17555 Narrow->getOpcode() != ISD::AND &&
17556 Narrow->getOpcode() != ISD::OR)
17557 return SDValue();
17558
17559 SDValue N0 = Narrow->getOperand(0);
17560 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017561 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017562
17563 // The Left side has to be a trunc.
17564 if (N0.getOpcode() != ISD::TRUNCATE)
17565 return SDValue();
17566
17567 // The type of the truncated inputs.
17568 EVT WideVT = N0->getOperand(0)->getValueType(0);
17569 if (WideVT != VT)
17570 return SDValue();
17571
17572 // The right side has to be a 'trunc' or a constant vector.
17573 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17574 bool RHSConst = (isSplatVector(N1.getNode()) &&
17575 isa<ConstantSDNode>(N1->getOperand(0)));
17576 if (!RHSTrunc && !RHSConst)
17577 return SDValue();
17578
17579 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17580
17581 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17582 return SDValue();
17583
17584 // Set N0 and N1 to hold the inputs to the new wide operation.
17585 N0 = N0->getOperand(0);
17586 if (RHSConst) {
17587 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17588 N1->getOperand(0));
17589 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17590 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17591 } else if (RHSTrunc) {
17592 N1 = N1->getOperand(0);
17593 }
17594
17595 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017596 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017597 unsigned Opcode = N->getOpcode();
17598 switch (Opcode) {
17599 case ISD::ANY_EXTEND:
17600 return Op;
17601 case ISD::ZERO_EXTEND: {
17602 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17603 APInt Mask = APInt::getAllOnesValue(InBits);
17604 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17605 return DAG.getNode(ISD::AND, DL, VT,
17606 Op, DAG.getConstant(Mask, VT));
17607 }
17608 case ISD::SIGN_EXTEND:
17609 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17610 Op, DAG.getValueType(NarrowVT));
17611 default:
17612 llvm_unreachable("Unexpected opcode");
17613 }
17614}
17615
Nate Begemanb65c1752010-12-17 22:55:37 +000017616static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17617 TargetLowering::DAGCombinerInfo &DCI,
17618 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017619 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017620 if (DCI.isBeforeLegalizeOps())
17621 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017622
Stuart Hastings865f0932011-06-03 23:53:54 +000017623 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17624 if (R.getNode())
17625 return R;
17626
Craig Topperb6ac30a2013-08-30 06:52:21 +000017627 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017628 // BLSI is X & (-X)
17629 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017630 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017631 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017632 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017633 SDValue N0 = N->getOperand(0);
17634 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017635 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017636
Craig Topperb6ac30a2013-08-30 06:52:21 +000017637 if (Subtarget->hasBMI()) {
17638 // Check LHS for neg
17639 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17640 isZero(N0.getOperand(0)))
17641 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017642
Craig Topperb6ac30a2013-08-30 06:52:21 +000017643 // Check RHS for neg
17644 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17645 isZero(N1.getOperand(0)))
17646 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017647
Craig Topperb6ac30a2013-08-30 06:52:21 +000017648 // Check LHS for X-1
17649 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17650 isAllOnes(N0.getOperand(1)))
17651 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017652
Craig Topperb6ac30a2013-08-30 06:52:21 +000017653 // Check RHS for X-1
17654 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17655 isAllOnes(N1.getOperand(1)))
17656 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17657 }
17658
17659 if (Subtarget->hasBMI2()) {
17660 // Check for (and (add (shl 1, Y), -1), X)
17661 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17662 SDValue N00 = N0.getOperand(0);
17663 if (N00.getOpcode() == ISD::SHL) {
17664 SDValue N001 = N00.getOperand(1);
17665 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17666 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17667 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017668 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017669 }
17670 }
17671
17672 // Check for (and X, (add (shl 1, Y), -1))
17673 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17674 SDValue N10 = N1.getOperand(0);
17675 if (N10.getOpcode() == ISD::SHL) {
17676 SDValue N101 = N10.getOperand(1);
17677 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17678 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17679 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017680 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017681 }
17682 }
17683 }
Craig Topperb4c94572011-10-21 06:55:01 +000017684
Craig Topperfafe4bb2013-10-03 04:16:45 +000017685 // Check for BEXTR.
17686 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17687 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17688 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17689 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17690 if (MaskNode && ShiftNode) {
17691 uint64_t Mask = MaskNode->getZExtValue();
17692 uint64_t Shift = ShiftNode->getZExtValue();
17693 if (isMask_64(Mask)) {
17694 uint64_t MaskSize = CountPopulation_64(Mask);
17695 if (Shift + MaskSize <= VT.getSizeInBits())
17696 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17697 DAG.getConstant(Shift | (MaskSize << 8), VT));
17698 }
17699 }
17700 } // BEXTR
17701
Craig Topper54a11172011-10-14 07:06:56 +000017702 return SDValue();
17703 }
17704
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017705 // Want to form ANDNP nodes:
17706 // 1) In the hopes of then easily combining them with OR and AND nodes
17707 // to form PBLEND/PSIGN.
17708 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017709 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017710 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017711
Nate Begemanb65c1752010-12-17 22:55:37 +000017712 SDValue N0 = N->getOperand(0);
17713 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017714 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017715
Nate Begemanb65c1752010-12-17 22:55:37 +000017716 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017717 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017718 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17719 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017720 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017721
17722 // Check RHS for vnot
17723 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017724 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17725 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017726 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017727
Nate Begemanb65c1752010-12-17 22:55:37 +000017728 return SDValue();
17729}
17730
Evan Cheng760d1942010-01-04 21:22:48 +000017731static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017732 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017733 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017734 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017735 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017736 return SDValue();
17737
Stuart Hastings865f0932011-06-03 23:53:54 +000017738 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17739 if (R.getNode())
17740 return R;
17741
Evan Cheng760d1942010-01-04 21:22:48 +000017742 SDValue N0 = N->getOperand(0);
17743 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017744
Nate Begemanb65c1752010-12-17 22:55:37 +000017745 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017746 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017747 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017748 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017749 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017750
Craig Topper1666cb62011-11-19 07:07:26 +000017751 // Canonicalize pandn to RHS
17752 if (N0.getOpcode() == X86ISD::ANDNP)
17753 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017754 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017755 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17756 SDValue Mask = N1.getOperand(0);
17757 SDValue X = N1.getOperand(1);
17758 SDValue Y;
17759 if (N0.getOperand(0) == Mask)
17760 Y = N0.getOperand(1);
17761 if (N0.getOperand(1) == Mask)
17762 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017763
Craig Topper1666cb62011-11-19 07:07:26 +000017764 // Check to see if the mask appeared in both the AND and ANDNP and
17765 if (!Y.getNode())
17766 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017767
Craig Topper1666cb62011-11-19 07:07:26 +000017768 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017769 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017770 if (Mask.getOpcode() == ISD::BITCAST)
17771 Mask = Mask.getOperand(0);
17772 if (X.getOpcode() == ISD::BITCAST)
17773 X = X.getOperand(0);
17774 if (Y.getOpcode() == ISD::BITCAST)
17775 Y = Y.getOperand(0);
17776
Craig Topper1666cb62011-11-19 07:07:26 +000017777 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017778
Craig Toppered2e13d2012-01-22 19:15:14 +000017779 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017780 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17781 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017782 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017783 unsigned SraAmt = ~0;
17784 if (Mask.getOpcode() == ISD::SRA) {
17785 SDValue Amt = Mask.getOperand(1);
17786 if (isSplatVector(Amt.getNode())) {
17787 SDValue SclrAmt = Amt->getOperand(0);
17788 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17789 SraAmt = C->getZExtValue();
17790 }
17791 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17792 SDValue SraC = Mask.getOperand(1);
17793 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17794 }
Craig Topper1666cb62011-11-19 07:07:26 +000017795 if ((SraAmt + 1) != EltBits)
17796 return SDValue();
17797
Andrew Trickac6d9be2013-05-25 02:42:55 +000017798 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017799
17800 // Now we know we at least have a plendvb with the mask val. See if
17801 // we can form a psignb/w/d.
17802 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017803 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17804 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017805 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17806 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17807 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017808 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017809 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017810 }
17811 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017812 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017813 return SDValue();
17814
17815 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17816
17817 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17818 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17819 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017820 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017821 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017822 }
17823 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017824
Craig Topper1666cb62011-11-19 07:07:26 +000017825 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17826 return SDValue();
17827
Nate Begemanb65c1752010-12-17 22:55:37 +000017828 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017829 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17830 std::swap(N0, N1);
17831 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17832 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017833 if (!N0.hasOneUse() || !N1.hasOneUse())
17834 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017835
17836 SDValue ShAmt0 = N0.getOperand(1);
17837 if (ShAmt0.getValueType() != MVT::i8)
17838 return SDValue();
17839 SDValue ShAmt1 = N1.getOperand(1);
17840 if (ShAmt1.getValueType() != MVT::i8)
17841 return SDValue();
17842 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17843 ShAmt0 = ShAmt0.getOperand(0);
17844 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17845 ShAmt1 = ShAmt1.getOperand(0);
17846
Andrew Trickac6d9be2013-05-25 02:42:55 +000017847 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017848 unsigned Opc = X86ISD::SHLD;
17849 SDValue Op0 = N0.getOperand(0);
17850 SDValue Op1 = N1.getOperand(0);
17851 if (ShAmt0.getOpcode() == ISD::SUB) {
17852 Opc = X86ISD::SHRD;
17853 std::swap(Op0, Op1);
17854 std::swap(ShAmt0, ShAmt1);
17855 }
17856
Evan Cheng8b1190a2010-04-28 01:18:01 +000017857 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017858 if (ShAmt1.getOpcode() == ISD::SUB) {
17859 SDValue Sum = ShAmt1.getOperand(0);
17860 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017861 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17862 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17863 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17864 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017865 return DAG.getNode(Opc, DL, VT,
17866 Op0, Op1,
17867 DAG.getNode(ISD::TRUNCATE, DL,
17868 MVT::i8, ShAmt0));
17869 }
17870 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17871 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17872 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017873 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017874 return DAG.getNode(Opc, DL, VT,
17875 N0.getOperand(0), N1.getOperand(0),
17876 DAG.getNode(ISD::TRUNCATE, DL,
17877 MVT::i8, ShAmt0));
17878 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017879
Evan Cheng760d1942010-01-04 21:22:48 +000017880 return SDValue();
17881}
17882
Manman Ren92363622012-06-07 22:39:10 +000017883// Generate NEG and CMOV for integer abs.
17884static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17885 EVT VT = N->getValueType(0);
17886
17887 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17888 // 8-bit integer abs to NEG and CMOV.
17889 if (VT.isInteger() && VT.getSizeInBits() == 8)
17890 return SDValue();
17891
17892 SDValue N0 = N->getOperand(0);
17893 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017894 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017895
17896 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17897 // and change it to SUB and CMOV.
17898 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17899 N0.getOpcode() == ISD::ADD &&
17900 N0.getOperand(1) == N1 &&
17901 N1.getOpcode() == ISD::SRA &&
17902 N1.getOperand(0) == N0.getOperand(0))
17903 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17904 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17905 // Generate SUB & CMOV.
17906 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17907 DAG.getConstant(0, VT), N0.getOperand(0));
17908
17909 SDValue Ops[] = { N0.getOperand(0), Neg,
17910 DAG.getConstant(X86::COND_GE, MVT::i8),
17911 SDValue(Neg.getNode(), 1) };
17912 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17913 Ops, array_lengthof(Ops));
17914 }
17915 return SDValue();
17916}
17917
Craig Topper3738ccd2011-12-27 06:27:23 +000017918// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017919static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17920 TargetLowering::DAGCombinerInfo &DCI,
17921 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017922 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017923 if (DCI.isBeforeLegalizeOps())
17924 return SDValue();
17925
Manman Ren45d53b82012-06-08 18:58:26 +000017926 if (Subtarget->hasCMov()) {
17927 SDValue RV = performIntegerAbsCombine(N, DAG);
17928 if (RV.getNode())
17929 return RV;
17930 }
Manman Ren92363622012-06-07 22:39:10 +000017931
17932 // Try forming BMI if it is available.
17933 if (!Subtarget->hasBMI())
17934 return SDValue();
17935
Craig Topperb4c94572011-10-21 06:55:01 +000017936 if (VT != MVT::i32 && VT != MVT::i64)
17937 return SDValue();
17938
Craig Topper3738ccd2011-12-27 06:27:23 +000017939 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17940
Craig Topperb4c94572011-10-21 06:55:01 +000017941 // Create BLSMSK instructions by finding X ^ (X-1)
17942 SDValue N0 = N->getOperand(0);
17943 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017944 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017945
17946 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17947 isAllOnes(N0.getOperand(1)))
17948 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17949
17950 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17951 isAllOnes(N1.getOperand(1)))
17952 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17953
17954 return SDValue();
17955}
17956
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017957/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17958static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017959 TargetLowering::DAGCombinerInfo &DCI,
17960 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017961 LoadSDNode *Ld = cast<LoadSDNode>(N);
17962 EVT RegVT = Ld->getValueType(0);
17963 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017964 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017965 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017966 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017967
Michael Liaod4584c92013-03-25 23:50:10 +000017968 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017969 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017970 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017971 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017972 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017973 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017974 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017975 if (NumElems < 2)
17976 return SDValue();
17977
Nadav Rotem48177ac2013-01-18 23:10:30 +000017978 SDValue Ptr = Ld->getBasePtr();
17979 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17980
17981 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17982 NumElems/2);
17983 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17984 Ld->getPointerInfo(), Ld->isVolatile(),
17985 Ld->isNonTemporal(), Ld->isInvariant(),
17986 Alignment);
17987 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17988 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17989 Ld->getPointerInfo(), Ld->isVolatile(),
17990 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017991 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017992 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17993 Load1.getValue(1),
17994 Load2.getValue(1));
17995
17996 SDValue NewVec = DAG.getUNDEF(RegVT);
17997 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17998 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17999 return DCI.CombineTo(N, NewVec, TF, true);
18000 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018001
Nadav Rotemca6f2962011-09-18 19:00:23 +000018002 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000018003 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18004 // expansion is still better than scalar code.
18005 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18006 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018007 // TODO: It is possible to support ZExt by zeroing the undef values
18008 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000018009 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18010 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018011 assert(MemVT != RegVT && "Cannot extend to the same type");
18012 assert(MemVT.isVector() && "Must load a vector from memory");
18013
18014 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018015 unsigned MemSz = MemVT.getSizeInBits();
18016 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018017
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018018 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18019 return SDValue();
18020
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018021 // All sizes must be a power of two.
18022 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18023 return SDValue();
18024
18025 // Attempt to load the original value using scalar loads.
18026 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018027 MVT SclrLoadTy = MVT::i8;
18028 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18029 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18030 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018031 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018032 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018033 }
18034 }
18035
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018036 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18037 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18038 (64 <= MemSz))
18039 SclrLoadTy = MVT::f64;
18040
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018041 // Calculate the number of scalar loads that we need to perform
18042 // in order to load our vector from memory.
18043 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018044 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18045 return SDValue();
18046
18047 unsigned loadRegZize = RegSz;
18048 if (Ext == ISD::SEXTLOAD && RegSz == 256)
18049 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018050
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018051 // Represent our vector as a sequence of elements which are the
18052 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018053 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018054 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018055
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018056 // Represent the data using the same element type that is stored in
18057 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018058 EVT WideVecVT =
18059 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018060 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018061
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018062 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18063 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018064
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018065 // We can't shuffle using an illegal type.
18066 if (!TLI.isTypeLegal(WideVecVT))
18067 return SDValue();
18068
18069 SmallVector<SDValue, 8> Chains;
18070 SDValue Ptr = Ld->getBasePtr();
18071 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18072 TLI.getPointerTy());
18073 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18074
18075 for (unsigned i = 0; i < NumLoads; ++i) {
18076 // Perform a single load.
18077 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18078 Ptr, Ld->getPointerInfo(),
18079 Ld->isVolatile(), Ld->isNonTemporal(),
18080 Ld->isInvariant(), Ld->getAlignment());
18081 Chains.push_back(ScalarLoad.getValue(1));
18082 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18083 // another round of DAGCombining.
18084 if (i == 0)
18085 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18086 else
18087 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18088 ScalarLoad, DAG.getIntPtrConstant(i));
18089
18090 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18091 }
18092
18093 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18094 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018095
18096 // Bitcast the loaded value to a vector of the original element type, in
18097 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018098 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018099 unsigned SizeRatio = RegSz/MemSz;
18100
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018101 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018102 // If we have SSE4.1 we can directly emit a VSEXT node.
18103 if (Subtarget->hasSSE41()) {
18104 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18105 return DCI.CombineTo(N, Sext, TF, true);
18106 }
18107
18108 // Otherwise we'll shuffle the small elements in the high bits of the
18109 // larger type and perform an arithmetic shift. If the shift is not legal
18110 // it's better to scalarize.
18111 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18112 return SDValue();
18113
18114 // Redistribute the loaded elements into the different locations.
18115 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18116 for (unsigned i = 0; i != NumElems; ++i)
18117 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18118
18119 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18120 DAG.getUNDEF(WideVecVT),
18121 &ShuffleVec[0]);
18122
18123 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18124
18125 // Build the arithmetic shift.
18126 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18127 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018128 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18129 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018130
18131 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018132 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018133
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018134 // Redistribute the loaded elements into the different locations.
18135 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018136 for (unsigned i = 0; i != NumElems; ++i)
18137 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018138
18139 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018140 DAG.getUNDEF(WideVecVT),
18141 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018142
18143 // Bitcast to the requested type.
18144 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18145 // Replace the original load with the new sequence
18146 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018147 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018148 }
18149
18150 return SDValue();
18151}
18152
Chris Lattner149a4e52008-02-22 02:09:43 +000018153/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018154static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018155 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018156 StoreSDNode *St = cast<StoreSDNode>(N);
18157 EVT VT = St->getValue().getValueType();
18158 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018159 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018160 SDValue StoredVal = St->getOperand(1);
18161 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18162
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018163 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018164 // On Sandy Bridge, 256-bit memory operations are executed by two
18165 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18166 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018167 unsigned Alignment = St->getAlignment();
18168 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018169 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018170 StVT == VT && !IsAligned) {
18171 unsigned NumElems = VT.getVectorNumElements();
18172 if (NumElems < 2)
18173 return SDValue();
18174
18175 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18176 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018177
18178 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18179 SDValue Ptr0 = St->getBasePtr();
18180 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18181
18182 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18183 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018184 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018185 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18186 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018187 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018188 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018189 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18190 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018191
18192 // Optimize trunc store (of multiple scalars) to shuffle and store.
18193 // First, pack all of the elements in one place. Next, store to memory
18194 // in fewer chunks.
18195 if (St->isTruncatingStore() && VT.isVector()) {
18196 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18197 unsigned NumElems = VT.getVectorNumElements();
18198 assert(StVT != VT && "Cannot truncate to the same type");
18199 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18200 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18201
18202 // From, To sizes and ElemCount must be pow of two
18203 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018204 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018205 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018206 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018207
Nadav Rotem614061b2011-08-10 19:30:14 +000018208 unsigned SizeRatio = FromSz / ToSz;
18209
18210 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18211
18212 // Create a type on which we perform the shuffle
18213 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18214 StVT.getScalarType(), NumElems*SizeRatio);
18215
18216 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18217
18218 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18219 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018220 for (unsigned i = 0; i != NumElems; ++i)
18221 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018222
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018223 // Can't shuffle using an illegal type.
18224 if (!TLI.isTypeLegal(WideVecVT))
18225 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018226
18227 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018228 DAG.getUNDEF(WideVecVT),
18229 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018230 // At this point all of the data is stored at the bottom of the
18231 // register. We now need to save it to mem.
18232
18233 // Find the largest store unit
18234 MVT StoreType = MVT::i8;
18235 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18236 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18237 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018238 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018239 StoreType = Tp;
18240 }
18241
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018242 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18243 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18244 (64 <= NumElems * ToSz))
18245 StoreType = MVT::f64;
18246
Nadav Rotem614061b2011-08-10 19:30:14 +000018247 // Bitcast the original vector into a vector of store-size units
18248 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018249 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018250 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18251 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18252 SmallVector<SDValue, 8> Chains;
18253 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18254 TLI.getPointerTy());
18255 SDValue Ptr = St->getBasePtr();
18256
18257 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018258 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018259 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18260 StoreType, ShuffWide,
18261 DAG.getIntPtrConstant(i));
18262 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18263 St->getPointerInfo(), St->isVolatile(),
18264 St->isNonTemporal(), St->getAlignment());
18265 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18266 Chains.push_back(Ch);
18267 }
18268
18269 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18270 Chains.size());
18271 }
18272
Chris Lattner149a4e52008-02-22 02:09:43 +000018273 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18274 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018275 // A preferable solution to the general problem is to figure out the right
18276 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018277
18278 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018279 if (VT.getSizeInBits() != 64)
18280 return SDValue();
18281
Devang Patel578efa92009-06-05 21:57:13 +000018282 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018283 bool NoImplicitFloatOps = F->getAttributes().
18284 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018285 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018286 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018287 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018288 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018289 isa<LoadSDNode>(St->getValue()) &&
18290 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18291 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018292 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018293 LoadSDNode *Ld = 0;
18294 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018295 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018296 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018297 // Must be a store of a load. We currently handle two cases: the load
18298 // is a direct child, and it's under an intervening TokenFactor. It is
18299 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018300 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018301 Ld = cast<LoadSDNode>(St->getChain());
18302 else if (St->getValue().hasOneUse() &&
18303 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018304 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018305 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018306 TokenFactorIndex = i;
18307 Ld = cast<LoadSDNode>(St->getValue());
18308 } else
18309 Ops.push_back(ChainVal->getOperand(i));
18310 }
18311 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018312
Evan Cheng536e6672009-03-12 05:59:15 +000018313 if (!Ld || !ISD::isNormalLoad(Ld))
18314 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018315
Evan Cheng536e6672009-03-12 05:59:15 +000018316 // If this is not the MMX case, i.e. we are just turning i64 load/store
18317 // into f64 load/store, avoid the transformation if there are multiple
18318 // uses of the loaded value.
18319 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18320 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018321
Andrew Trickac6d9be2013-05-25 02:42:55 +000018322 SDLoc LdDL(Ld);
18323 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018324 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18325 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18326 // pair instead.
18327 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018328 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018329 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18330 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018331 Ld->isNonTemporal(), Ld->isInvariant(),
18332 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018333 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018334 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018335 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018336 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018337 Ops.size());
18338 }
Evan Cheng536e6672009-03-12 05:59:15 +000018339 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018340 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018341 St->isVolatile(), St->isNonTemporal(),
18342 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018343 }
Evan Cheng536e6672009-03-12 05:59:15 +000018344
18345 // Otherwise, lower to two pairs of 32-bit loads / stores.
18346 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018347 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18348 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018349
Owen Anderson825b72b2009-08-11 20:47:22 +000018350 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018351 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018352 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018353 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018354 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018355 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018356 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018357 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018358 MinAlign(Ld->getAlignment(), 4));
18359
18360 SDValue NewChain = LoLd.getValue(1);
18361 if (TokenFactorIndex != -1) {
18362 Ops.push_back(LoLd);
18363 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018364 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018365 Ops.size());
18366 }
18367
18368 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018369 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18370 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018371
18372 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018373 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018374 St->isVolatile(), St->isNonTemporal(),
18375 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018376 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018377 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018378 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018379 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018380 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018381 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018382 }
Dan Gohman475871a2008-07-27 21:46:04 +000018383 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018384}
18385
Duncan Sands17470be2011-09-22 20:15:48 +000018386/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18387/// and return the operands for the horizontal operation in LHS and RHS. A
18388/// horizontal operation performs the binary operation on successive elements
18389/// of its first operand, then on successive elements of its second operand,
18390/// returning the resulting values in a vector. For example, if
18391/// A = < float a0, float a1, float a2, float a3 >
18392/// and
18393/// B = < float b0, float b1, float b2, float b3 >
18394/// then the result of doing a horizontal operation on A and B is
18395/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18396/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18397/// A horizontal-op B, for some already available A and B, and if so then LHS is
18398/// set to A, RHS to B, and the routine returns 'true'.
18399/// Note that the binary operation should have the property that if one of the
18400/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018401static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018402 // Look for the following pattern: if
18403 // A = < float a0, float a1, float a2, float a3 >
18404 // B = < float b0, float b1, float b2, float b3 >
18405 // and
18406 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18407 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18408 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18409 // which is A horizontal-op B.
18410
18411 // At least one of the operands should be a vector shuffle.
18412 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18413 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18414 return false;
18415
Craig Topper5a0910b2013-08-15 02:33:50 +000018416 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018417
18418 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18419 "Unsupported vector type for horizontal add/sub");
18420
18421 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18422 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018423 unsigned NumElts = VT.getVectorNumElements();
18424 unsigned NumLanes = VT.getSizeInBits()/128;
18425 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018426 assert((NumLaneElts % 2 == 0) &&
18427 "Vector type should have an even number of elements in each lane");
18428 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018429
18430 // View LHS in the form
18431 // LHS = VECTOR_SHUFFLE A, B, LMask
18432 // If LHS is not a shuffle then pretend it is the shuffle
18433 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18434 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18435 // type VT.
18436 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018437 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018438 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18439 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18440 A = LHS.getOperand(0);
18441 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18442 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018443 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18444 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018445 } else {
18446 if (LHS.getOpcode() != ISD::UNDEF)
18447 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018448 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018449 LMask[i] = i;
18450 }
18451
18452 // Likewise, view RHS in the form
18453 // RHS = VECTOR_SHUFFLE C, D, RMask
18454 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018455 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018456 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18457 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18458 C = RHS.getOperand(0);
18459 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18460 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018461 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18462 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018463 } else {
18464 if (RHS.getOpcode() != ISD::UNDEF)
18465 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018466 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018467 RMask[i] = i;
18468 }
18469
18470 // Check that the shuffles are both shuffling the same vectors.
18471 if (!(A == C && B == D) && !(A == D && B == C))
18472 return false;
18473
18474 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18475 if (!A.getNode() && !B.getNode())
18476 return false;
18477
18478 // If A and B occur in reverse order in RHS, then "swap" them (which means
18479 // rewriting the mask).
18480 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018481 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018482
18483 // At this point LHS and RHS are equivalent to
18484 // LHS = VECTOR_SHUFFLE A, B, LMask
18485 // RHS = VECTOR_SHUFFLE A, B, RMask
18486 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018487 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18488 for (unsigned i = 0; i != NumLaneElts; ++i) {
18489 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018490
Craig Topper57bc5a02013-08-06 06:54:25 +000018491 // Ignore any UNDEF components.
18492 if (LIdx < 0 || RIdx < 0 ||
18493 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18494 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18495 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018496
Craig Topper57bc5a02013-08-06 06:54:25 +000018497 // Check that successive elements are being operated on. If not, this is
18498 // not a horizontal operation.
18499 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18500 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18501 if (!(LIdx == Index && RIdx == Index + 1) &&
18502 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18503 return false;
18504 }
Duncan Sands17470be2011-09-22 20:15:48 +000018505 }
18506
18507 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18508 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18509 return true;
18510}
18511
18512/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18513static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18514 const X86Subtarget *Subtarget) {
18515 EVT VT = N->getValueType(0);
18516 SDValue LHS = N->getOperand(0);
18517 SDValue RHS = N->getOperand(1);
18518
18519 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018520 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018521 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018522 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018523 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018524 return SDValue();
18525}
18526
18527/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18528static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18529 const X86Subtarget *Subtarget) {
18530 EVT VT = N->getValueType(0);
18531 SDValue LHS = N->getOperand(0);
18532 SDValue RHS = N->getOperand(1);
18533
18534 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018535 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018536 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018537 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018538 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018539 return SDValue();
18540}
18541
Chris Lattner6cf73262008-01-25 06:14:17 +000018542/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18543/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018544static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018545 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18546 // F[X]OR(0.0, x) -> x
18547 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018548 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18549 if (C->getValueAPF().isPosZero())
18550 return N->getOperand(1);
18551 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18552 if (C->getValueAPF().isPosZero())
18553 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018554 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018555}
18556
Nadav Rotemd60cb112012-08-19 13:06:16 +000018557/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18558/// X86ISD::FMAX nodes.
18559static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18560 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18561
18562 // Only perform optimizations if UnsafeMath is used.
18563 if (!DAG.getTarget().Options.UnsafeFPMath)
18564 return SDValue();
18565
18566 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018567 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018568 unsigned NewOp = 0;
18569 switch (N->getOpcode()) {
18570 default: llvm_unreachable("unknown opcode");
18571 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18572 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18573 }
18574
Andrew Trickac6d9be2013-05-25 02:42:55 +000018575 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018576 N->getOperand(0), N->getOperand(1));
18577}
18578
Chris Lattneraf723b92008-01-25 05:46:26 +000018579/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018580static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018581 // FAND(0.0, x) -> 0.0
18582 // FAND(x, 0.0) -> 0.0
18583 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18584 if (C->getValueAPF().isPosZero())
18585 return N->getOperand(0);
18586 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18587 if (C->getValueAPF().isPosZero())
18588 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018589 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018590}
18591
Benjamin Kramer75311b72013-08-04 12:05:16 +000018592/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18593static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18594 // FANDN(x, 0.0) -> 0.0
18595 // FANDN(0.0, x) -> x
18596 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18597 if (C->getValueAPF().isPosZero())
18598 return N->getOperand(1);
18599 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18600 if (C->getValueAPF().isPosZero())
18601 return N->getOperand(1);
18602 return SDValue();
18603}
18604
Dan Gohmane5af2d32009-01-29 01:59:02 +000018605static SDValue PerformBTCombine(SDNode *N,
18606 SelectionDAG &DAG,
18607 TargetLowering::DAGCombinerInfo &DCI) {
18608 // BT ignores high bits in the bit index operand.
18609 SDValue Op1 = N->getOperand(1);
18610 if (Op1.hasOneUse()) {
18611 unsigned BitWidth = Op1.getValueSizeInBits();
18612 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18613 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018614 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18615 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018616 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018617 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18618 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18619 DCI.CommitTargetLoweringOpt(TLO);
18620 }
18621 return SDValue();
18622}
Chris Lattner83e6c992006-10-04 06:57:07 +000018623
Eli Friedman7a5e5552009-06-07 06:52:44 +000018624static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18625 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018626 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018627 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018628 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018629 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018630 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018631 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018632 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018633 }
18634 return SDValue();
18635}
18636
Matt Arsenault225ed702013-05-18 00:21:46 +000018637static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018638 const X86Subtarget *Subtarget) {
18639 EVT VT = N->getValueType(0);
18640 if (!VT.isVector())
18641 return SDValue();
18642
18643 SDValue N0 = N->getOperand(0);
18644 SDValue N1 = N->getOperand(1);
18645 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018646 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018647
18648 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18649 // both SSE and AVX2 since there is no sign-extended shift right
18650 // operation on a vector with 64-bit elements.
18651 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18652 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18653 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18654 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18655 SDValue N00 = N0.getOperand(0);
18656
Matt Arsenault225ed702013-05-18 00:21:46 +000018657 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018658 // it may be replaced with X86ISD::VSEXT node.
18659 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18660 if (!ISD::isNormalLoad(N00.getNode()))
18661 return SDValue();
18662
18663 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018664 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018665 N00, N1);
18666 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18667 }
18668 }
18669 return SDValue();
18670}
18671
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018672static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18673 TargetLowering::DAGCombinerInfo &DCI,
18674 const X86Subtarget *Subtarget) {
18675 if (!DCI.isBeforeLegalizeOps())
18676 return SDValue();
18677
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018678 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018679 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018680
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018681 EVT VT = N->getValueType(0);
18682 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018683 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18684 if (R.getNode())
18685 return R;
18686 }
18687
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018688 return SDValue();
18689}
18690
Michael Liaof6c24ee2012-08-10 14:39:24 +000018691static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018692 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018693 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018694 EVT VT = N->getValueType(0);
18695
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018696 // Let legalize expand this if it isn't a legal type yet.
18697 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18698 return SDValue();
18699
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018700 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018701 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18702 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018703 return SDValue();
18704
18705 SDValue A = N->getOperand(0);
18706 SDValue B = N->getOperand(1);
18707 SDValue C = N->getOperand(2);
18708
18709 bool NegA = (A.getOpcode() == ISD::FNEG);
18710 bool NegB = (B.getOpcode() == ISD::FNEG);
18711 bool NegC = (C.getOpcode() == ISD::FNEG);
18712
Michael Liaof6c24ee2012-08-10 14:39:24 +000018713 // Negative multiplication when NegA xor NegB
18714 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018715 if (NegA)
18716 A = A.getOperand(0);
18717 if (NegB)
18718 B = B.getOperand(0);
18719 if (NegC)
18720 C = C.getOperand(0);
18721
18722 unsigned Opcode;
18723 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018724 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018725 else
Craig Topperbf404372012-08-31 15:40:30 +000018726 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18727
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018728 return DAG.getNode(Opcode, dl, VT, A, B, C);
18729}
18730
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018731static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018732 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018733 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018734 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18735 // (and (i32 x86isd::setcc_carry), 1)
18736 // This eliminates the zext. This transformation is necessary because
18737 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018738 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018739 SDValue N0 = N->getOperand(0);
18740 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018741
Evan Cheng2e489c42009-12-16 00:53:11 +000018742 if (N0.getOpcode() == ISD::AND &&
18743 N0.hasOneUse() &&
18744 N0.getOperand(0).hasOneUse()) {
18745 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018746 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18747 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18748 if (!C || C->getZExtValue() != 1)
18749 return SDValue();
18750 return DAG.getNode(ISD::AND, dl, VT,
18751 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18752 N00.getOperand(0), N00.getOperand(1)),
18753 DAG.getConstant(1, VT));
18754 }
18755 }
18756
Craig Topper5a529e42013-01-18 06:44:29 +000018757 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018758 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18759 if (R.getNode())
18760 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018761 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018762
Evan Cheng2e489c42009-12-16 00:53:11 +000018763 return SDValue();
18764}
18765
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018766// Optimize x == -y --> x+y == 0
18767// x != -y --> x+y != 0
18768static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18769 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18770 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018771 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018772
18773 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18774 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18775 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018776 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018777 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018778 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018779 addV, DAG.getConstant(0, addV.getValueType()), CC);
18780 }
18781 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18782 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18783 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018784 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018785 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018786 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018787 addV, DAG.getConstant(0, addV.getValueType()), CC);
18788 }
18789 return SDValue();
18790}
18791
Eric Christophere187e252013-01-31 00:50:48 +000018792// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18793// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018794// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018795static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018796 return DAG.getNode(ISD::AND, DL, MVT::i8,
18797 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18798 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18799 DAG.getConstant(1, MVT::i8));
18800}
18801
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018802// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018803static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18804 TargetLowering::DAGCombinerInfo &DCI,
18805 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018806 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018807 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18808 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018809
Shuxin Yanga5526a92012-10-31 23:11:48 +000018810 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018811 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018812 // materializing "setb reg".
18813 //
18814 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18815 // cannot take an immediate as its first operand.
18816 //
Eric Christophere187e252013-01-31 00:50:48 +000018817 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018818 EFLAGS.getValueType().isInteger() &&
18819 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018820 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018821 EFLAGS.getNode()->getVTList(),
18822 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18823 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18824 return MaterializeSETB(DL, NewEFLAGS, DAG);
18825 }
18826 }
18827
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018828 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18829 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18830 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018831 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018832 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018833
Michael Liao2a33cec2012-08-10 19:58:13 +000018834 SDValue Flags;
18835
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018836 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18837 if (Flags.getNode()) {
18838 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18839 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18840 }
18841
Michael Liao2a33cec2012-08-10 19:58:13 +000018842 return SDValue();
18843}
18844
18845// Optimize branch condition evaluation.
18846//
18847static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18848 TargetLowering::DAGCombinerInfo &DCI,
18849 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018850 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018851 SDValue Chain = N->getOperand(0);
18852 SDValue Dest = N->getOperand(1);
18853 SDValue EFLAGS = N->getOperand(3);
18854 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18855
18856 SDValue Flags;
18857
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018858 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18859 if (Flags.getNode()) {
18860 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18861 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18862 Flags);
18863 }
18864
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018865 return SDValue();
18866}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018867
Benjamin Kramer1396c402011-06-18 11:09:41 +000018868static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18869 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018870 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018871 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018872
18873 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018874 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018875 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018876 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018877 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18878 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18879 }
18880
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018881 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18882 // a 32-bit target where SSE doesn't support i64->FP operations.
18883 if (Op0.getOpcode() == ISD::LOAD) {
18884 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18885 EVT VT = Ld->getValueType(0);
18886 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18887 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18888 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018889 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018890 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18891 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018892 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18893 return FILDChain;
18894 }
18895 }
18896 return SDValue();
18897}
18898
Chris Lattner23a01992010-12-20 01:37:09 +000018899// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18900static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18901 X86TargetLowering::DAGCombinerInfo &DCI) {
18902 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18903 // the result is either zero or one (depending on the input carry bit).
18904 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18905 if (X86::isZeroNode(N->getOperand(0)) &&
18906 X86::isZeroNode(N->getOperand(1)) &&
18907 // We don't have a good way to replace an EFLAGS use, so only do this when
18908 // dead right now.
18909 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018910 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018911 EVT VT = N->getValueType(0);
18912 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18913 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18914 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18915 DAG.getConstant(X86::COND_B,MVT::i8),
18916 N->getOperand(2)),
18917 DAG.getConstant(1, VT));
18918 return DCI.CombineTo(N, Res1, CarryOut);
18919 }
18920
18921 return SDValue();
18922}
18923
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018924// fold (add Y, (sete X, 0)) -> adc 0, Y
18925// (add Y, (setne X, 0)) -> sbb -1, Y
18926// (sub (sete X, 0), Y) -> sbb 0, Y
18927// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018928static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018929 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018930
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018931 // Look through ZExts.
18932 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18933 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18934 return SDValue();
18935
18936 SDValue SetCC = Ext.getOperand(0);
18937 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18938 return SDValue();
18939
18940 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18941 if (CC != X86::COND_E && CC != X86::COND_NE)
18942 return SDValue();
18943
18944 SDValue Cmp = SetCC.getOperand(1);
18945 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018946 !X86::isZeroNode(Cmp.getOperand(1)) ||
18947 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018948 return SDValue();
18949
18950 SDValue CmpOp0 = Cmp.getOperand(0);
18951 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18952 DAG.getConstant(1, CmpOp0.getValueType()));
18953
18954 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18955 if (CC == X86::COND_NE)
18956 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18957 DL, OtherVal.getValueType(), OtherVal,
18958 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18959 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18960 DL, OtherVal.getValueType(), OtherVal,
18961 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18962}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018963
Craig Topper54f952a2011-11-19 09:02:40 +000018964/// PerformADDCombine - Do target-specific dag combines on integer adds.
18965static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18966 const X86Subtarget *Subtarget) {
18967 EVT VT = N->getValueType(0);
18968 SDValue Op0 = N->getOperand(0);
18969 SDValue Op1 = N->getOperand(1);
18970
18971 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018972 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018973 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018974 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018975 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018976
18977 return OptimizeConditionalInDecrement(N, DAG);
18978}
18979
18980static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18981 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018982 SDValue Op0 = N->getOperand(0);
18983 SDValue Op1 = N->getOperand(1);
18984
18985 // X86 can't encode an immediate LHS of a sub. See if we can push the
18986 // negation into a preceding instruction.
18987 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018988 // If the RHS of the sub is a XOR with one use and a constant, invert the
18989 // immediate. Then add one to the LHS of the sub so we can turn
18990 // X-Y -> X+~Y+1, saving one register.
18991 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18992 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018993 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018994 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018995 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018996 Op1.getOperand(0),
18997 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018998 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018999 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019000 }
19001 }
19002
Craig Topper54f952a2011-11-19 09:02:40 +000019003 // Try to synthesize horizontal adds from adds of shuffles.
19004 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000019005 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019006 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000019007 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000019008 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000019009
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019010 return OptimizeConditionalInDecrement(N, DAG);
19011}
19012
Michael Liaod9d09602012-10-23 17:34:00 +000019013/// performVZEXTCombine - Performs build vector combines
19014static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19015 TargetLowering::DAGCombinerInfo &DCI,
19016 const X86Subtarget *Subtarget) {
19017 // (vzext (bitcast (vzext (x)) -> (vzext x)
19018 SDValue In = N->getOperand(0);
19019 while (In.getOpcode() == ISD::BITCAST)
19020 In = In.getOperand(0);
19021
19022 if (In.getOpcode() != X86ISD::VZEXT)
19023 return SDValue();
19024
Andrew Trickac6d9be2013-05-25 02:42:55 +000019025 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000019026 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000019027}
19028
Dan Gohman475871a2008-07-27 21:46:04 +000019029SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000019030 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000019031 SelectionDAG &DAG = DCI.DAG;
19032 switch (N->getOpcode()) {
19033 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000019034 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000019035 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000019036 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000019037 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019038 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000019039 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
19040 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000019041 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000019042 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000019043 case ISD::SHL:
19044 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000019045 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000019046 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000019047 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000019048 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000019049 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019050 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019051 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019052 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19053 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019054 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019055 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019056 case X86ISD::FMIN:
19057 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019058 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019059 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019060 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019061 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019062 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019063 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019064 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019065 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019066 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019067 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019068 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019069 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019070 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019071 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019072 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019073 case X86ISD::UNPCKH:
19074 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019075 case X86ISD::MOVHLPS:
19076 case X86ISD::MOVLHPS:
19077 case X86ISD::PSHUFD:
19078 case X86ISD::PSHUFHW:
19079 case X86ISD::PSHUFLW:
19080 case X86ISD::MOVSS:
19081 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019082 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019083 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019084 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Jim Grosbach49af3802013-10-17 02:58:06 +000019085 case ISD::CONCAT_VECTORS: return PerformConcatCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019086 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019087 }
19088
Dan Gohman475871a2008-07-27 21:46:04 +000019089 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019090}
19091
Evan Chenge5b51ac2010-04-17 06:13:15 +000019092/// isTypeDesirableForOp - Return true if the target has native support for
19093/// the specified value type and it is 'desirable' to use the type for the
19094/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19095/// instruction encodings are longer and some i16 instructions are slow.
19096bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19097 if (!isTypeLegal(VT))
19098 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019099 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019100 return true;
19101
19102 switch (Opc) {
19103 default:
19104 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019105 case ISD::LOAD:
19106 case ISD::SIGN_EXTEND:
19107 case ISD::ZERO_EXTEND:
19108 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019109 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019110 case ISD::SRL:
19111 case ISD::SUB:
19112 case ISD::ADD:
19113 case ISD::MUL:
19114 case ISD::AND:
19115 case ISD::OR:
19116 case ISD::XOR:
19117 return false;
19118 }
19119}
19120
19121/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019122/// beneficial for dag combiner to promote the specified node. If true, it
19123/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019124bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019125 EVT VT = Op.getValueType();
19126 if (VT != MVT::i16)
19127 return false;
19128
Evan Cheng4c26e932010-04-19 19:29:22 +000019129 bool Promote = false;
19130 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019131 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019132 default: break;
19133 case ISD::LOAD: {
19134 LoadSDNode *LD = cast<LoadSDNode>(Op);
19135 // If the non-extending load has a single use and it's not live out, then it
19136 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019137 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19138 Op.hasOneUse()*/) {
19139 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19140 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19141 // The only case where we'd want to promote LOAD (rather then it being
19142 // promoted as an operand is when it's only use is liveout.
19143 if (UI->getOpcode() != ISD::CopyToReg)
19144 return false;
19145 }
19146 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019147 Promote = true;
19148 break;
19149 }
19150 case ISD::SIGN_EXTEND:
19151 case ISD::ZERO_EXTEND:
19152 case ISD::ANY_EXTEND:
19153 Promote = true;
19154 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019155 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019156 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019157 SDValue N0 = Op.getOperand(0);
19158 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019159 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019160 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019161 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019162 break;
19163 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019164 case ISD::ADD:
19165 case ISD::MUL:
19166 case ISD::AND:
19167 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019168 case ISD::XOR:
19169 Commute = true;
19170 // fallthrough
19171 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019172 SDValue N0 = Op.getOperand(0);
19173 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019174 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019175 return false;
19176 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019177 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019178 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019179 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019180 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019181 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019182 }
19183 }
19184
19185 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019186 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019187}
19188
Evan Cheng60c07e12006-07-05 22:17:51 +000019189//===----------------------------------------------------------------------===//
19190// X86 Inline Assembly Support
19191//===----------------------------------------------------------------------===//
19192
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019193namespace {
19194 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019195 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019196 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019197
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019198 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019199 StringRef piece(*args[i]);
19200 if (!s.startswith(piece)) // Check if the piece matches.
19201 return false;
19202
19203 s = s.substr(piece.size());
19204 StringRef::size_type pos = s.find_first_not_of(" \t");
19205 if (pos == 0) // We matched a prefix.
19206 return false;
19207
19208 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019209 }
19210
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019211 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019212 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019213 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019214}
19215
Chris Lattnerb8105652009-07-20 17:51:36 +000019216bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19217 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019218
19219 std::string AsmStr = IA->getAsmString();
19220
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019221 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19222 if (!Ty || Ty->getBitWidth() % 16 != 0)
19223 return false;
19224
Chris Lattnerb8105652009-07-20 17:51:36 +000019225 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019226 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019227 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019228
19229 switch (AsmPieces.size()) {
19230 default: return false;
19231 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019232 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019233 // we will turn this bswap into something that will be lowered to logical
19234 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19235 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019236 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019237 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19238 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19239 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19240 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19241 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19242 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019243 // No need to check constraints, nothing other than the equivalent of
19244 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019245 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019246 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019247
Chris Lattnerb8105652009-07-20 17:51:36 +000019248 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019249 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019250 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019251 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19252 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019253 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019254 const std::string &ConstraintsStr = IA->getConstraintString();
19255 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019256 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000019257 if (AsmPieces.size() == 4 &&
19258 AsmPieces[0] == "~{cc}" &&
19259 AsmPieces[1] == "~{dirflag}" &&
19260 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019261 AsmPieces[3] == "~{fpsr}")
19262 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019263 }
19264 break;
19265 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019266 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019267 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019268 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19269 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19270 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019271 AsmPieces.clear();
19272 const std::string &ConstraintsStr = IA->getConstraintString();
19273 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019274 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019275 if (AsmPieces.size() == 4 &&
19276 AsmPieces[0] == "~{cc}" &&
19277 AsmPieces[1] == "~{dirflag}" &&
19278 AsmPieces[2] == "~{flags}" &&
19279 AsmPieces[3] == "~{fpsr}")
19280 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019281 }
Evan Cheng55d42002011-01-08 01:24:27 +000019282
19283 if (CI->getType()->isIntegerTy(64)) {
19284 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19285 if (Constraints.size() >= 2 &&
19286 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19287 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19288 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019289 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19290 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19291 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019292 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019293 }
19294 }
19295 break;
19296 }
19297 return false;
19298}
19299
Chris Lattnerf4dff842006-07-11 02:54:03 +000019300/// getConstraintType - Given a constraint letter, return the type of
19301/// constraint it is for this target.
19302X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019303X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19304 if (Constraint.size() == 1) {
19305 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019306 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019307 case 'q':
19308 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019309 case 'f':
19310 case 't':
19311 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019312 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019313 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019314 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019315 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019316 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019317 case 'a':
19318 case 'b':
19319 case 'c':
19320 case 'd':
19321 case 'S':
19322 case 'D':
19323 case 'A':
19324 return C_Register;
19325 case 'I':
19326 case 'J':
19327 case 'K':
19328 case 'L':
19329 case 'M':
19330 case 'N':
19331 case 'G':
19332 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019333 case 'e':
19334 case 'Z':
19335 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019336 default:
19337 break;
19338 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019339 }
Chris Lattner4234f572007-03-25 02:14:49 +000019340 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019341}
19342
John Thompson44ab89e2010-10-29 17:29:13 +000019343/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019344/// This object must already have been set up with the operand type
19345/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019346TargetLowering::ConstraintWeight
19347 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019348 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019349 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019350 Value *CallOperandVal = info.CallOperandVal;
19351 // If we don't have a value, we can't do a match,
19352 // but allow it at the lowest weight.
19353 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019354 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019355 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019356 // Look at the constraint type.
19357 switch (*constraint) {
19358 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019359 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19360 case 'R':
19361 case 'q':
19362 case 'Q':
19363 case 'a':
19364 case 'b':
19365 case 'c':
19366 case 'd':
19367 case 'S':
19368 case 'D':
19369 case 'A':
19370 if (CallOperandVal->getType()->isIntegerTy())
19371 weight = CW_SpecificReg;
19372 break;
19373 case 'f':
19374 case 't':
19375 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019376 if (type->isFloatingPointTy())
19377 weight = CW_SpecificReg;
19378 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019379 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019380 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19381 weight = CW_SpecificReg;
19382 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019383 case 'x':
19384 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019385 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019386 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019387 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019388 break;
19389 case 'I':
19390 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19391 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019392 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019393 }
19394 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019395 case 'J':
19396 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19397 if (C->getZExtValue() <= 63)
19398 weight = CW_Constant;
19399 }
19400 break;
19401 case 'K':
19402 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19403 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19404 weight = CW_Constant;
19405 }
19406 break;
19407 case 'L':
19408 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19409 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19410 weight = CW_Constant;
19411 }
19412 break;
19413 case 'M':
19414 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19415 if (C->getZExtValue() <= 3)
19416 weight = CW_Constant;
19417 }
19418 break;
19419 case 'N':
19420 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19421 if (C->getZExtValue() <= 0xff)
19422 weight = CW_Constant;
19423 }
19424 break;
19425 case 'G':
19426 case 'C':
19427 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19428 weight = CW_Constant;
19429 }
19430 break;
19431 case 'e':
19432 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19433 if ((C->getSExtValue() >= -0x80000000LL) &&
19434 (C->getSExtValue() <= 0x7fffffffLL))
19435 weight = CW_Constant;
19436 }
19437 break;
19438 case 'Z':
19439 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19440 if (C->getZExtValue() <= 0xffffffff)
19441 weight = CW_Constant;
19442 }
19443 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019444 }
19445 return weight;
19446}
19447
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019448/// LowerXConstraint - try to replace an X constraint, which matches anything,
19449/// with another that has more specific requirements based on the type of the
19450/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019451const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019452LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019453 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19454 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019455 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019456 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019457 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019458 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019459 return "x";
19460 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019461
Chris Lattner5e764232008-04-26 23:02:14 +000019462 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019463}
19464
Chris Lattner48884cd2007-08-25 00:47:38 +000019465/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19466/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019467void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019468 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019469 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019470 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019471 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019472
Eric Christopher100c8332011-06-02 23:16:42 +000019473 // Only support length 1 constraints for now.
19474 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019475
Eric Christopher100c8332011-06-02 23:16:42 +000019476 char ConstraintLetter = Constraint[0];
19477 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019478 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019479 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019480 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019481 if (C->getZExtValue() <= 31) {
19482 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019483 break;
19484 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019485 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019486 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019487 case 'J':
19488 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019489 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019490 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19491 break;
19492 }
19493 }
19494 return;
19495 case 'K':
19496 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019497 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019498 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19499 break;
19500 }
19501 }
19502 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019503 case 'N':
19504 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019505 if (C->getZExtValue() <= 255) {
19506 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019507 break;
19508 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019509 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019510 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019511 case 'e': {
19512 // 32-bit signed value
19513 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019514 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19515 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019516 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019517 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019518 break;
19519 }
19520 // FIXME gcc accepts some relocatable values here too, but only in certain
19521 // memory models; it's complicated.
19522 }
19523 return;
19524 }
19525 case 'Z': {
19526 // 32-bit unsigned value
19527 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019528 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19529 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019530 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19531 break;
19532 }
19533 }
19534 // FIXME gcc accepts some relocatable values here too, but only in certain
19535 // memory models; it's complicated.
19536 return;
19537 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019538 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019539 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019540 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019541 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019542 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019543 break;
19544 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019545
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019546 // In any sort of PIC mode addresses need to be computed at runtime by
19547 // adding in a register or some sort of table lookup. These can't
19548 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019549 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019550 return;
19551
Chris Lattnerdc43a882007-05-03 16:52:29 +000019552 // If we are in non-pic codegen mode, we allow the address of a global (with
19553 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019554 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019555 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019556
Chris Lattner49921962009-05-08 18:23:14 +000019557 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19558 while (1) {
19559 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19560 Offset += GA->getOffset();
19561 break;
19562 } else if (Op.getOpcode() == ISD::ADD) {
19563 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19564 Offset += C->getZExtValue();
19565 Op = Op.getOperand(0);
19566 continue;
19567 }
19568 } else if (Op.getOpcode() == ISD::SUB) {
19569 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19570 Offset += -C->getZExtValue();
19571 Op = Op.getOperand(0);
19572 continue;
19573 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019574 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019575
Chris Lattner49921962009-05-08 18:23:14 +000019576 // Otherwise, this isn't something we can handle, reject it.
19577 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019578 }
Eric Christopherfd179292009-08-27 18:07:15 +000019579
Dan Gohman46510a72010-04-15 01:51:59 +000019580 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019581 // If we require an extra load to get this address, as in PIC mode, we
19582 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019583 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19584 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019585 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019586
Andrew Trickac6d9be2013-05-25 02:42:55 +000019587 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019588 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019589 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019590 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019591 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019592
Gabor Greifba36cb52008-08-28 21:40:38 +000019593 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019594 Ops.push_back(Result);
19595 return;
19596 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019597 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019598}
19599
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019600std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019601X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019602 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019603 // First, see if this is a constraint that directly corresponds to an LLVM
19604 // register class.
19605 if (Constraint.size() == 1) {
19606 // GCC Constraint Letters
19607 switch (Constraint[0]) {
19608 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019609 // TODO: Slight differences here in allocation order and leaving
19610 // RIP in the class. Do they matter any more here than they do
19611 // in the normal allocation?
19612 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19613 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019614 if (VT == MVT::i32 || VT == MVT::f32)
19615 return std::make_pair(0U, &X86::GR32RegClass);
19616 if (VT == MVT::i16)
19617 return std::make_pair(0U, &X86::GR16RegClass);
19618 if (VT == MVT::i8 || VT == MVT::i1)
19619 return std::make_pair(0U, &X86::GR8RegClass);
19620 if (VT == MVT::i64 || VT == MVT::f64)
19621 return std::make_pair(0U, &X86::GR64RegClass);
19622 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019623 }
19624 // 32-bit fallthrough
19625 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019626 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019627 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19628 if (VT == MVT::i16)
19629 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19630 if (VT == MVT::i8 || VT == MVT::i1)
19631 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19632 if (VT == MVT::i64)
19633 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019634 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019635 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019636 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019637 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019638 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019639 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019640 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019641 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019642 return std::make_pair(0U, &X86::GR32RegClass);
19643 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019644 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019645 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019646 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019647 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019648 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019649 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019650 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19651 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019652 case 'f': // FP Stack registers.
19653 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19654 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019655 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019656 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019657 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019658 return std::make_pair(0U, &X86::RFP64RegClass);
19659 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019660 case 'y': // MMX_REGS if MMX allowed.
19661 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019662 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019663 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019664 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019665 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019666 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019667 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019668
Chad Rosier5b3fca52013-06-22 18:37:38 +000019669 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019670 default: break;
19671 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019672 case MVT::f32:
19673 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019674 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019675 case MVT::f64:
19676 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019677 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019678 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019679 case MVT::v16i8:
19680 case MVT::v8i16:
19681 case MVT::v4i32:
19682 case MVT::v2i64:
19683 case MVT::v4f32:
19684 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019685 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019686 // AVX types.
19687 case MVT::v32i8:
19688 case MVT::v16i16:
19689 case MVT::v8i32:
19690 case MVT::v4i64:
19691 case MVT::v8f32:
19692 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019693 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019694 case MVT::v8f64:
19695 case MVT::v16f32:
19696 case MVT::v16i32:
19697 case MVT::v8i64:
19698 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019699 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019700 break;
19701 }
19702 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019703
Chris Lattnerf76d1802006-07-31 23:26:50 +000019704 // Use the default implementation in TargetLowering to convert the register
19705 // constraint into a member of a register class.
19706 std::pair<unsigned, const TargetRegisterClass*> Res;
19707 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019708
19709 // Not found as a standard register?
19710 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019711 // Map st(0) -> st(7) -> ST0
19712 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19713 tolower(Constraint[1]) == 's' &&
19714 tolower(Constraint[2]) == 't' &&
19715 Constraint[3] == '(' &&
19716 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19717 Constraint[5] == ')' &&
19718 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019719
Chris Lattner56d77c72009-09-13 22:41:48 +000019720 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019721 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019722 return Res;
19723 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019724
Chris Lattner56d77c72009-09-13 22:41:48 +000019725 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019726 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019727 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019728 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019729 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019730 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019731
19732 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019733 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019734 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019735 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019736 return Res;
19737 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019738
Dale Johannesen330169f2008-11-13 21:52:36 +000019739 // 'A' means EAX + EDX.
19740 if (Constraint == "A") {
19741 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019742 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019743 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019744 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019745 return Res;
19746 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019747
Chris Lattnerf76d1802006-07-31 23:26:50 +000019748 // Otherwise, check to see if this is a register class of the wrong value
19749 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19750 // turn into {ax},{dx}.
19751 if (Res.second->hasType(VT))
19752 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019753
Chris Lattnerf76d1802006-07-31 23:26:50 +000019754 // All of the single-register GCC register classes map their values onto
19755 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19756 // really want an 8-bit or 32-bit register, map to the appropriate register
19757 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019758 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019759 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019760 unsigned DestReg = 0;
19761 switch (Res.first) {
19762 default: break;
19763 case X86::AX: DestReg = X86::AL; break;
19764 case X86::DX: DestReg = X86::DL; break;
19765 case X86::CX: DestReg = X86::CL; break;
19766 case X86::BX: DestReg = X86::BL; break;
19767 }
19768 if (DestReg) {
19769 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019770 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019771 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019772 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019773 unsigned DestReg = 0;
19774 switch (Res.first) {
19775 default: break;
19776 case X86::AX: DestReg = X86::EAX; break;
19777 case X86::DX: DestReg = X86::EDX; break;
19778 case X86::CX: DestReg = X86::ECX; break;
19779 case X86::BX: DestReg = X86::EBX; break;
19780 case X86::SI: DestReg = X86::ESI; break;
19781 case X86::DI: DestReg = X86::EDI; break;
19782 case X86::BP: DestReg = X86::EBP; break;
19783 case X86::SP: DestReg = X86::ESP; break;
19784 }
19785 if (DestReg) {
19786 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019787 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019788 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019789 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019790 unsigned DestReg = 0;
19791 switch (Res.first) {
19792 default: break;
19793 case X86::AX: DestReg = X86::RAX; break;
19794 case X86::DX: DestReg = X86::RDX; break;
19795 case X86::CX: DestReg = X86::RCX; break;
19796 case X86::BX: DestReg = X86::RBX; break;
19797 case X86::SI: DestReg = X86::RSI; break;
19798 case X86::DI: DestReg = X86::RDI; break;
19799 case X86::BP: DestReg = X86::RBP; break;
19800 case X86::SP: DestReg = X86::RSP; break;
19801 }
19802 if (DestReg) {
19803 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019804 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019805 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019806 }
Craig Topperc9099502012-04-20 06:31:50 +000019807 } else if (Res.second == &X86::FR32RegClass ||
19808 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019809 Res.second == &X86::VR128RegClass ||
19810 Res.second == &X86::VR256RegClass ||
19811 Res.second == &X86::FR32XRegClass ||
19812 Res.second == &X86::FR64XRegClass ||
19813 Res.second == &X86::VR128XRegClass ||
19814 Res.second == &X86::VR256XRegClass ||
19815 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019816 // Handle references to XMM physical registers that got mapped into the
19817 // wrong class. This can happen with constraints like {xmm0} where the
19818 // target independent register mapper will just pick the first match it can
19819 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019820
19821 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019822 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019823 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019824 Res.second = &X86::FR64RegClass;
19825 else if (X86::VR128RegClass.hasType(VT))
19826 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019827 else if (X86::VR256RegClass.hasType(VT))
19828 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019829 else if (X86::VR512RegClass.hasType(VT))
19830 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019831 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019832
Chris Lattnerf76d1802006-07-31 23:26:50 +000019833 return Res;
19834}