blob: 0d7818943c8f0e156a8de77b6fcc512a33d9edfc [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
Yaron Kerenfaf14152013-10-23 23:37:01 +0000634 if (Subtarget->isOSWindows() && !Subtarget->isTargetEnvMacho())
Eric Christopherc967ad82011-08-31 04:17:21 +0000635 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000637 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000638 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639 MVT::i64 : MVT::i32, Custom);
640 else
641 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000643
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000644 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000645 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000646 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000647 addRegisterClass(MVT::f32, &X86::FR32RegClass);
648 addRegisterClass(MVT::f64, &X86::FR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000649
Evan Cheng223547a2006-01-31 22:28:30 +0000650 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000651 setOperationAction(ISD::FABS , MVT::f64, Custom);
652 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000653
654 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000655 setOperationAction(ISD::FNEG , MVT::f64, Custom);
656 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000657
Evan Cheng68c47cb2007-01-05 07:55:56 +0000658 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000661
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000662 // Lower this to FGETSIGNx86 plus an AND.
663 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
Evan Chengd25e9e82006-02-02 00:28:23 +0000666 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000667 setOperationAction(ISD::FSIN , MVT::f64, Expand);
668 setOperationAction(ISD::FCOS , MVT::f64, Expand);
669 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670 setOperationAction(ISD::FSIN , MVT::f32, Expand);
671 setOperationAction(ISD::FCOS , MVT::f32, Expand);
672 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000673
Chris Lattnera54aa942006-01-29 06:26:08 +0000674 // Expand FP immediates into loads from the stack, except for the special
675 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000676 addLegalFPImmediate(APFloat(+0.0)); // xorpd
677 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000678 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000679 // Use SSE for f32, x87 for f64.
680 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000681 addRegisterClass(MVT::f32, &X86::FR32RegClass);
682 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000683
684 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000686
687 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000689
Owen Anderson825b72b2009-08-11 20:47:22 +0000690 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000691
692 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000693 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000695
696 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000697 setOperationAction(ISD::FSIN , MVT::f32, Expand);
698 setOperationAction(ISD::FCOS , MVT::f32, Expand);
699 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000700
Nate Begemane1795842008-02-14 08:57:00 +0000701 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000702 addLegalFPImmediate(APFloat(+0.0f)); // xorps
703 addLegalFPImmediate(APFloat(+0.0)); // FLD0
704 addLegalFPImmediate(APFloat(+1.0)); // FLD1
705 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000708 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000709 setOperationAction(ISD::FSIN , MVT::f64, Expand);
710 setOperationAction(ISD::FCOS , MVT::f64, Expand);
711 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000712 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000713 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000714 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000715 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000716 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717 addRegisterClass(MVT::f32, &X86::RFP32RegClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
720 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
721 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000723
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000724 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000725 setOperationAction(ISD::FSIN , MVT::f64, Expand);
726 setOperationAction(ISD::FSIN , MVT::f32, Expand);
727 setOperationAction(ISD::FCOS , MVT::f64, Expand);
728 setOperationAction(ISD::FCOS , MVT::f32, Expand);
729 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000731 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000732 addLegalFPImmediate(APFloat(+0.0)); // FLD0
733 addLegalFPImmediate(APFloat(+1.0)); // FLD1
734 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000736 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000740 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000741
Cameron Zwarich33390842011-07-08 21:39:21 +0000742 // We don't support FMA.
743 setOperationAction(ISD::FMA, MVT::f64, Expand);
744 setOperationAction(ISD::FMA, MVT::f32, Expand);
745
Dale Johannesen59a58732007-08-05 18:49:15 +0000746 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000747 if (!TM.Options.UseSoftFloat) {
Craig Topperc9099502012-04-20 06:31:50 +0000748 addRegisterClass(MVT::f80, &X86::RFP80RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000749 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
750 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000751 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000752 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000753 addLegalFPImmediate(TmpFlt); // FLD0
754 TmpFlt.changeSign();
755 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000756
757 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000758 APFloat TmpFlt2(+1.0);
759 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760 &ignored);
761 addLegalFPImmediate(TmpFlt2); // FLD1
762 TmpFlt2.changeSign();
763 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
764 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000765
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000766 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000767 setOperationAction(ISD::FSIN , MVT::f80, Expand);
768 setOperationAction(ISD::FCOS , MVT::f80, Expand);
769 setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000770 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000771
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000772 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
774 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775 setOperationAction(ISD::FRINT, MVT::f80, Expand);
776 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000777 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000778 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000779
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000780 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
782 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
783 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000784
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 setOperationAction(ISD::FLOG, MVT::f80, Expand);
786 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788 setOperationAction(ISD::FEXP, MVT::f80, Expand);
789 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000790
Mon P Wangf007a8b2008-11-06 05:31:54 +0000791 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000792 // (for widening) or expand (for scalarization). Then we will selectively
793 // turn on ones that can be effectively codegen'd.
Craig Topper55de3392012-11-14 06:41:09 +0000794 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper49010472012-11-15 06:51:10 +0000796 MVT VT = (MVT::SimpleValueType)i;
Craig Topper55de3392012-11-14 06:41:09 +0000797 setOperationAction(ISD::ADD , VT, Expand);
798 setOperationAction(ISD::SUB , VT, Expand);
799 setOperationAction(ISD::FADD, VT, Expand);
800 setOperationAction(ISD::FNEG, VT, Expand);
801 setOperationAction(ISD::FSUB, VT, Expand);
802 setOperationAction(ISD::MUL , VT, Expand);
803 setOperationAction(ISD::FMUL, VT, Expand);
804 setOperationAction(ISD::SDIV, VT, Expand);
805 setOperationAction(ISD::UDIV, VT, Expand);
806 setOperationAction(ISD::FDIV, VT, Expand);
807 setOperationAction(ISD::SREM, VT, Expand);
808 setOperationAction(ISD::UREM, VT, Expand);
809 setOperationAction(ISD::LOAD, VT, Expand);
810 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814 setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815 setOperationAction(ISD::FABS, VT, Expand);
816 setOperationAction(ISD::FSIN, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000817 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000818 setOperationAction(ISD::FCOS, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000819 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000820 setOperationAction(ISD::FREM, VT, Expand);
821 setOperationAction(ISD::FMA, VT, Expand);
822 setOperationAction(ISD::FPOWI, VT, Expand);
823 setOperationAction(ISD::FSQRT, VT, Expand);
824 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000826 setOperationAction(ISD::FCEIL, VT, Expand);
827 setOperationAction(ISD::FTRUNC, VT, Expand);
828 setOperationAction(ISD::FRINT, VT, Expand);
829 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000830 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832 setOperationAction(ISD::SDIVREM, VT, Expand);
833 setOperationAction(ISD::UDIVREM, VT, Expand);
834 setOperationAction(ISD::FPOW, VT, Expand);
835 setOperationAction(ISD::CTPOP, VT, Expand);
836 setOperationAction(ISD::CTTZ, VT, Expand);
837 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838 setOperationAction(ISD::CTLZ, VT, Expand);
839 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840 setOperationAction(ISD::SHL, VT, Expand);
841 setOperationAction(ISD::SRA, VT, Expand);
842 setOperationAction(ISD::SRL, VT, Expand);
843 setOperationAction(ISD::ROTL, VT, Expand);
844 setOperationAction(ISD::ROTR, VT, Expand);
845 setOperationAction(ISD::BSWAP, VT, Expand);
846 setOperationAction(ISD::SETCC, VT, Expand);
847 setOperationAction(ISD::FLOG, VT, Expand);
848 setOperationAction(ISD::FLOG2, VT, Expand);
849 setOperationAction(ISD::FLOG10, VT, Expand);
850 setOperationAction(ISD::FEXP, VT, Expand);
851 setOperationAction(ISD::FEXP2, VT, Expand);
852 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856 setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857 setOperationAction(ISD::TRUNCATE, VT, Expand);
858 setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859 setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860 setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861 setOperationAction(ISD::VSELECT, VT, Expand);
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000862 for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863 InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
Craig Topper55de3392012-11-14 06:41:09 +0000864 setTruncStoreAction(VT,
Dan Gohman2e141d72009-12-14 23:40:38 +0000865 (MVT::SimpleValueType)InnerVT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000866 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000869 }
870
Evan Chengc7ce29b2009-02-13 22:36:38 +0000871 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000873 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Craig Topperc9099502012-04-20 06:31:50 +0000874 addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000875 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000876 }
877
Dale Johannesen0488fb62010-09-30 23:57:10 +0000878 // MMX-sized vectors (other than x86mmx) are expected to be expanded
879 // into smaller operations.
880 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
881 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
882 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
883 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
884 setOperationAction(ISD::AND, MVT::v8i8, Expand);
885 setOperationAction(ISD::AND, MVT::v4i16, Expand);
886 setOperationAction(ISD::AND, MVT::v2i32, Expand);
887 setOperationAction(ISD::AND, MVT::v1i64, Expand);
888 setOperationAction(ISD::OR, MVT::v8i8, Expand);
889 setOperationAction(ISD::OR, MVT::v4i16, Expand);
890 setOperationAction(ISD::OR, MVT::v2i32, Expand);
891 setOperationAction(ISD::OR, MVT::v1i64, Expand);
892 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
893 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
894 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
895 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
896 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
897 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
898 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
899 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
900 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
901 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
902 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
903 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
904 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000905 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
906 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
907 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
908 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000909
Craig Topper1accb7e2012-01-10 06:54:16 +0000910 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
Craig Topperc9099502012-04-20 06:31:50 +0000911 addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000912
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
914 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
915 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
916 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
917 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
918 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000919 setOperationAction(ISD::FABS, MVT::v4f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
921 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
922 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
923 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000925 }
926
Craig Topper1accb7e2012-01-10 06:54:16 +0000927 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
Craig Topperc9099502012-04-20 06:31:50 +0000928 addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000929
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000930 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931 // registers cannot be used even for integer operations.
Craig Topperc9099502012-04-20 06:31:50 +0000932 addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933 addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934 addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935 addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000936
Owen Anderson825b72b2009-08-11 20:47:22 +0000937 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
938 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
939 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
940 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +0000941 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
943 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
944 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
945 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
946 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
947 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
948 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
949 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
950 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
951 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
952 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
953 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000954 setOperationAction(ISD::FABS, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000955
Nadav Rotem354efd82011-09-18 14:57:03 +0000956 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000957 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
958 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
959 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
962 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
963 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
964 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
965 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000966
Evan Cheng2c3ae372006-04-12 21:21:57 +0000967 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000968 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000969 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000970 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000971 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000972 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000973 // Do not attempt to custom lower non-128-bit vectors
974 if (!VT.is128BitVector())
975 continue;
Craig Topper0d1f1762012-08-12 00:34:56 +0000976 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
977 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
978 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000979 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000980
Owen Anderson825b72b2009-08-11 20:47:22 +0000981 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
982 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
983 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
984 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
985 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
986 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000987
Nate Begemancdd1eec2008-02-12 22:51:28 +0000988 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000989 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
990 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000991 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000992
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000993 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Craig Topper31a207a2012-05-04 06:39:13 +0000994 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000995 MVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000996
997 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000998 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000999 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001000
Craig Topper0d1f1762012-08-12 00:34:56 +00001001 setOperationAction(ISD::AND, VT, Promote);
1002 AddPromotedToType (ISD::AND, VT, MVT::v2i64);
1003 setOperationAction(ISD::OR, VT, Promote);
1004 AddPromotedToType (ISD::OR, VT, MVT::v2i64);
1005 setOperationAction(ISD::XOR, VT, Promote);
1006 AddPromotedToType (ISD::XOR, VT, MVT::v2i64);
1007 setOperationAction(ISD::LOAD, VT, Promote);
1008 AddPromotedToType (ISD::LOAD, VT, MVT::v2i64);
1009 setOperationAction(ISD::SELECT, VT, Promote);
1010 AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +00001011 }
Evan Cheng2c3ae372006-04-12 21:21:57 +00001012
Owen Anderson825b72b2009-08-11 20:47:22 +00001013 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +00001014
Evan Cheng2c3ae372006-04-12 21:21:57 +00001015 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +00001016 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
1017 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
1018 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
1019 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +00001020
Owen Anderson825b72b2009-08-11 20:47:22 +00001021 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
1022 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Michael Liaob8150d82012-09-10 18:33:51 +00001023
Michael Liaoa7554632012-10-23 17:36:08 +00001024 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom);
1025 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Michael Liao991b6a22012-10-24 04:09:32 +00001026 // As there is no 64-bit GPR available, we need build a special custom
1027 // sequence to convert from v2i32 to v2f32.
1028 if (!Subtarget->is64Bit())
1029 setOperationAction(ISD::UINT_TO_FP, MVT::v2f32, Custom);
Michael Liaoa7554632012-10-23 17:36:08 +00001030
Michael Liao9d796db2012-10-10 16:32:15 +00001031 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom);
Michael Liao44c2d612012-10-10 16:53:28 +00001032 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Custom);
Michael Liao9d796db2012-10-10 16:32:15 +00001033
Michael Liaob8150d82012-09-10 18:33:51 +00001034 setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +00001035 }
Evan Chengc7ce29b2009-02-13 22:36:38 +00001036
Justin Holewinski320185f2013-07-26 13:28:29 +00001037 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +00001038 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
1039 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
1040 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
1041 setOperationAction(ISD::FRINT, MVT::f32, Legal);
1042 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
1043 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
1044 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
1045 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
1046 setOperationAction(ISD::FRINT, MVT::f64, Legal);
1047 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
1048
Craig Topper12fb5c62012-09-08 17:42:27 +00001049 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001050 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
1051 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
1052 setOperationAction(ISD::FRINT, MVT::v4f32, Legal);
1053 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001054 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001055 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
1056 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
1057 setOperationAction(ISD::FRINT, MVT::v2f64, Legal);
1058 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001059
Nate Begeman14d12ca2008-02-11 04:19:36 +00001060 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +00001061 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001062
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001063 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
1064 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
1065 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
1066 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
1067 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +00001068
Nate Begeman14d12ca2008-02-11 04:19:36 +00001069 // i8 and i16 vectors are custom , because the source register and source
1070 // source memory operand types are not the same width. f32 vectors are
1071 // custom since the immediate controlling the insert encodes additional
1072 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +00001073 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
1074 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
1075 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
1076 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001077
Owen Anderson825b72b2009-08-11 20:47:22 +00001078 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001082
Pete Coopera77214a2011-11-14 19:38:42 +00001083 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +00001084 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +00001085 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +00001086 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
1087 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001088 }
1089 }
Evan Cheng470a6ad2006-02-22 02:26:30 +00001090
Craig Topper1accb7e2012-01-10 06:54:16 +00001091 if (Subtarget->hasSSE2()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001092 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001093 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001094
Nadav Rotem43012222011-05-11 08:12:09 +00001095 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001096 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001097
Nadav Rotem43012222011-05-11 08:12:09 +00001098 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +00001099 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001100
Michael Liao5c5f1902013-03-20 02:28:20 +00001101 // In the customized shift lowering, the legal cases in AVX2 will be
1102 // recognized.
1103 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
1104 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001105
Michael Liao5c5f1902013-03-20 02:28:20 +00001106 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
1107 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001108
Michael Liao5c5f1902013-03-20 02:28:20 +00001109 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001110
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001111 setOperationAction(ISD::SDIV, MVT::v8i16, Custom);
1112 setOperationAction(ISD::SDIV, MVT::v4i32, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001113 }
1114
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001115 if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
Craig Topperc9099502012-04-20 06:31:50 +00001116 addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
1117 addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118 addRegisterClass(MVT::v8i32, &X86::VR256RegClass);
1119 addRegisterClass(MVT::v8f32, &X86::VR256RegClass);
1120 addRegisterClass(MVT::v4i64, &X86::VR256RegClass);
1121 addRegisterClass(MVT::v4f64, &X86::VR256RegClass);
David Greened94c1012009-06-29 22:50:51 +00001122
Owen Anderson825b72b2009-08-11 20:47:22 +00001123 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001124 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1125 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001126
Owen Anderson825b72b2009-08-11 20:47:22 +00001127 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1128 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1129 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1130 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1131 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001132 setOperationAction(ISD::FFLOOR, MVT::v8f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001133 setOperationAction(ISD::FCEIL, MVT::v8f32, Legal);
1134 setOperationAction(ISD::FTRUNC, MVT::v8f32, Legal);
1135 setOperationAction(ISD::FRINT, MVT::v8f32, Legal);
1136 setOperationAction(ISD::FNEARBYINT, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001137 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001138 setOperationAction(ISD::FABS, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001139
Owen Anderson825b72b2009-08-11 20:47:22 +00001140 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1141 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1142 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1143 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1144 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001145 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001146 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
1147 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
1148 setOperationAction(ISD::FRINT, MVT::v4f64, Legal);
1149 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001150 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001151 setOperationAction(ISD::FABS, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001152
Michael Liaobedcbd42012-10-16 18:14:11 +00001153 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1154
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001155 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
Benjamin Kramerb8f0d892013-03-31 12:49:15 +00001156 setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001157 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001158 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001159
Michael Liaoa7554632012-10-23 17:36:08 +00001160 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1161 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1162
Michael Liaob8150d82012-09-10 18:33:51 +00001163 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1164
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001165 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1166 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1167
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001168 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1169 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1170
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001171 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001172 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001173
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001174 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1175
Duncan Sands28b77e92011-09-06 19:07:46 +00001176 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1177 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1178 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1179 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001180
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001181 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1182 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1183 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1184
Craig Topperaaa643c2011-11-09 07:28:55 +00001185 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1186 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1187 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1188 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001189
Nadav Rotem0509db22012-12-28 05:45:24 +00001190 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1191 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001192 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001193 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1194 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001195 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001196 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1197 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001198 setOperationAction(ISD::ANY_EXTEND, MVT::v16i16, Custom);
1199 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1200 setOperationAction(ISD::TRUNCATE, MVT::v8i16, Custom);
1201 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001202
Craig Topperbf404372012-08-31 15:40:30 +00001203 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001204 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1205 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1206 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1207 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1208 setOperationAction(ISD::FMA, MVT::f32, Legal);
1209 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001210 }
Craig Topper880ef452012-08-11 22:34:26 +00001211
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001212 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001213 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1214 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1215 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1216 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001217
Craig Topperaaa643c2011-11-09 07:28:55 +00001218 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1219 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1220 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1221 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001222
Craig Topperaaa643c2011-11-09 07:28:55 +00001223 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1224 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1225 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001226 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001227
1228 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001229
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001230 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001231 } else {
1232 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1233 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1234 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1235 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1236
1237 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1238 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1239 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1240 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1241
1242 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1243 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1244 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1245 // Don't lower v32i8 because there is no 128-bit byte mul
1246 }
Craig Topper13894fa2011-08-24 06:14:18 +00001247
Michael Liao5c5f1902013-03-20 02:28:20 +00001248 // In the customized shift lowering, the legal cases in AVX2 will be
1249 // recognized.
1250 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1251 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1252
1253 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1254 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1255
1256 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1257
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001258 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001259 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1260 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001261 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001262
1263 // Extract subvector is special because the value type
1264 // (result) is 128-bit but the source is 256-bit wide.
1265 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001266 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001267
1268 // Do not attempt to custom lower other non-256-bit vectors
1269 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001270 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001271
Craig Topper0d1f1762012-08-12 00:34:56 +00001272 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1273 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1274 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1275 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1276 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1277 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1278 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001279 }
1280
David Greene54d8eba2011-01-27 22:38:56 +00001281 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001282 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001283 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001284
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001285 // Do not attempt to promote non-256-bit vectors
1286 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001287 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001288
Craig Topper0d1f1762012-08-12 00:34:56 +00001289 setOperationAction(ISD::AND, VT, Promote);
1290 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1291 setOperationAction(ISD::OR, VT, Promote);
1292 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1293 setOperationAction(ISD::XOR, VT, Promote);
1294 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1295 setOperationAction(ISD::LOAD, VT, Promote);
1296 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1297 setOperationAction(ISD::SELECT, VT, Promote);
1298 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001299 }
David Greene9b9838d2009-06-29 16:47:10 +00001300 }
1301
Elena Demikhovsky83952512013-07-31 11:35:14 +00001302 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1303 addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1304 addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1305 addRegisterClass(MVT::v8i64, &X86::VR512RegClass);
1306 addRegisterClass(MVT::v8f64, &X86::VR512RegClass);
1307
1308 addRegisterClass(MVT::v8i1, &X86::VK8RegClass);
1309 addRegisterClass(MVT::v16i1, &X86::VK16RegClass);
1310
1311 setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, Legal);
1312 setOperationAction(ISD::LOAD, MVT::v16f32, Legal);
1313 setOperationAction(ISD::LOAD, MVT::v8f64, Legal);
1314 setOperationAction(ISD::LOAD, MVT::v8i64, Legal);
1315 setOperationAction(ISD::LOAD, MVT::v16i32, Legal);
1316 setOperationAction(ISD::LOAD, MVT::v16i1, Legal);
1317
1318 setOperationAction(ISD::FADD, MVT::v16f32, Legal);
1319 setOperationAction(ISD::FSUB, MVT::v16f32, Legal);
1320 setOperationAction(ISD::FMUL, MVT::v16f32, Legal);
1321 setOperationAction(ISD::FDIV, MVT::v16f32, Legal);
1322 setOperationAction(ISD::FSQRT, MVT::v16f32, Legal);
1323 setOperationAction(ISD::FNEG, MVT::v16f32, Custom);
1324
1325 setOperationAction(ISD::FADD, MVT::v8f64, Legal);
1326 setOperationAction(ISD::FSUB, MVT::v8f64, Legal);
1327 setOperationAction(ISD::FMUL, MVT::v8f64, Legal);
1328 setOperationAction(ISD::FDIV, MVT::v8f64, Legal);
1329 setOperationAction(ISD::FSQRT, MVT::v8f64, Legal);
1330 setOperationAction(ISD::FNEG, MVT::v8f64, Custom);
1331 setOperationAction(ISD::FMA, MVT::v8f64, Legal);
1332 setOperationAction(ISD::FMA, MVT::v16f32, Legal);
1333 setOperationAction(ISD::SDIV, MVT::v16i32, Custom);
1334
Elena Demikhovsky714319a2013-10-06 13:11:09 +00001335 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal);
1336 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal);
1337 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal);
1338 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal);
1339 if (Subtarget->is64Bit()) {
1340 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Legal);
1341 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Legal);
1342 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Legal);
1343 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Legal);
1344 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001345 setOperationAction(ISD::FP_TO_SINT, MVT::v16i32, Legal);
1346 setOperationAction(ISD::FP_TO_UINT, MVT::v16i32, Legal);
1347 setOperationAction(ISD::FP_TO_UINT, MVT::v8i32, Legal);
1348 setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal);
1349 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1350 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1351 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1352 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1353
1354 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1355 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1356 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1357 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1358 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1359 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1360 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1361 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1362 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1363 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1364 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1365 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1366
1367 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1368 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1369 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1370 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1371 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1372
1373 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1374 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1375
1376 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1377
1378 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1379 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1380 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1381 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1382 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1383
1384 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1385 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1386
1387 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1388 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1389
1390 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1391
1392 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1393 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1394
1395 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1396 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1397
1398 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1399 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1400
1401 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1402 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1403 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001404 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1405 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1406 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001407
1408 // Custom lower several nodes.
1409 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1410 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1411 MVT VT = (MVT::SimpleValueType)i;
1412
Elena Demikhovsky07801792013-08-01 13:34:06 +00001413 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001414 // Extract subvector is special because the value type
1415 // (result) is 256/128-bit but the source is 512-bit wide.
1416 if (VT.is128BitVector() || VT.is256BitVector())
1417 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1418
1419 if (VT.getVectorElementType() == MVT::i1)
1420 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1421
1422 // Do not attempt to custom lower other non-512-bit vectors
1423 if (!VT.is512BitVector())
1424 continue;
1425
Elena Demikhovsky07801792013-08-01 13:34:06 +00001426 if ( EltSize >= 32) {
1427 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1428 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1429 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1430 setOperationAction(ISD::VSELECT, VT, Legal);
1431 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1432 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1433 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1434 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001435 }
1436 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1437 MVT VT = (MVT::SimpleValueType)i;
1438
1439 // Do not attempt to promote non-256-bit vectors
1440 if (!VT.is512BitVector())
1441 continue;
1442
Elena Demikhovsky83952512013-07-31 11:35:14 +00001443 setOperationAction(ISD::SELECT, VT, Promote);
1444 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1445 }
1446 }// has AVX-512
1447
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001448 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1449 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001450 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1451 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001452 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1453 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001454 }
1455
Evan Cheng6be2c582006-04-05 23:38:46 +00001456 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001457 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001458 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001459 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001460
Eli Friedman962f5492010-06-02 19:35:46 +00001461 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1462 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001463 //
Eli Friedman962f5492010-06-02 19:35:46 +00001464 // FIXME: We really should do custom legalization for addition and
1465 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1466 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001467 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1468 // Add/Sub/Mul with overflow operations are custom lowered.
1469 MVT VT = IntVTs[i];
1470 setOperationAction(ISD::SADDO, VT, Custom);
1471 setOperationAction(ISD::UADDO, VT, Custom);
1472 setOperationAction(ISD::SSUBO, VT, Custom);
1473 setOperationAction(ISD::USUBO, VT, Custom);
1474 setOperationAction(ISD::SMULO, VT, Custom);
1475 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001476 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001477
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001478 // There are no 8-bit 3-address imul/mul instructions
1479 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1480 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001481
Evan Chengd54f2d52009-03-31 19:38:51 +00001482 if (!Subtarget->is64Bit()) {
1483 // These libcalls are not available in 32-bit.
1484 setLibcallName(RTLIB::SHL_I128, 0);
1485 setLibcallName(RTLIB::SRL_I128, 0);
1486 setLibcallName(RTLIB::SRA_I128, 0);
1487 }
1488
Evan Cheng8688a582013-01-29 02:32:37 +00001489 // Combine sin / cos into one node or libcall if possible.
1490 if (Subtarget->hasSinCos()) {
1491 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1492 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001493 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001494 // For MacOSX, we don't want to the normal expansion of a libcall to
1495 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1496 // traffic.
1497 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1498 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1499 }
1500 }
1501
Evan Cheng206ee9d2006-07-07 08:33:52 +00001502 // We have target-specific dag combine patterns for the following nodes:
1503 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001504 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001505 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001506 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001507 setTargetDAGCombine(ISD::SHL);
1508 setTargetDAGCombine(ISD::SRA);
1509 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001510 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001511 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001512 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001513 setTargetDAGCombine(ISD::FADD);
1514 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001515 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001516 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001517 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001518 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001519 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001520 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001521 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001522 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001523 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001524 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001525 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001526 if (Subtarget->is64Bit())
1527 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001528 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001529
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001530 computeRegisterProperties();
1531
Evan Cheng05219282011-01-06 06:52:41 +00001532 // On Darwin, -Os means optimize for size without hurting performance,
1533 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001534 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1535 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1536 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1537 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1538 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1539 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001540 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001541
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001542 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001543 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001544
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001545 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001546}
1547
Matt Arsenault225ed702013-05-18 00:21:46 +00001548EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Juergen Ributzka189c6232013-09-21 15:09:46 +00001549 if (!VT.isVector()) return MVT::i8;
Duncan Sands28b77e92011-09-06 19:07:46 +00001550 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001551}
1552
Evan Cheng29286502008-01-23 23:17:41 +00001553/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1554/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001555static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001556 if (MaxAlign == 16)
1557 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001558 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001559 if (VTy->getBitWidth() == 128)
1560 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001561 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001562 unsigned EltAlign = 0;
1563 getMaxByValAlign(ATy->getElementType(), EltAlign);
1564 if (EltAlign > MaxAlign)
1565 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001566 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001567 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1568 unsigned EltAlign = 0;
1569 getMaxByValAlign(STy->getElementType(i), EltAlign);
1570 if (EltAlign > MaxAlign)
1571 MaxAlign = EltAlign;
1572 if (MaxAlign == 16)
1573 break;
1574 }
1575 }
Evan Cheng29286502008-01-23 23:17:41 +00001576}
1577
1578/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1579/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001580/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1581/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001582unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001583 if (Subtarget->is64Bit()) {
1584 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001585 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001586 if (TyAlign > 8)
1587 return TyAlign;
1588 return 8;
1589 }
1590
Evan Cheng29286502008-01-23 23:17:41 +00001591 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001592 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001593 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001594 return Align;
1595}
Chris Lattner2b02a442007-02-25 08:29:00 +00001596
Evan Chengf0df0312008-05-15 08:39:06 +00001597/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001598/// and store operations as a result of memset, memcpy, and memmove
1599/// lowering. If DstAlign is zero that means it's safe to destination
1600/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1601/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001602/// probably because the source does not need to be loaded. If 'IsMemset' is
1603/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1604/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1605/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001606/// It returns EVT::Other if the type should be determined using generic
1607/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001608EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001609X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1610 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001611 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001612 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001613 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001614 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001615 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001616 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1617 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001618 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001619 (Subtarget->isUnalignedMemAccessFast() ||
1620 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001621 (SrcAlign == 0 || SrcAlign >= 16)))) {
1622 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001623 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001624 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001625 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001626 return MVT::v8f32;
1627 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001628 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001629 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001630 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001631 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001632 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001633 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001634 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001635 // Do not use f64 to lower memcpy if source is string constant. It's
1636 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001637 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001638 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001639 }
Evan Chengf0df0312008-05-15 08:39:06 +00001640 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001641 return MVT::i64;
1642 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001643}
1644
Evan Cheng7d342672012-12-12 01:32:07 +00001645bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001646 if (VT == MVT::f32)
1647 return X86ScalarSSEf32;
1648 else if (VT == MVT::f64)
1649 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001650 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001651}
1652
Evan Cheng376642e2012-12-10 23:21:26 +00001653bool
1654X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1655 if (Fast)
1656 *Fast = Subtarget->isUnalignedMemAccessFast();
1657 return true;
1658}
1659
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001660/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1661/// current function. The returned value is a member of the
1662/// MachineJumpTableInfo::JTEntryKind enum.
1663unsigned X86TargetLowering::getJumpTableEncoding() const {
1664 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1665 // symbol.
1666 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1667 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001668 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001669
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001670 // Otherwise, use the normal jump table encoding heuristics.
1671 return TargetLowering::getJumpTableEncoding();
1672}
1673
Chris Lattnerc64daab2010-01-26 05:02:42 +00001674const MCExpr *
1675X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1676 const MachineBasicBlock *MBB,
1677 unsigned uid,MCContext &Ctx) const{
1678 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1679 Subtarget->isPICStyleGOT());
1680 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1681 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001682 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1683 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001684}
1685
Evan Chengcc415862007-11-09 01:32:10 +00001686/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1687/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001688SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001689 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001690 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001691 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001692 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001693 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001694 return Table;
1695}
1696
Chris Lattner589c6f62010-01-26 06:28:43 +00001697/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1698/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1699/// MCExpr.
1700const MCExpr *X86TargetLowering::
1701getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1702 MCContext &Ctx) const {
1703 // X86-64 uses RIP relative addressing based on the jump table label.
1704 if (Subtarget->isPICStyleRIPRel())
1705 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1706
1707 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001708 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001709}
1710
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001711// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001712std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001713X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001714 const TargetRegisterClass *RRC = 0;
1715 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001716 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001717 default:
1718 return TargetLowering::findRepresentativeClass(VT);
1719 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001720 RRC = Subtarget->is64Bit() ?
1721 (const TargetRegisterClass*)&X86::GR64RegClass :
1722 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001723 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001724 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001725 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001726 break;
1727 case MVT::f32: case MVT::f64:
1728 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1729 case MVT::v4f32: case MVT::v2f64:
1730 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1731 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001732 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001733 break;
1734 }
1735 return std::make_pair(RRC, Cost);
1736}
1737
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001738bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1739 unsigned &Offset) const {
1740 if (!Subtarget->isTargetLinux())
1741 return false;
1742
1743 if (Subtarget->is64Bit()) {
1744 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1745 Offset = 0x28;
1746 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1747 AddressSpace = 256;
1748 else
1749 AddressSpace = 257;
1750 } else {
1751 // %gs:0x14 on i386
1752 Offset = 0x14;
1753 AddressSpace = 256;
1754 }
1755 return true;
1756}
1757
Chris Lattner2b02a442007-02-25 08:29:00 +00001758//===----------------------------------------------------------------------===//
1759// Return Value Calling Convention Implementation
1760//===----------------------------------------------------------------------===//
1761
Chris Lattner59ed56b2007-02-28 04:55:35 +00001762#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001763
Michael J. Spencerec38de22010-10-10 22:04:20 +00001764bool
Eric Christopher471e4222011-06-08 23:55:35 +00001765X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001766 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001767 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001768 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001769 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001770 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001771 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001772 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001773}
1774
Dan Gohman98ca4f22009-08-05 01:29:28 +00001775SDValue
1776X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001777 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001778 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001779 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001780 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001781 MachineFunction &MF = DAG.getMachineFunction();
1782 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001783
Chris Lattner9774c912007-02-27 05:28:59 +00001784 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001785 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001786 RVLocs, *DAG.getContext());
1787 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001788
Dan Gohman475871a2008-07-27 21:46:04 +00001789 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001790 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001791 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1792 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001793 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1794 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001796 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001797 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1798 CCValAssign &VA = RVLocs[i];
1799 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001800 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001801 EVT ValVT = ValToCopy.getValueType();
1802
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001803 // Promote values to the appropriate types
1804 if (VA.getLocInfo() == CCValAssign::SExt)
1805 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1806 else if (VA.getLocInfo() == CCValAssign::ZExt)
1807 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1808 else if (VA.getLocInfo() == CCValAssign::AExt)
1809 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1810 else if (VA.getLocInfo() == CCValAssign::BCvt)
1811 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1812
Dale Johannesenc4510512010-09-24 19:05:48 +00001813 // If this is x86-64, and we disabled SSE, we can't return FP values,
1814 // or SSE or MMX vectors.
1815 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1816 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001817 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001818 report_fatal_error("SSE register return with SSE disabled");
1819 }
1820 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1821 // llvm-gcc has never done it right and no one has noticed, so this
1822 // should be OK for now.
1823 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001824 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001825 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001826
Chris Lattner447ff682008-03-11 03:23:40 +00001827 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1828 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001829 if (VA.getLocReg() == X86::ST0 ||
1830 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001831 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1832 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001833 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001834 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001835 RetOps.push_back(ValToCopy);
1836 // Don't emit a copytoreg.
1837 continue;
1838 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001839
Evan Cheng242b38b2009-02-23 09:03:22 +00001840 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1841 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001842 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001843 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001844 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001845 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001846 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1847 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001848 // If we don't have SSE2 available, convert to v4f32 so the generated
1849 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001850 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001851 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001852 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001853 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001854 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001855
Dale Johannesendd64c412009-02-04 00:33:20 +00001856 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001857 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001858 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001859 }
Dan Gohman61a92132008-04-21 23:59:07 +00001860
Eli Benderskya5597f02013-01-25 22:07:43 +00001861 // The x86-64 ABIs require that for returning structs by value we copy
1862 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001863 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001864 // We saved the argument into a virtual register in the entry block,
1865 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001866 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1867 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001868 MachineFunction &MF = DAG.getMachineFunction();
1869 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1870 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001871 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001872 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001873 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001874
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001875 unsigned RetValReg
1876 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1877 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001878 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001879 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001880
Eli Benderskya5597f02013-01-25 22:07:43 +00001881 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001882 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001883 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001884
Chris Lattner447ff682008-03-11 03:23:40 +00001885 RetOps[0] = Chain; // Update chain.
1886
1887 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001888 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001889 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001890
1891 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001892 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001893}
1894
Evan Chengbf010eb2012-04-10 01:51:00 +00001895bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001896 if (N->getNumValues() != 1)
1897 return false;
1898 if (!N->hasNUsesOfValue(1, 0))
1899 return false;
1900
Evan Chengbf010eb2012-04-10 01:51:00 +00001901 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001902 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001903 if (Copy->getOpcode() == ISD::CopyToReg) {
1904 // If the copy has a glue operand, we conservatively assume it isn't safe to
1905 // perform a tail call.
1906 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1907 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001908 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001909 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001910 return false;
1911
Evan Cheng1bf891a2010-12-01 22:59:46 +00001912 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001913 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001914 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001915 if (UI->getOpcode() != X86ISD::RET_FLAG)
1916 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001917 HasRet = true;
1918 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001919
Evan Chengbf010eb2012-04-10 01:51:00 +00001920 if (!HasRet)
1921 return false;
1922
1923 Chain = TCChain;
1924 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001925}
1926
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001927MVT
1928X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001929 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001930 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001931 // TODO: Is this also valid on 32-bit?
1932 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001933 ReturnMVT = MVT::i8;
1934 else
1935 ReturnMVT = MVT::i32;
1936
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001937 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001938 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001939}
1940
Dan Gohman98ca4f22009-08-05 01:29:28 +00001941/// LowerCallResult - Lower the result values of a call into the
1942/// appropriate copies out of appropriate physical registers.
1943///
1944SDValue
1945X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001946 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001947 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001948 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001949 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001950
Chris Lattnere32bbf62007-02-28 07:09:55 +00001951 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001952 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001953 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001954 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001955 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001956 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001957
Chris Lattner3085e152007-02-25 08:59:22 +00001958 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001959 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001960 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001961 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001962
Torok Edwin3f142c32009-02-01 18:15:56 +00001963 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001964 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001965 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001966 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001967 }
1968
Evan Cheng79fb3b42009-02-20 20:43:02 +00001969 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001970
1971 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001972 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001973 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001974 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001975 // instead.
1976 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1977 // If we prefer to use the value in xmm registers, copy it out as f80 and
1978 // use a truncate to move it from fp stack reg to xmm reg.
1979 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001980 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001981 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001982 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001983 Val = Chain.getValue(0);
1984
1985 // Round the f80 to the right size, which also moves it to the appropriate
1986 // xmm register.
1987 if (CopyVT != VA.getValVT())
1988 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1989 // This truncation won't change the value.
1990 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001991 } else {
1992 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1993 CopyVT, InFlag).getValue(1);
1994 Val = Chain.getValue(0);
1995 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001996 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001997 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001998 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001999
Dan Gohman98ca4f22009-08-05 01:29:28 +00002000 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002001}
2002
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002003//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002004// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002005//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002006// StdCall calling convention seems to be standard for many Windows' API
2007// routines and around. It differs from C calling convention just a little:
2008// callee should clean up the stack, not caller. Symbols should be also
2009// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002010// For info on fast calling convention see Fast Calling Convention (tail call)
2011// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002012
Dan Gohman98ca4f22009-08-05 01:29:28 +00002013/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002014/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002015enum StructReturnType {
2016 NotStructReturn,
2017 RegStructReturn,
2018 StackStructReturn
2019};
2020static StructReturnType
2021callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002022 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002023 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002024
Rafael Espindola1cee7102012-07-25 13:41:10 +00002025 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2026 if (!Flags.isSRet())
2027 return NotStructReturn;
2028 if (Flags.isInReg())
2029 return RegStructReturn;
2030 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002031}
2032
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002033/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002034/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002035static StructReturnType
2036argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002037 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002038 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002039
Rafael Espindola1cee7102012-07-25 13:41:10 +00002040 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2041 if (!Flags.isSRet())
2042 return NotStructReturn;
2043 if (Flags.isInReg())
2044 return RegStructReturn;
2045 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002046}
2047
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002048/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2049/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002050/// the specific parameter attribute. The copy will be passed as a byval
2051/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002052static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002053CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002054 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002055 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002056 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002057
Dale Johannesendd64c412009-02-04 00:33:20 +00002058 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002059 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002060 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002061}
2062
Chris Lattner29689432010-03-11 00:22:57 +00002063/// IsTailCallConvention - Return true if the calling convention is one that
2064/// supports tail call optimization.
2065static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002066 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2067 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002068}
2069
Charles Davisac226bb2013-07-12 06:02:35 +00002070/// \brief Return true if the calling convention is a C calling convention.
2071static bool IsCCallConvention(CallingConv::ID CC) {
2072 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2073 CC == CallingConv::X86_64_SysV);
2074}
2075
Evan Cheng485fafc2011-03-21 01:19:09 +00002076bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002077 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002078 return false;
2079
2080 CallSite CS(CI);
2081 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002082 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002083 return false;
2084
2085 return true;
2086}
2087
Evan Cheng0c439eb2010-01-27 00:07:07 +00002088/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2089/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002090static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2091 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002092 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002093}
2094
Dan Gohman98ca4f22009-08-05 01:29:28 +00002095SDValue
2096X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002097 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002098 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002099 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002100 const CCValAssign &VA,
2101 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002102 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002103 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002104 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002105 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2106 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002107 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002108 EVT ValVT;
2109
2110 // If value is passed by pointer we have address passed instead of the value
2111 // itself.
2112 if (VA.getLocInfo() == CCValAssign::Indirect)
2113 ValVT = VA.getLocVT();
2114 else
2115 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002116
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002117 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002118 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002119 // In case of tail call optimization mark all arguments mutable. Since they
2120 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002121 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002122 unsigned Bytes = Flags.getByValSize();
2123 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2124 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002125 return DAG.getFrameIndex(FI, getPointerTy());
2126 } else {
2127 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002128 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002129 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2130 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002131 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002132 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002133 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002134}
2135
Dan Gohman475871a2008-07-27 21:46:04 +00002136SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002137X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002138 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002139 bool isVarArg,
2140 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002141 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002142 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002143 SmallVectorImpl<SDValue> &InVals)
2144 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002145 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002146 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002147
Gordon Henriksen86737662008-01-05 16:56:59 +00002148 const Function* Fn = MF.getFunction();
2149 if (Fn->hasExternalLinkage() &&
2150 Subtarget->isTargetCygMing() &&
2151 Fn->getName() == "main")
2152 FuncInfo->setForceFramePointer(true);
2153
Evan Cheng1bc78042006-04-26 01:20:17 +00002154 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002155 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002156 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002157 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002158
Chris Lattner29689432010-03-11 00:22:57 +00002159 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002160 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002161
Chris Lattner638402b2007-02-28 07:00:42 +00002162 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002163 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002164 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002165 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002166
2167 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002168 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002169 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002170
Duncan Sands45907662010-10-31 13:21:44 +00002171 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002172
Chris Lattnerf39f7712007-02-28 05:46:49 +00002173 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002174 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002175 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2176 CCValAssign &VA = ArgLocs[i];
2177 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2178 // places.
2179 assert(VA.getValNo() != LastVal &&
2180 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002181 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002182 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002183
Chris Lattnerf39f7712007-02-28 05:46:49 +00002184 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002185 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002186 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002187 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002188 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002189 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002190 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002191 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002192 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002193 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002194 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002195 else if (RegVT.is512BitVector())
2196 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002197 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002198 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002199 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002200 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002201 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002202 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002203 else if (RegVT == MVT::v8i1)
2204 RC = &X86::VK8RegClass;
2205 else if (RegVT == MVT::v16i1)
2206 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002207 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002208 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002209
Devang Patel68e6bee2011-02-21 23:21:26 +00002210 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002211 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002212
Chris Lattnerf39f7712007-02-28 05:46:49 +00002213 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2214 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2215 // right size.
2216 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002217 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002218 DAG.getValueType(VA.getValVT()));
2219 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002220 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002221 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002222 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002223 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002224
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002225 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002226 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002227 if (RegVT.isVector())
2228 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2229 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002230 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002231 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002232 } else {
2233 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002234 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002235 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002236
2237 // If value is passed via pointer - do a load.
2238 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002239 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002240 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002241
Dan Gohman98ca4f22009-08-05 01:29:28 +00002242 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002243 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002244
Eli Benderskya5597f02013-01-25 22:07:43 +00002245 // The x86-64 ABIs require that for returning structs by value we copy
2246 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002247 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002248 // Save the argument into a virtual register so that we can access it
2249 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002250 if (MF.getFunction()->hasStructRetAttr() &&
2251 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002252 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2253 unsigned Reg = FuncInfo->getSRetReturnReg();
2254 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002255 MVT PtrTy = getPointerTy();
2256 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002257 FuncInfo->setSRetReturnReg(Reg);
2258 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002259 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002260 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002261 }
2262
Chris Lattnerf39f7712007-02-28 05:46:49 +00002263 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002264 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002265 if (FuncIsMadeTailCallSafe(CallConv,
2266 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002267 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002268
Evan Cheng1bc78042006-04-26 01:20:17 +00002269 // If the function takes variable number of arguments, make a frame index for
2270 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002271 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002272 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2273 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002274 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002275 }
2276 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002277 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2278
2279 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002280 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002281 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002282 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002283 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002284 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2285 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002286 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002287 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2288 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2289 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002290 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002291 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002292
2293 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002294 // The XMM registers which might contain var arg parameters are shadowed
2295 // in their paired GPR. So we only need to save the GPR to their home
2296 // slots.
2297 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002298 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002299 } else {
2300 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2301 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002302
Chad Rosier30450e82011-12-22 22:35:21 +00002303 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2304 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002305 }
2306 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2307 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002308
Bill Wendling831737d2012-12-30 10:32:01 +00002309 bool NoImplicitFloatOps = Fn->getAttributes().
2310 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002311 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002312 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002313 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2314 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002315 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002316 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002317 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002318 // Kernel mode asks for SSE to be disabled, so don't push them
2319 // on the stack.
2320 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002321
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002322 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002323 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002324 // Get to the caller-allocated home save location. Add 8 to account
2325 // for the return address.
2326 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002327 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002328 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002329 // Fixup to set vararg frame on shadow area (4 x i64).
2330 if (NumIntRegs < 4)
2331 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002332 } else {
2333 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002334 // registers, then we must store them to their spots on the stack so
2335 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002336 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2337 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2338 FuncInfo->setRegSaveFrameIndex(
2339 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002340 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002341 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002342
Gordon Henriksen86737662008-01-05 16:56:59 +00002343 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002344 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002345 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2346 getPointerTy());
2347 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002348 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002349 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2350 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002351 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002352 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002353 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002354 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002355 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002356 MachinePointerInfo::getFixedStack(
2357 FuncInfo->getRegSaveFrameIndex(), Offset),
2358 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002359 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002360 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002361 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002362
Dan Gohmanface41a2009-08-16 21:24:25 +00002363 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2364 // Now store the XMM (fp + vector) parameter registers.
2365 SmallVector<SDValue, 11> SaveXMMOps;
2366 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002367
Craig Topperc9099502012-04-20 06:31:50 +00002368 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002369 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2370 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002371
Dan Gohman1e93df62010-04-17 14:41:14 +00002372 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2373 FuncInfo->getRegSaveFrameIndex()));
2374 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2375 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002376
Dan Gohmanface41a2009-08-16 21:24:25 +00002377 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002378 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002379 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002380 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2381 SaveXMMOps.push_back(Val);
2382 }
2383 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2384 MVT::Other,
2385 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002386 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002387
2388 if (!MemOps.empty())
2389 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2390 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002391 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002393
Gordon Henriksen86737662008-01-05 16:56:59 +00002394 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002395 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2396 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002397 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002398 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002399 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002400 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002401 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002402 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002403 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002404 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002405
Gordon Henriksen86737662008-01-05 16:56:59 +00002406 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002407 // RegSaveFrameIndex is X86-64 only.
2408 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002409 if (CallConv == CallingConv::X86_FastCall ||
2410 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002411 // fastcc functions can't have varargs.
2412 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002413 }
Evan Cheng25caf632006-05-23 21:06:34 +00002414
Rafael Espindola76927d752011-08-30 19:39:58 +00002415 FuncInfo->setArgumentStackSize(StackSize);
2416
Dan Gohman98ca4f22009-08-05 01:29:28 +00002417 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002418}
2419
Dan Gohman475871a2008-07-27 21:46:04 +00002420SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002421X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2422 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002423 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002424 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002425 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002426 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002427 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002428 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002429 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002430 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002431
2432 return DAG.getStore(Chain, dl, Arg, PtrOff,
2433 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002434 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002435}
2436
Bill Wendling64e87322009-01-16 19:25:27 +00002437/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002438/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002439SDValue
2440X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002441 SDValue &OutRetAddr, SDValue Chain,
2442 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002443 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002444 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002445 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002446 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002447
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002448 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002449 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002450 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002451 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002452}
2453
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002454/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002455/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002456static SDValue
2457EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002458 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002459 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002460 // Store the return address to the appropriate stack slot.
2461 if (!FPDiff) return Chain;
2462 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002463 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002464 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2465 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002466 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002467 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002468 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002469 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002470 return Chain;
2471}
2472
Dan Gohman98ca4f22009-08-05 01:29:28 +00002473SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002474X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002475 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002476 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002477 SDLoc &dl = CLI.DL;
2478 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2479 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2480 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002481 SDValue Chain = CLI.Chain;
2482 SDValue Callee = CLI.Callee;
2483 CallingConv::ID CallConv = CLI.CallConv;
2484 bool &isTailCall = CLI.IsTailCall;
2485 bool isVarArg = CLI.IsVarArg;
2486
Dan Gohman98ca4f22009-08-05 01:29:28 +00002487 MachineFunction &MF = DAG.getMachineFunction();
2488 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002489 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002490 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002491 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002492 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002493
Nick Lewycky22de16d2012-01-19 00:34:10 +00002494 if (MF.getTarget().Options.DisableTailCalls)
2495 isTailCall = false;
2496
Evan Cheng5f941932010-02-05 02:21:12 +00002497 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002498 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002499 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002500 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002501 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002502 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002503
2504 // Sibcalls are automatically detected tailcalls which do not require
2505 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002506 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002507 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002508
2509 if (isTailCall)
2510 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002511 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002512
Chris Lattner29689432010-03-11 00:22:57 +00002513 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002514 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002515
Chris Lattner638402b2007-02-28 07:00:42 +00002516 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002517 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002518 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002519 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002520
2521 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002522 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002523 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002524
Duncan Sands45907662010-10-31 13:21:44 +00002525 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002526
Chris Lattner423c5f42007-02-28 05:31:48 +00002527 // Get a count of how many bytes are to be pushed on the stack.
2528 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002529 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002530 // This is a sibcall. The memory operands are available in caller's
2531 // own caller's stack.
2532 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002533 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2534 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002535 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002536
Gordon Henriksen86737662008-01-05 16:56:59 +00002537 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002538 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002539 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002540 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2541 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2542
Gordon Henriksen86737662008-01-05 16:56:59 +00002543 FPDiff = NumBytesCallerPushed - NumBytes;
2544
2545 // Set the delta of movement of the returnaddr stackslot.
2546 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002547 if (FPDiff < X86Info->getTCReturnAddrDelta())
2548 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002549 }
2550
Evan Chengf22f9b32010-02-06 03:28:46 +00002551 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002552 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2553 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002554
Dan Gohman475871a2008-07-27 21:46:04 +00002555 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002556 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002557 if (isTailCall && FPDiff)
2558 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2559 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002560
Dan Gohman475871a2008-07-27 21:46:04 +00002561 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2562 SmallVector<SDValue, 8> MemOpChains;
2563 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002564
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002565 // Walk the register/memloc assignments, inserting copies/loads. In the case
2566 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002567 const X86RegisterInfo *RegInfo =
2568 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002569 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2570 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002571 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002572 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002573 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002574 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002575
Chris Lattner423c5f42007-02-28 05:31:48 +00002576 // Promote the value if needed.
2577 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002578 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002579 case CCValAssign::Full: break;
2580 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002581 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002582 break;
2583 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002584 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002585 break;
2586 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002587 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002588 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002589 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002590 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2591 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002592 } else
2593 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2594 break;
2595 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002596 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002597 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002598 case CCValAssign::Indirect: {
2599 // Store the argument.
2600 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002601 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002602 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002603 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002604 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002605 Arg = SpillSlot;
2606 break;
2607 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002608 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002609
Chris Lattner423c5f42007-02-28 05:31:48 +00002610 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002611 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2612 if (isVarArg && IsWin64) {
2613 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2614 // shadow reg if callee is a varargs function.
2615 unsigned ShadowReg = 0;
2616 switch (VA.getLocReg()) {
2617 case X86::XMM0: ShadowReg = X86::RCX; break;
2618 case X86::XMM1: ShadowReg = X86::RDX; break;
2619 case X86::XMM2: ShadowReg = X86::R8; break;
2620 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002621 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002622 if (ShadowReg)
2623 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002624 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002625 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002626 assert(VA.isMemLoc());
2627 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002628 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2629 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002630 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2631 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002632 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002633 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002634
Evan Cheng32fe1032006-05-25 00:59:30 +00002635 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002636 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002637 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002638
Chris Lattner88e1fd52009-07-09 04:24:46 +00002639 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002640 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2641 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002642 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002643 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002644 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002645 } else {
2646 // If we are tail calling and generating PIC/GOT style code load the
2647 // address of the callee into ECX. The value in ecx is used as target of
2648 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2649 // for tail calls on PIC/GOT architectures. Normally we would just put the
2650 // address of GOT into ebx and then call target@PLT. But for tail calls
2651 // ebx would be restored (since ebx is callee saved) before jumping to the
2652 // target@PLT.
2653
2654 // Note: The actual moving to ECX is done further down.
2655 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2656 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2657 !G->getGlobal()->hasProtectedVisibility())
2658 Callee = LowerGlobalAddress(Callee, DAG);
2659 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002660 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002661 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002662 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002663
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002664 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002665 // From AMD64 ABI document:
2666 // For calls that may call functions that use varargs or stdargs
2667 // (prototype-less calls or calls to functions containing ellipsis (...) in
2668 // the declaration) %al is used as hidden argument to specify the number
2669 // of SSE registers used. The contents of %al do not need to match exactly
2670 // the number of registers, but must be an ubound on the number of SSE
2671 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002672
Gordon Henriksen86737662008-01-05 16:56:59 +00002673 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002674 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002675 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2676 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2677 };
2678 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002679 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002680 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002681
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002682 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2683 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002684 }
2685
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002686 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002687 if (isTailCall) {
2688 // Force all the incoming stack arguments to be loaded from the stack
2689 // before any new outgoing arguments are stored to the stack, because the
2690 // outgoing stack slots may alias the incoming argument stack slots, and
2691 // the alias isn't otherwise explicit. This is slightly more conservative
2692 // than necessary, because it means that each store effectively depends
2693 // on every argument instead of just those arguments it would clobber.
2694 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2695
Dan Gohman475871a2008-07-27 21:46:04 +00002696 SmallVector<SDValue, 8> MemOpChains2;
2697 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002698 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002699 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002700 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2701 CCValAssign &VA = ArgLocs[i];
2702 if (VA.isRegLoc())
2703 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002704 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002705 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002706 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002707 // Create frame index.
2708 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002709 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002710 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002711 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002712
Duncan Sands276dcbd2008-03-21 09:14:45 +00002713 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002714 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002715 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002716 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002717 StackPtr = DAG.getCopyFromReg(Chain, dl,
2718 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002719 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002720 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002721
Dan Gohman98ca4f22009-08-05 01:29:28 +00002722 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2723 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002724 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002725 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002726 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002727 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002728 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002729 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002730 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002731 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002732 }
2733 }
2734
2735 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002736 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002737 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002738
2739 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002740 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2741 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002742 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002743 }
2744
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002745 // Build a sequence of copy-to-reg nodes chained together with token chain
2746 // and flag operands which copy the outgoing args into registers.
2747 SDValue InFlag;
2748 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2749 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2750 RegsToPass[i].second, InFlag);
2751 InFlag = Chain.getValue(1);
2752 }
2753
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002754 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2755 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2756 // In the 64-bit large code model, we have to make all calls
2757 // through a register, since the call instruction's 32-bit
2758 // pc-relative offset may not be large enough to hold the whole
2759 // address.
2760 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002761 // If the callee is a GlobalAddress node (quite common, every direct call
2762 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2763 // it.
2764
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002765 // We should use extra load for direct calls to dllimported functions in
2766 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002767 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002768 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002769 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002770 bool ExtraLoad = false;
2771 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002772
Chris Lattner48a7d022009-07-09 05:02:21 +00002773 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2774 // external symbols most go through the PLT in PIC mode. If the symbol
2775 // has hidden or protected visibility, or if it is static or local, then
2776 // we don't need to use the PLT - we can directly call it.
2777 if (Subtarget->isTargetELF() &&
2778 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002779 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002780 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002781 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002782 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002783 (!Subtarget->getTargetTriple().isMacOSX() ||
2784 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002785 // PC-relative references to external symbols should go through $stub,
2786 // unless we're building with the leopard linker or later, which
2787 // automatically synthesizes these stubs.
2788 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002789 } else if (Subtarget->isPICStyleRIPRel() &&
2790 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002791 cast<Function>(GV)->getAttributes().
2792 hasAttribute(AttributeSet::FunctionIndex,
2793 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002794 // If the function is marked as non-lazy, generate an indirect call
2795 // which loads from the GOT directly. This avoids runtime overhead
2796 // at the cost of eager binding (and one extra byte of encoding).
2797 OpFlags = X86II::MO_GOTPCREL;
2798 WrapperKind = X86ISD::WrapperRIP;
2799 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002800 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002801
Devang Patel0d881da2010-07-06 22:08:15 +00002802 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002803 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002804
2805 // Add a wrapper if needed.
2806 if (WrapperKind != ISD::DELETED_NODE)
2807 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2808 // Add extra indirection if needed.
2809 if (ExtraLoad)
2810 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2811 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002812 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002813 }
Bill Wendling056292f2008-09-16 21:48:12 +00002814 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002815 unsigned char OpFlags = 0;
2816
Evan Cheng1bf891a2010-12-01 22:59:46 +00002817 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2818 // external symbols should go through the PLT.
2819 if (Subtarget->isTargetELF() &&
2820 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2821 OpFlags = X86II::MO_PLT;
2822 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002823 (!Subtarget->getTargetTriple().isMacOSX() ||
2824 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002825 // PC-relative references to external symbols should go through $stub,
2826 // unless we're building with the leopard linker or later, which
2827 // automatically synthesizes these stubs.
2828 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002829 }
Eric Christopherfd179292009-08-27 18:07:15 +00002830
Chris Lattner48a7d022009-07-09 05:02:21 +00002831 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2832 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002833 }
2834
Chris Lattnerd96d0722007-02-25 06:40:16 +00002835 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002836 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002837 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002838
Evan Chengf22f9b32010-02-06 03:28:46 +00002839 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002840 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002841 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002842 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002844
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002845 Ops.push_back(Chain);
2846 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002847
Dan Gohman98ca4f22009-08-05 01:29:28 +00002848 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002849 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002850
Gordon Henriksen86737662008-01-05 16:56:59 +00002851 // Add argument registers to the end of the list so that they are known live
2852 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002853 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2854 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2855 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002856
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002857 // Add a register mask operand representing the call-preserved registers.
2858 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2859 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2860 assert(Mask && "Missing call preserved mask for calling convention");
2861 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002862
Gabor Greifba36cb52008-08-28 21:40:38 +00002863 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002864 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002865
Dan Gohman98ca4f22009-08-05 01:29:28 +00002866 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002867 // We used to do:
2868 //// If this is the first return lowered for this function, add the regs
2869 //// to the liveout set for the function.
2870 // This isn't right, although it's probably harmless on x86; liveouts
2871 // should be computed from returns not tail calls. Consider a void
2872 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002873 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002874 }
2875
Dale Johannesenace16102009-02-03 19:33:06 +00002876 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002877 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002878
Chris Lattner2d297092006-05-23 18:50:38 +00002879 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002880 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002881 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2882 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002883 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002884 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002885 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002886 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002887 // pops the hidden struct pointer, so we have to push it back.
2888 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002889 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002890 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002891 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002892 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002893
Gordon Henriksenae636f82008-01-03 16:47:34 +00002894 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002895 if (!IsSibcall) {
2896 Chain = DAG.getCALLSEQ_END(Chain,
2897 DAG.getIntPtrConstant(NumBytes, true),
2898 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2899 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002900 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002901 InFlag = Chain.getValue(1);
2902 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002903
Chris Lattner3085e152007-02-25 08:59:22 +00002904 // Handle result values, copying them out of physregs into vregs that we
2905 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002906 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2907 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002908}
2909
Evan Cheng25ab6902006-09-08 06:48:29 +00002910//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002911// Fast Calling Convention (tail call) implementation
2912//===----------------------------------------------------------------------===//
2913
2914// Like std call, callee cleans arguments, convention except that ECX is
2915// reserved for storing the tail called function address. Only 2 registers are
2916// free for argument passing (inreg). Tail call optimization is performed
2917// provided:
2918// * tailcallopt is enabled
2919// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002920// On X86_64 architecture with GOT-style position independent code only local
2921// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002922// To keep the stack aligned according to platform abi the function
2923// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2924// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002925// If a tail called function callee has more arguments than the caller the
2926// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002927// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002928// original REtADDR, but before the saved framepointer or the spilled registers
2929// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2930// stack layout:
2931// arg1
2932// arg2
2933// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002934// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002935// move area ]
2936// (possible EBP)
2937// ESI
2938// EDI
2939// local1 ..
2940
2941/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2942/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002943unsigned
2944X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2945 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002946 MachineFunction &MF = DAG.getMachineFunction();
2947 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002948 const X86RegisterInfo *RegInfo =
2949 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002950 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002951 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002952 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002953 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002954 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002955 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2956 // Number smaller than 12 so just add the difference.
2957 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2958 } else {
2959 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002960 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002961 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002962 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002963 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002964}
2965
Evan Cheng5f941932010-02-05 02:21:12 +00002966/// MatchingStackOffset - Return true if the given stack call argument is
2967/// already available in the same position (relatively) of the caller's
2968/// incoming argument stack.
2969static
2970bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2971 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2972 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002973 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2974 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002975 if (Arg.getOpcode() == ISD::CopyFromReg) {
2976 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002977 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002978 return false;
2979 MachineInstr *Def = MRI->getVRegDef(VR);
2980 if (!Def)
2981 return false;
2982 if (!Flags.isByVal()) {
2983 if (!TII->isLoadFromStackSlot(Def, FI))
2984 return false;
2985 } else {
2986 unsigned Opcode = Def->getOpcode();
2987 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2988 Def->getOperand(1).isFI()) {
2989 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002990 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002991 } else
2992 return false;
2993 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002994 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2995 if (Flags.isByVal())
2996 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002997 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002998 // define @foo(%struct.X* %A) {
2999 // tail call @bar(%struct.X* byval %A)
3000 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003001 return false;
3002 SDValue Ptr = Ld->getBasePtr();
3003 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3004 if (!FINode)
3005 return false;
3006 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003007 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003008 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003009 FI = FINode->getIndex();
3010 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003011 } else
3012 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003013
Evan Cheng4cae1332010-03-05 08:38:04 +00003014 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003015 if (!MFI->isFixedObjectIndex(FI))
3016 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003017 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003018}
3019
Dan Gohman98ca4f22009-08-05 01:29:28 +00003020/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3021/// for tail call optimization. Targets which want to do tail call
3022/// optimization should implement this function.
3023bool
3024X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003025 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003026 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003027 bool isCalleeStructRet,
3028 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003029 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003030 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003031 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003032 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003033 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003034 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003035 return false;
3036
Evan Cheng7096ae42010-01-29 06:45:59 +00003037 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003038 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003039 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003040
3041 // If the function return type is x86_fp80 and the callee return type is not,
3042 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3043 // perform a tailcall optimization here.
3044 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3045 return false;
3046
Evan Cheng13617962010-04-30 01:12:32 +00003047 CallingConv::ID CallerCC = CallerF->getCallingConv();
3048 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003049 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3050 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003051
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003052 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003053 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003054 return true;
3055 return false;
3056 }
3057
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003058 // Look for obvious safe cases to perform tail call optimization that do not
3059 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003060
Evan Cheng2c12cb42010-03-26 16:26:03 +00003061 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3062 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003063 const X86RegisterInfo *RegInfo =
3064 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003065 if (RegInfo->needsStackRealignment(MF))
3066 return false;
3067
Evan Chenga375d472010-03-15 18:54:48 +00003068 // Also avoid sibcall optimization if either caller or callee uses struct
3069 // return semantics.
3070 if (isCalleeStructRet || isCallerStructRet)
3071 return false;
3072
Chad Rosier2416da32011-06-24 21:15:36 +00003073 // An stdcall caller is expected to clean up its arguments; the callee
3074 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003075 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003076 return false;
3077
Chad Rosier871f6642011-05-18 19:59:50 +00003078 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003079 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003080 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003081
3082 // Optimizing for varargs on Win64 is unlikely to be safe without
3083 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003084 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003085 return false;
3086
Chad Rosier871f6642011-05-18 19:59:50 +00003087 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003088 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003089 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003090
Chad Rosier871f6642011-05-18 19:59:50 +00003091 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3092 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3093 if (!ArgLocs[i].isRegLoc())
3094 return false;
3095 }
3096
Chad Rosier30450e82011-12-22 22:35:21 +00003097 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3098 // stack. Therefore, if it's not used by the call it is not safe to optimize
3099 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003100 bool Unused = false;
3101 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3102 if (!Ins[i].Used) {
3103 Unused = true;
3104 break;
3105 }
3106 }
3107 if (Unused) {
3108 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003109 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003110 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003111 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003112 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003113 CCValAssign &VA = RVLocs[i];
3114 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3115 return false;
3116 }
3117 }
3118
Evan Cheng13617962010-04-30 01:12:32 +00003119 // If the calling conventions do not match, then we'd better make sure the
3120 // results are returned in the same way as what the caller expects.
3121 if (!CCMatch) {
3122 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003123 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003124 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003125 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3126
3127 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003128 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003129 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003130 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3131
3132 if (RVLocs1.size() != RVLocs2.size())
3133 return false;
3134 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3135 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3136 return false;
3137 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3138 return false;
3139 if (RVLocs1[i].isRegLoc()) {
3140 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3141 return false;
3142 } else {
3143 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3144 return false;
3145 }
3146 }
3147 }
3148
Evan Chenga6bff982010-01-30 01:22:00 +00003149 // If the callee takes no arguments then go on to check the results of the
3150 // call.
3151 if (!Outs.empty()) {
3152 // Check if stack adjustment is needed. For now, do not do this if any
3153 // argument is passed on the stack.
3154 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003155 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003156 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003157
3158 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003159 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003160 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003161
Duncan Sands45907662010-10-31 13:21:44 +00003162 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003163 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003164 MachineFunction &MF = DAG.getMachineFunction();
3165 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3166 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003167
3168 // Check if the arguments are already laid out in the right way as
3169 // the caller's fixed stack objects.
3170 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003171 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3172 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003173 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003174 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3175 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003176 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003177 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003178 if (VA.getLocInfo() == CCValAssign::Indirect)
3179 return false;
3180 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003181 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3182 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003183 return false;
3184 }
3185 }
3186 }
Evan Cheng9c044672010-05-29 01:35:22 +00003187
3188 // If the tailcall address may be in a register, then make sure it's
3189 // possible to register allocate for it. In 32-bit, the call address can
3190 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003191 // callee-saved registers are restored. These happen to be the same
3192 // registers used to pass 'inreg' arguments so watch out for those.
3193 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003194 ((!isa<GlobalAddressSDNode>(Callee) &&
3195 !isa<ExternalSymbolSDNode>(Callee)) ||
3196 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003197 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003198 // In PIC we need an extra register to formulate the address computation
3199 // for the callee.
3200 unsigned MaxInRegs =
3201 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3202
Evan Cheng9c044672010-05-29 01:35:22 +00003203 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3204 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003205 if (!VA.isRegLoc())
3206 continue;
3207 unsigned Reg = VA.getLocReg();
3208 switch (Reg) {
3209 default: break;
3210 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003211 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003212 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003213 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003214 }
3215 }
3216 }
Evan Chenga6bff982010-01-30 01:22:00 +00003217 }
Evan Chengb1712452010-01-27 06:25:16 +00003218
Evan Cheng86809cc2010-02-03 03:28:02 +00003219 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003220}
3221
Dan Gohman3df24e62008-09-03 23:12:08 +00003222FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003223X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3224 const TargetLibraryInfo *libInfo) const {
3225 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003226}
3227
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003228//===----------------------------------------------------------------------===//
3229// Other Lowering Hooks
3230//===----------------------------------------------------------------------===//
3231
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003232static bool MayFoldLoad(SDValue Op) {
3233 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3234}
3235
3236static bool MayFoldIntoStore(SDValue Op) {
3237 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3238}
3239
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003240static bool isTargetShuffle(unsigned Opcode) {
3241 switch(Opcode) {
3242 default: return false;
3243 case X86ISD::PSHUFD:
3244 case X86ISD::PSHUFHW:
3245 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003246 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003247 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003248 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003249 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003250 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003251 case X86ISD::MOVLPS:
3252 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003253 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003254 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003255 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003256 case X86ISD::MOVSS:
3257 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003258 case X86ISD::UNPCKL:
3259 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003260 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003261 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003262 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003263 return true;
3264 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003265}
3266
Andrew Trickac6d9be2013-05-25 02:42:55 +00003267static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003268 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003269 switch(Opc) {
3270 default: llvm_unreachable("Unknown x86 shuffle node");
3271 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003272 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003273 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003274 return DAG.getNode(Opc, dl, VT, V1);
3275 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003276}
3277
Andrew Trickac6d9be2013-05-25 02:42:55 +00003278static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003279 SDValue V1, unsigned TargetMask,
3280 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003281 switch(Opc) {
3282 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003283 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003284 case X86ISD::PSHUFHW:
3285 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003286 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003287 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003288 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3289 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003290}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003291
Andrew Trickac6d9be2013-05-25 02:42:55 +00003292static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003293 SDValue V1, SDValue V2, unsigned TargetMask,
3294 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003295 switch(Opc) {
3296 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003297 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003298 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003299 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003300 return DAG.getNode(Opc, dl, VT, V1, V2,
3301 DAG.getConstant(TargetMask, MVT::i8));
3302 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003303}
3304
Andrew Trickac6d9be2013-05-25 02:42:55 +00003305static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003306 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3307 switch(Opc) {
3308 default: llvm_unreachable("Unknown x86 shuffle node");
3309 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003310 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003311 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003312 case X86ISD::MOVLPS:
3313 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003314 case X86ISD::MOVSS:
3315 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003316 case X86ISD::UNPCKL:
3317 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003318 return DAG.getNode(Opc, dl, VT, V1, V2);
3319 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003320}
3321
Dan Gohmand858e902010-04-17 15:26:15 +00003322SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003323 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003324 const X86RegisterInfo *RegInfo =
3325 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003326 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3327 int ReturnAddrIndex = FuncInfo->getRAIndex();
3328
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003329 if (ReturnAddrIndex == 0) {
3330 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003331 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003332 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3333 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003334 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003335 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003336 }
3337
Evan Cheng25ab6902006-09-08 06:48:29 +00003338 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003339}
3340
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003341bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3342 bool hasSymbolicDisplacement) {
3343 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003344 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003345 return false;
3346
3347 // If we don't have a symbolic displacement - we don't have any extra
3348 // restrictions.
3349 if (!hasSymbolicDisplacement)
3350 return true;
3351
3352 // FIXME: Some tweaks might be needed for medium code model.
3353 if (M != CodeModel::Small && M != CodeModel::Kernel)
3354 return false;
3355
3356 // For small code model we assume that latest object is 16MB before end of 31
3357 // bits boundary. We may also accept pretty large negative constants knowing
3358 // that all objects are in the positive half of address space.
3359 if (M == CodeModel::Small && Offset < 16*1024*1024)
3360 return true;
3361
3362 // For kernel code model we know that all object resist in the negative half
3363 // of 32bits address space. We may not accept negative offsets, since they may
3364 // be just off and we may accept pretty large positive ones.
3365 if (M == CodeModel::Kernel && Offset > 0)
3366 return true;
3367
3368 return false;
3369}
3370
Evan Chengef41ff62011-06-23 17:54:54 +00003371/// isCalleePop - Determines whether the callee is required to pop its
3372/// own arguments. Callee pop is necessary to support tail calls.
3373bool X86::isCalleePop(CallingConv::ID CallingConv,
3374 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3375 if (IsVarArg)
3376 return false;
3377
3378 switch (CallingConv) {
3379 default:
3380 return false;
3381 case CallingConv::X86_StdCall:
3382 return !is64Bit;
3383 case CallingConv::X86_FastCall:
3384 return !is64Bit;
3385 case CallingConv::X86_ThisCall:
3386 return !is64Bit;
3387 case CallingConv::Fast:
3388 return TailCallOpt;
3389 case CallingConv::GHC:
3390 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003391 case CallingConv::HiPE:
3392 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003393 }
3394}
3395
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003396/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3397/// specific condition code, returning the condition code and the LHS/RHS of the
3398/// comparison to make.
3399static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3400 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003401 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003402 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3403 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3404 // X > -1 -> X == 0, jump !sign.
3405 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003406 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003407 }
3408 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003409 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003410 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003411 }
3412 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003413 // X < 1 -> X <= 0
3414 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003415 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003416 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003417 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003418
Evan Chengd9558e02006-01-06 00:43:03 +00003419 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003420 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003421 case ISD::SETEQ: return X86::COND_E;
3422 case ISD::SETGT: return X86::COND_G;
3423 case ISD::SETGE: return X86::COND_GE;
3424 case ISD::SETLT: return X86::COND_L;
3425 case ISD::SETLE: return X86::COND_LE;
3426 case ISD::SETNE: return X86::COND_NE;
3427 case ISD::SETULT: return X86::COND_B;
3428 case ISD::SETUGT: return X86::COND_A;
3429 case ISD::SETULE: return X86::COND_BE;
3430 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003431 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003432 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003433
Chris Lattner4c78e022008-12-23 23:42:27 +00003434 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003435
Chris Lattner4c78e022008-12-23 23:42:27 +00003436 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003437 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3438 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003439 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3440 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003441 }
3442
Chris Lattner4c78e022008-12-23 23:42:27 +00003443 switch (SetCCOpcode) {
3444 default: break;
3445 case ISD::SETOLT:
3446 case ISD::SETOLE:
3447 case ISD::SETUGT:
3448 case ISD::SETUGE:
3449 std::swap(LHS, RHS);
3450 break;
3451 }
3452
3453 // On a floating point condition, the flags are set as follows:
3454 // ZF PF CF op
3455 // 0 | 0 | 0 | X > Y
3456 // 0 | 0 | 1 | X < Y
3457 // 1 | 0 | 0 | X == Y
3458 // 1 | 1 | 1 | unordered
3459 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003460 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003461 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003462 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003463 case ISD::SETOLT: // flipped
3464 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003465 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003466 case ISD::SETOLE: // flipped
3467 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003468 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003469 case ISD::SETUGT: // flipped
3470 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003471 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003472 case ISD::SETUGE: // flipped
3473 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003474 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003475 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003476 case ISD::SETNE: return X86::COND_NE;
3477 case ISD::SETUO: return X86::COND_P;
3478 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003479 case ISD::SETOEQ:
3480 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003481 }
Evan Chengd9558e02006-01-06 00:43:03 +00003482}
3483
Evan Cheng4a460802006-01-11 00:33:36 +00003484/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3485/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003486/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003487static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003488 switch (X86CC) {
3489 default:
3490 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003491 case X86::COND_B:
3492 case X86::COND_BE:
3493 case X86::COND_E:
3494 case X86::COND_P:
3495 case X86::COND_A:
3496 case X86::COND_AE:
3497 case X86::COND_NE:
3498 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003499 return true;
3500 }
3501}
3502
Evan Chengeb2f9692009-10-27 19:56:55 +00003503/// isFPImmLegal - Returns true if the target can instruction select the
3504/// specified FP immediate natively. If false, the legalizer will
3505/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003506bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003507 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3508 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3509 return true;
3510 }
3511 return false;
3512}
3513
Nate Begeman9008ca62009-04-27 18:41:29 +00003514/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3515/// the specified range (L, H].
3516static bool isUndefOrInRange(int Val, int Low, int Hi) {
3517 return (Val < 0) || (Val >= Low && Val < Hi);
3518}
3519
3520/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3521/// specified value.
3522static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003523 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003524}
3525
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003526/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003527/// from position Pos and ending in Pos+Size, falls within the specified
3528/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003529static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003530 unsigned Pos, unsigned Size, int Low) {
3531 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003532 if (!isUndefOrEqual(Mask[i], Low))
3533 return false;
3534 return true;
3535}
3536
Nate Begeman9008ca62009-04-27 18:41:29 +00003537/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3538/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3539/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003540static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003541 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003542 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003543 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003544 return (Mask[0] < 2 && Mask[1] < 2);
3545 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003546}
3547
Nate Begeman9008ca62009-04-27 18:41:29 +00003548/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3549/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003550static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003551 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003552 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003553
Nate Begeman9008ca62009-04-27 18:41:29 +00003554 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003555 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3556 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003557
Evan Cheng506d3df2006-03-29 23:07:14 +00003558 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003559 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003560 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003561 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003562
Craig Toppera9a568a2012-05-02 08:03:44 +00003563 if (VT == MVT::v16i16) {
3564 // Lower quadword copied in order or undef.
3565 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3566 return false;
3567
3568 // Upper quadword shuffled.
3569 for (unsigned i = 12; i != 16; ++i)
3570 if (!isUndefOrInRange(Mask[i], 12, 16))
3571 return false;
3572 }
3573
Evan Cheng506d3df2006-03-29 23:07:14 +00003574 return true;
3575}
3576
Nate Begeman9008ca62009-04-27 18:41:29 +00003577/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3578/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003579static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003580 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003581 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003582
Rafael Espindola15684b22009-04-24 12:40:33 +00003583 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003584 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3585 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003586
Rafael Espindola15684b22009-04-24 12:40:33 +00003587 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003588 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003589 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003590 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003591
Craig Toppera9a568a2012-05-02 08:03:44 +00003592 if (VT == MVT::v16i16) {
3593 // Upper quadword copied in order.
3594 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3595 return false;
3596
3597 // Lower quadword shuffled.
3598 for (unsigned i = 8; i != 12; ++i)
3599 if (!isUndefOrInRange(Mask[i], 8, 12))
3600 return false;
3601 }
3602
Rafael Espindola15684b22009-04-24 12:40:33 +00003603 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003604}
3605
Nate Begemana09008b2009-10-19 02:17:23 +00003606/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3607/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003608static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003609 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003610 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3611 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003612 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003613
Craig Topper0e2037b2012-01-20 05:53:00 +00003614 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003615 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003616 unsigned NumLaneElts = NumElts/NumLanes;
3617
3618 // Do not handle 64-bit element shuffles with palignr.
3619 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003620 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003621
Craig Topper0e2037b2012-01-20 05:53:00 +00003622 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3623 unsigned i;
3624 for (i = 0; i != NumLaneElts; ++i) {
3625 if (Mask[i+l] >= 0)
3626 break;
3627 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003628
Craig Topper0e2037b2012-01-20 05:53:00 +00003629 // Lane is all undef, go to next lane
3630 if (i == NumLaneElts)
3631 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003632
Craig Topper0e2037b2012-01-20 05:53:00 +00003633 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003634
Craig Topper0e2037b2012-01-20 05:53:00 +00003635 // Make sure its in this lane in one of the sources
3636 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3637 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003638 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003639
3640 // If not lane 0, then we must match lane 0
3641 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3642 return false;
3643
3644 // Correct second source to be contiguous with first source
3645 if (Start >= (int)NumElts)
3646 Start -= NumElts - NumLaneElts;
3647
3648 // Make sure we're shifting in the right direction.
3649 if (Start <= (int)(i+l))
3650 return false;
3651
3652 Start -= i;
3653
3654 // Check the rest of the elements to see if they are consecutive.
3655 for (++i; i != NumLaneElts; ++i) {
3656 int Idx = Mask[i+l];
3657
3658 // Make sure its in this lane
3659 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3660 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3661 return false;
3662
3663 // If not lane 0, then we must match lane 0
3664 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3665 return false;
3666
3667 if (Idx >= (int)NumElts)
3668 Idx -= NumElts - NumLaneElts;
3669
3670 if (!isUndefOrEqual(Idx, Start+i))
3671 return false;
3672
3673 }
Nate Begemana09008b2009-10-19 02:17:23 +00003674 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003675
Nate Begemana09008b2009-10-19 02:17:23 +00003676 return true;
3677}
3678
Craig Topper1a7700a2012-01-19 08:19:12 +00003679/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3680/// the two vector operands have swapped position.
3681static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3682 unsigned NumElems) {
3683 for (unsigned i = 0; i != NumElems; ++i) {
3684 int idx = Mask[i];
3685 if (idx < 0)
3686 continue;
3687 else if (idx < (int)NumElems)
3688 Mask[i] = idx + NumElems;
3689 else
3690 Mask[i] = idx - NumElems;
3691 }
3692}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003693
Craig Topper1a7700a2012-01-19 08:19:12 +00003694/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3695/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3696/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3697/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003698static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003699
Craig Topper1a7700a2012-01-19 08:19:12 +00003700 unsigned NumElems = VT.getVectorNumElements();
3701 unsigned NumLanes = VT.getSizeInBits()/128;
3702 unsigned NumLaneElems = NumElems/NumLanes;
3703
3704 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003705 return false;
3706
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003707 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3708 bool symetricMaskRequired =
3709 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3710
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003711 // VSHUFPSY divides the resulting vector into 4 chunks.
3712 // The sources are also splitted into 4 chunks, and each destination
3713 // chunk must come from a different source chunk.
3714 //
3715 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3716 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3717 //
3718 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3719 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3720 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003721 // VSHUFPDY divides the resulting vector into 4 chunks.
3722 // The sources are also splitted into 4 chunks, and each destination
3723 // chunk must come from a different source chunk.
3724 //
3725 // SRC1 => X3 X2 X1 X0
3726 // SRC2 => Y3 Y2 Y1 Y0
3727 //
3728 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3729 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003730 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003731 unsigned HalfLaneElems = NumLaneElems/2;
3732 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3733 for (unsigned i = 0; i != NumLaneElems; ++i) {
3734 int Idx = Mask[i+l];
3735 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3736 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3737 return false;
3738 // For VSHUFPSY, the mask of the second half must be the same as the
3739 // first but with the appropriate offsets. This works in the same way as
3740 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003741 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003742 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003743 if (MaskVal[i] < 0) {
3744 MaskVal[i] = Idx - l;
3745 continue;
3746 }
3747 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003748 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003749 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003750 }
3751
3752 return true;
3753}
3754
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003755/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3756/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003757static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003758 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003759 return false;
3760
Craig Topper7a9a28b2012-08-12 02:23:29 +00003761 unsigned NumElems = VT.getVectorNumElements();
3762
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003763 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003764 return false;
3765
Evan Cheng2064a2b2006-03-28 06:50:32 +00003766 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003767 return isUndefOrEqual(Mask[0], 6) &&
3768 isUndefOrEqual(Mask[1], 7) &&
3769 isUndefOrEqual(Mask[2], 2) &&
3770 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003771}
3772
Nate Begeman0b10b912009-11-07 23:17:15 +00003773/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3774/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3775/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003776static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003777 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003778 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003779
Craig Topper7a9a28b2012-08-12 02:23:29 +00003780 unsigned NumElems = VT.getVectorNumElements();
3781
Nate Begeman0b10b912009-11-07 23:17:15 +00003782 if (NumElems != 4)
3783 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003784
Craig Topperdd637ae2012-02-19 05:41:45 +00003785 return isUndefOrEqual(Mask[0], 2) &&
3786 isUndefOrEqual(Mask[1], 3) &&
3787 isUndefOrEqual(Mask[2], 2) &&
3788 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003789}
3790
Evan Cheng5ced1d82006-04-06 23:23:56 +00003791/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3792/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003793static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003794 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003795 return false;
3796
Craig Topperdd637ae2012-02-19 05:41:45 +00003797 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003798
Evan Cheng5ced1d82006-04-06 23:23:56 +00003799 if (NumElems != 2 && NumElems != 4)
3800 return false;
3801
Chad Rosier238ae312012-04-30 17:47:15 +00003802 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003803 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003804 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003805
Chad Rosier238ae312012-04-30 17:47:15 +00003806 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003807 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003808 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003809
3810 return true;
3811}
3812
Nate Begeman0b10b912009-11-07 23:17:15 +00003813/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3814/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003815static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003816 if (!VT.is128BitVector())
3817 return false;
3818
Craig Topperdd637ae2012-02-19 05:41:45 +00003819 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003820
Craig Topper7a9a28b2012-08-12 02:23:29 +00003821 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003822 return false;
3823
Chad Rosier238ae312012-04-30 17:47:15 +00003824 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003825 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003826 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003827
Chad Rosier238ae312012-04-30 17:47:15 +00003828 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3829 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003830 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003831
3832 return true;
3833}
3834
Elena Demikhovsky15963732012-06-26 08:04:10 +00003835//
3836// Some special combinations that can be optimized.
3837//
3838static
3839SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3840 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003841 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003842 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003843
3844 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3845 return SDValue();
3846
3847 ArrayRef<int> Mask = SVOp->getMask();
3848
3849 // These are the special masks that may be optimized.
3850 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3851 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3852 bool MatchEvenMask = true;
3853 bool MatchOddMask = true;
3854 for (int i=0; i<8; ++i) {
3855 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3856 MatchEvenMask = false;
3857 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3858 MatchOddMask = false;
3859 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003860
Elena Demikhovsky32510202012-09-04 12:49:02 +00003861 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003862 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003863
Elena Demikhovsky15963732012-06-26 08:04:10 +00003864 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3865
Elena Demikhovsky32510202012-09-04 12:49:02 +00003866 SDValue Op0 = SVOp->getOperand(0);
3867 SDValue Op1 = SVOp->getOperand(1);
3868
3869 if (MatchEvenMask) {
3870 // Shift the second operand right to 32 bits.
3871 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3872 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3873 } else {
3874 // Shift the first operand left to 32 bits.
3875 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3876 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3877 }
3878 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3879 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003880}
3881
Evan Cheng0038e592006-03-28 00:39:58 +00003882/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3883/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003884static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003885 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003886
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003887 assert(VT.getSizeInBits() >= 128 &&
3888 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003889
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003890 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3891 unsigned NumLanes;
3892 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003893 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003894 if (VT.is256BitVector()) {
3895 if (NumElts != 4 && NumElts != 8 &&
3896 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003897 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003898 NumLanes = 2;
3899 NumOf256BitLanes = 1;
3900 } else if (VT.is512BitVector()) {
3901 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3902 "Unsupported vector type for unpckh");
3903 NumLanes = 2;
3904 NumOf256BitLanes = 2;
3905 } else {
3906 NumLanes = 1;
3907 NumOf256BitLanes = 1;
3908 }
Eric Christopherfd179292009-08-27 18:07:15 +00003909
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003910 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3911 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003912
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003913 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3914 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3915 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3916 int BitI = Mask[l256*NumEltsInStride+l+i];
3917 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3918 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003919 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003920 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3921 return false;
3922 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003923 return false;
3924 }
Evan Cheng39623da2006-04-20 08:58:49 +00003925 }
Evan Cheng0038e592006-03-28 00:39:58 +00003926 }
Evan Cheng0038e592006-03-28 00:39:58 +00003927 return true;
3928}
3929
Evan Cheng4fcb9222006-03-28 02:43:26 +00003930/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3931/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003932static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003933 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003934 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003935 "Unsupported vector type for unpckh");
3936
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003937 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3938 unsigned NumLanes;
3939 unsigned NumOf256BitLanes;
3940 unsigned NumElts = VT.getVectorNumElements();
3941 if (VT.is256BitVector()) {
3942 if (NumElts != 4 && NumElts != 8 &&
3943 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003944 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003945 NumLanes = 2;
3946 NumOf256BitLanes = 1;
3947 } else if (VT.is512BitVector()) {
3948 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3949 "Unsupported vector type for unpckh");
3950 NumLanes = 2;
3951 NumOf256BitLanes = 2;
3952 } else {
3953 NumLanes = 1;
3954 NumOf256BitLanes = 1;
3955 }
Eric Christopherfd179292009-08-27 18:07:15 +00003956
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003957 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3958 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003959
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003960 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3961 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3962 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3963 int BitI = Mask[l256*NumEltsInStride+l+i];
3964 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3965 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003966 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003967 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3968 return false;
3969 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003970 return false;
3971 }
Evan Cheng39623da2006-04-20 08:58:49 +00003972 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003973 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003974 return true;
3975}
3976
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003977/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3978/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3979/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003980static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003981 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003982 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003983
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003984 if (VT.is512BitVector())
3985 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00003986 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3987 "Unsupported vector type for unpckh");
3988
Craig Topper5a529e42013-01-18 06:44:29 +00003989 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003990 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003991 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003992
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003993 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3994 // FIXME: Need a better way to get rid of this, there's no latency difference
3995 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3996 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003997 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003998 return false;
3999
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004000 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4001 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004002 unsigned NumLanes = VT.getSizeInBits()/128;
4003 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004004
Craig Topper59235472013-08-06 07:23:12 +00004005 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4006 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4007 int BitI = Mask[l+i];
4008 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004009
4010 if (!isUndefOrEqual(BitI, j))
4011 return false;
4012 if (!isUndefOrEqual(BitI1, j))
4013 return false;
4014 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004015 }
David Greenea20244d2011-03-02 17:23:43 +00004016
Rafael Espindola15684b22009-04-24 12:40:33 +00004017 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004018}
4019
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004020/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4021/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4022/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004023static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004024 unsigned NumElts = VT.getVectorNumElements();
4025
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004026 if (VT.is512BitVector())
4027 return false;
4028
Craig Topper94438ba2011-12-16 08:06:31 +00004029 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4030 "Unsupported vector type for unpckh");
4031
Craig Topper5a529e42013-01-18 06:44:29 +00004032 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004033 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004034 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004035
Craig Topper94438ba2011-12-16 08:06:31 +00004036 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4037 // independently on 128-bit lanes.
4038 unsigned NumLanes = VT.getSizeInBits()/128;
4039 unsigned NumLaneElts = NumElts/NumLanes;
4040
Craig Topper59235472013-08-06 07:23:12 +00004041 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4042 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4043 int BitI = Mask[l+i];
4044 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004045 if (!isUndefOrEqual(BitI, j))
4046 return false;
4047 if (!isUndefOrEqual(BitI1, j))
4048 return false;
4049 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004050 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004051 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004052}
4053
Evan Cheng017dcc62006-04-21 01:05:10 +00004054/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4055/// specifies a shuffle of elements that is suitable for input to MOVSS,
4056/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004057static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004058 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004059 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004060 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004061 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004062
Craig Topperc612d792012-01-02 09:17:37 +00004063 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004064
Nate Begeman9008ca62009-04-27 18:41:29 +00004065 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004066 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004067
Craig Topperc612d792012-01-02 09:17:37 +00004068 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004069 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004070 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004071
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004072 return true;
4073}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004074
Craig Topper70b883b2011-11-28 10:14:51 +00004075/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004076/// as permutations between 128-bit chunks or halves. As an example: this
4077/// shuffle bellow:
4078/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4079/// The first half comes from the second half of V1 and the second half from the
4080/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004081static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004082 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004083 return false;
4084
4085 // The shuffle result is divided into half A and half B. In total the two
4086 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4087 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004088 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004089 bool MatchA = false, MatchB = false;
4090
4091 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004092 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004093 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4094 MatchA = true;
4095 break;
4096 }
4097 }
4098
4099 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004100 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004101 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4102 MatchB = true;
4103 break;
4104 }
4105 }
4106
4107 return MatchA && MatchB;
4108}
4109
Craig Topper70b883b2011-11-28 10:14:51 +00004110/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4111/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004112static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004113 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004114
Craig Topperc612d792012-01-02 09:17:37 +00004115 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004116
Craig Topperc612d792012-01-02 09:17:37 +00004117 unsigned FstHalf = 0, SndHalf = 0;
4118 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004119 if (SVOp->getMaskElt(i) > 0) {
4120 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4121 break;
4122 }
4123 }
Craig Topperc612d792012-01-02 09:17:37 +00004124 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004125 if (SVOp->getMaskElt(i) > 0) {
4126 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4127 break;
4128 }
4129 }
4130
4131 return (FstHalf | (SndHalf << 4));
4132}
4133
Craig Topperd36e1ef2013-08-15 08:38:25 +00004134// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004135static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004136 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4137 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004138 return false;
4139
Craig Topperd36e1ef2013-08-15 08:38:25 +00004140 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004141 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004142 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4143 for (unsigned i = 0; i != NumElts; ++i) {
4144 if (Mask[i] < 0)
4145 continue;
4146 Imm8 |= Mask[i] << (i*2);
4147 }
4148 return true;
4149 }
4150
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004151 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004152 SmallVector<int, 4> MaskVal(LaneSize, -1);
4153
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004154 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4155 for (unsigned i = 0; i != LaneSize; ++i) {
4156 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4157 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004158 if (Mask[i+l] < 0)
4159 continue;
4160 if (MaskVal[i] < 0) {
4161 MaskVal[i] = Mask[i+l] - l;
4162 Imm8 |= MaskVal[i] << (i*2);
4163 continue;
4164 }
4165 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004166 return false;
4167 }
4168 }
4169 return true;
4170}
4171
Craig Topper70b883b2011-11-28 10:14:51 +00004172/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004173/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4174/// Note that VPERMIL mask matching is different depending whether theunderlying
4175/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4176/// to the same elements of the low, but to the higher half of the source.
4177/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004178/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004179static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4180 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4181 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004182 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004183 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004184 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004185
Craig Topperc612d792012-01-02 09:17:37 +00004186 unsigned NumLanes = VT.getSizeInBits()/128;
4187 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004188 // 2 or 4 elements in one lane
4189
4190 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004191 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004192 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004193 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004194 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004195 if (symetricMaskRequired) {
4196 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4197 ExpectedMaskVal[i] = Mask[i+l] - l;
4198 continue;
4199 }
4200 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4201 return false;
4202 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004203 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004204 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004205 return true;
4206}
4207
Craig Topper5aaffa82012-02-19 02:53:47 +00004208/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004209/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004210/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004211static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004212 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004213 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004214 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004215
4216 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004217 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004218 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004219
Nate Begeman9008ca62009-04-27 18:41:29 +00004220 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004221 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004222
Craig Topperc612d792012-01-02 09:17:37 +00004223 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004224 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4225 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4226 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004227 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004228
Evan Cheng39623da2006-04-20 08:58:49 +00004229 return true;
4230}
4231
Evan Chengd9539472006-04-14 21:59:03 +00004232/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4233/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004234/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004235static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004236 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004237 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004238 return false;
4239
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004240 unsigned NumElems = VT.getVectorNumElements();
4241
Craig Topper5a529e42013-01-18 06:44:29 +00004242 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004243 (VT.is256BitVector() && NumElems != 8) ||
4244 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004245 return false;
4246
4247 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004248 for (unsigned i = 0; i != NumElems; i += 2)
4249 if (!isUndefOrEqual(Mask[i], i+1) ||
4250 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004251 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004252
4253 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004254}
4255
4256/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4257/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004258/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004259static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004260 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004261 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004262 return false;
4263
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004264 unsigned NumElems = VT.getVectorNumElements();
4265
Craig Topper5a529e42013-01-18 06:44:29 +00004266 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004267 (VT.is256BitVector() && NumElems != 8) ||
4268 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004269 return false;
4270
4271 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004272 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004273 if (!isUndefOrEqual(Mask[i], i) ||
4274 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004275 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004276
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004277 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004278}
4279
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004280/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4281/// specifies a shuffle of elements that is suitable for input to 256-bit
4282/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004283static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004284 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004285 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004286
Craig Topper7a9a28b2012-08-12 02:23:29 +00004287 unsigned NumElts = VT.getVectorNumElements();
4288 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004289 return false;
4290
Craig Topperc612d792012-01-02 09:17:37 +00004291 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004292 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004293 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004294 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004295 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004296 return false;
4297 return true;
4298}
4299
Evan Cheng0b457f02008-09-25 20:50:48 +00004300/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004301/// specifies a shuffle of elements that is suitable for input to 128-bit
4302/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004303static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004304 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004305 return false;
4306
Craig Topperc612d792012-01-02 09:17:37 +00004307 unsigned e = VT.getVectorNumElements() / 2;
4308 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004309 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004310 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004311 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004312 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004313 return false;
4314 return true;
4315}
4316
Elena Demikhovsky83952512013-07-31 11:35:14 +00004317/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004318/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004319/// suitable for instruction that extract 128 or 256 bit vectors
4320static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4321 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004322 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4323 return false;
4324
Elena Demikhovsky83952512013-07-31 11:35:14 +00004325 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004326 uint64_t Index =
4327 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4328
Craig Topper5a0910b2013-08-15 02:33:50 +00004329 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004330 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004331 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004332
4333 return Result;
4334}
4335
Elena Demikhovsky83952512013-07-31 11:35:14 +00004336/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004337/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004338/// insertion of 128 or 256-bit subvectors
4339static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4340 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004341 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4342 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004343 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004344 uint64_t Index =
4345 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4346
Craig Topper5a0910b2013-08-15 02:33:50 +00004347 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004348 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004349 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004350
4351 return Result;
4352}
4353
Elena Demikhovsky83952512013-07-31 11:35:14 +00004354bool X86::isVINSERT128Index(SDNode *N) {
4355 return isVINSERTIndex(N, 128);
4356}
4357
4358bool X86::isVINSERT256Index(SDNode *N) {
4359 return isVINSERTIndex(N, 256);
4360}
4361
4362bool X86::isVEXTRACT128Index(SDNode *N) {
4363 return isVEXTRACTIndex(N, 128);
4364}
4365
4366bool X86::isVEXTRACT256Index(SDNode *N) {
4367 return isVEXTRACTIndex(N, 256);
4368}
4369
Evan Cheng63d33002006-03-22 08:01:21 +00004370/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004371/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004372/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004373static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004374 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004375
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004376 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004377 "Unsupported vector type for PSHUF/SHUFP");
4378
4379 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4380 // independently on 128-bit lanes.
4381 unsigned NumElts = VT.getVectorNumElements();
4382 unsigned NumLanes = VT.getSizeInBits()/128;
4383 unsigned NumLaneElts = NumElts/NumLanes;
4384
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004385 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4386 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004387
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004388 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004389 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004390 for (unsigned i = 0; i != NumElts; ++i) {
4391 int Elt = N->getMaskElt(i);
4392 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004393 Elt &= NumLaneElts - 1;
4394 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004395 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004396 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004397
Evan Cheng63d33002006-03-22 08:01:21 +00004398 return Mask;
4399}
4400
Evan Cheng506d3df2006-03-29 23:07:14 +00004401/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004402/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004403static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004404 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004405
4406 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4407 "Unsupported vector type for PSHUFHW");
4408
4409 unsigned NumElts = VT.getVectorNumElements();
4410
Evan Cheng506d3df2006-03-29 23:07:14 +00004411 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004412 for (unsigned l = 0; l != NumElts; l += 8) {
4413 // 8 nodes per lane, but we only care about the last 4.
4414 for (unsigned i = 0; i < 4; ++i) {
4415 int Elt = N->getMaskElt(l+i+4);
4416 if (Elt < 0) continue;
4417 Elt &= 0x3; // only 2-bits.
4418 Mask |= Elt << (i * 2);
4419 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004420 }
Craig Topper6b28d352012-05-03 07:12:59 +00004421
Evan Cheng506d3df2006-03-29 23:07:14 +00004422 return Mask;
4423}
4424
4425/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004426/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004427static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004428 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004429
4430 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4431 "Unsupported vector type for PSHUFHW");
4432
4433 unsigned NumElts = VT.getVectorNumElements();
4434
Evan Cheng506d3df2006-03-29 23:07:14 +00004435 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004436 for (unsigned l = 0; l != NumElts; l += 8) {
4437 // 8 nodes per lane, but we only care about the first 4.
4438 for (unsigned i = 0; i < 4; ++i) {
4439 int Elt = N->getMaskElt(l+i);
4440 if (Elt < 0) continue;
4441 Elt &= 0x3; // only 2-bits
4442 Mask |= Elt << (i * 2);
4443 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004444 }
Craig Topper6b28d352012-05-03 07:12:59 +00004445
Evan Cheng506d3df2006-03-29 23:07:14 +00004446 return Mask;
4447}
4448
Nate Begemana09008b2009-10-19 02:17:23 +00004449/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4450/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004451static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004452 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004453 unsigned EltSize = VT.is512BitVector() ? 1 :
4454 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004455
Craig Topper0e2037b2012-01-20 05:53:00 +00004456 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004457 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004458 unsigned NumLaneElts = NumElts/NumLanes;
4459
4460 int Val = 0;
4461 unsigned i;
4462 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004463 Val = SVOp->getMaskElt(i);
4464 if (Val >= 0)
4465 break;
4466 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004467 if (Val >= (int)NumElts)
4468 Val -= NumElts - NumLaneElts;
4469
Eli Friedman63f8dde2011-07-25 21:36:45 +00004470 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004471 return (Val - i) * EltSize;
4472}
4473
Elena Demikhovsky83952512013-07-31 11:35:14 +00004474static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4475 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004476 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004477 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004478
4479 uint64_t Index =
4480 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4481
Craig Topper5a0910b2013-08-15 02:33:50 +00004482 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004483 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004484
Elena Demikhovsky83952512013-07-31 11:35:14 +00004485 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004486 return Index / NumElemsPerChunk;
4487}
4488
Elena Demikhovsky83952512013-07-31 11:35:14 +00004489static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4490 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004491 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004492 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004493
4494 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004495 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004496
Craig Topper5a0910b2013-08-15 02:33:50 +00004497 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004498 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004499
Elena Demikhovsky83952512013-07-31 11:35:14 +00004500 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004501 return Index / NumElemsPerChunk;
4502}
4503
Elena Demikhovsky83952512013-07-31 11:35:14 +00004504/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4505/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4506/// and VINSERTI128 instructions.
4507unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4508 return getExtractVEXTRACTImmediate(N, 128);
4509}
4510
4511/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4512/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4513/// and VINSERTI64x4 instructions.
4514unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4515 return getExtractVEXTRACTImmediate(N, 256);
4516}
4517
4518/// getInsertVINSERT128Immediate - Return the appropriate immediate
4519/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4520/// and VINSERTI128 instructions.
4521unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4522 return getInsertVINSERTImmediate(N, 128);
4523}
4524
4525/// getInsertVINSERT256Immediate - Return the appropriate immediate
4526/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4527/// and VINSERTI64x4 instructions.
4528unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4529 return getInsertVINSERTImmediate(N, 256);
4530}
4531
Evan Cheng37b73872009-07-30 08:33:02 +00004532/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4533/// constant +0.0.
4534bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004535 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4536 return CN->isNullValue();
4537 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4538 return CFP->getValueAPF().isPosZero();
4539 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004540}
4541
Nate Begeman9008ca62009-04-27 18:41:29 +00004542/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4543/// their permute mask.
4544static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4545 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004546 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004547 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004548 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004549
Nate Begeman5a5ca152009-04-29 05:20:52 +00004550 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004551 int Idx = SVOp->getMaskElt(i);
4552 if (Idx >= 0) {
4553 if (Idx < (int)NumElems)
4554 Idx += NumElems;
4555 else
4556 Idx -= NumElems;
4557 }
4558 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004559 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004560 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004561 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004562}
4563
Evan Cheng533a0aa2006-04-19 20:35:22 +00004564/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4565/// match movhlps. The lower half elements should come from upper half of
4566/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004567/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004568static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004569 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004570 return false;
4571 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004572 return false;
4573 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004574 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004575 return false;
4576 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004577 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004578 return false;
4579 return true;
4580}
4581
Evan Cheng5ced1d82006-04-06 23:23:56 +00004582/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004583/// is promoted to a vector. It also returns the LoadSDNode by reference if
4584/// required.
4585static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004586 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4587 return false;
4588 N = N->getOperand(0).getNode();
4589 if (!ISD::isNON_EXTLoad(N))
4590 return false;
4591 if (LD)
4592 *LD = cast<LoadSDNode>(N);
4593 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004594}
4595
Dan Gohman65fd6562011-11-03 21:49:52 +00004596// Test whether the given value is a vector value which will be legalized
4597// into a load.
4598static bool WillBeConstantPoolLoad(SDNode *N) {
4599 if (N->getOpcode() != ISD::BUILD_VECTOR)
4600 return false;
4601
4602 // Check for any non-constant elements.
4603 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4604 switch (N->getOperand(i).getNode()->getOpcode()) {
4605 case ISD::UNDEF:
4606 case ISD::ConstantFP:
4607 case ISD::Constant:
4608 break;
4609 default:
4610 return false;
4611 }
4612
4613 // Vectors of all-zeros and all-ones are materialized with special
4614 // instructions rather than being loaded.
4615 return !ISD::isBuildVectorAllZeros(N) &&
4616 !ISD::isBuildVectorAllOnes(N);
4617}
4618
Evan Cheng533a0aa2006-04-19 20:35:22 +00004619/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4620/// match movlp{s|d}. The lower half elements should come from lower half of
4621/// V1 (and in order), and the upper half elements should come from the upper
4622/// half of V2 (and in order). And since V1 will become the source of the
4623/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004624static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004625 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004626 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004627 return false;
4628
Evan Cheng466685d2006-10-09 20:57:25 +00004629 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004630 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004631 // Is V2 is a vector load, don't do this transformation. We will try to use
4632 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004633 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004634 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004635
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004636 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004637
Evan Cheng533a0aa2006-04-19 20:35:22 +00004638 if (NumElems != 2 && NumElems != 4)
4639 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004640 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004641 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004642 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004643 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004644 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004645 return false;
4646 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004647}
4648
Evan Cheng39623da2006-04-20 08:58:49 +00004649/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4650/// all the same.
4651static bool isSplatVector(SDNode *N) {
4652 if (N->getOpcode() != ISD::BUILD_VECTOR)
4653 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004654
Dan Gohman475871a2008-07-27 21:46:04 +00004655 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004656 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4657 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004658 return false;
4659 return true;
4660}
4661
Evan Cheng213d2cf2007-05-17 18:45:50 +00004662/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004663/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004664/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004665static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004666 SDValue V1 = N->getOperand(0);
4667 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004668 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4669 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004670 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004671 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004672 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004673 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4674 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004675 if (Opc != ISD::BUILD_VECTOR ||
4676 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004677 return false;
4678 } else if (Idx >= 0) {
4679 unsigned Opc = V1.getOpcode();
4680 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4681 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004682 if (Opc != ISD::BUILD_VECTOR ||
4683 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004684 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004685 }
4686 }
4687 return true;
4688}
4689
4690/// getZeroVector - Returns a vector of specified type with all zero elements.
4691///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004692static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004693 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004694 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004695
Dale Johannesen0488fb62010-09-30 23:57:10 +00004696 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004697 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004698 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004699 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004700 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004701 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4702 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4703 } else { // SSE1
4704 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4705 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4706 }
Craig Topper5a529e42013-01-18 06:44:29 +00004707 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004708 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004709 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4710 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004711 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4712 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004713 } else {
4714 // 256-bit logic and arithmetic instructions in AVX are all
4715 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4716 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4717 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004718 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4719 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004720 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004721 } else if (VT.is512BitVector()) { // AVX-512
4722 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4723 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4724 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4725 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004726 } else
4727 llvm_unreachable("Unexpected vector type");
4728
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004729 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004730}
4731
Chris Lattner8a594482007-11-25 00:24:49 +00004732/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004733/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4734/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4735/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004736static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004737 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004738 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004739
Owen Anderson825b72b2009-08-11 20:47:22 +00004740 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004741 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004742 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004743 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004744 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004745 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4746 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004747 } else { // AVX
4748 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004749 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004750 }
Craig Topper5a529e42013-01-18 06:44:29 +00004751 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004752 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004753 } else
4754 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004755
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004756 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004757}
4758
Evan Cheng39623da2006-04-20 08:58:49 +00004759/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4760/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004761static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004762 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004763 if (Mask[i] > (int)NumElems) {
4764 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004765 }
Evan Cheng39623da2006-04-20 08:58:49 +00004766 }
Evan Cheng39623da2006-04-20 08:58:49 +00004767}
4768
Evan Cheng017dcc62006-04-21 01:05:10 +00004769/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4770/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004771static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004772 SDValue V2) {
4773 unsigned NumElems = VT.getVectorNumElements();
4774 SmallVector<int, 8> Mask;
4775 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004776 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004777 Mask.push_back(i);
4778 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004779}
4780
Nate Begeman9008ca62009-04-27 18:41:29 +00004781/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004782static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004783 SDValue V2) {
4784 unsigned NumElems = VT.getVectorNumElements();
4785 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004786 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004787 Mask.push_back(i);
4788 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004789 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004790 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004791}
4792
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004793/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004794static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004795 SDValue V2) {
4796 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004797 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004798 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004799 Mask.push_back(i + Half);
4800 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004801 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004802 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004803}
4804
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004805// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004806// a generic shuffle instruction because the target has no such instructions.
4807// Generate shuffles which repeat i16 and i8 several times until they can be
4808// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004809static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004810 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004811 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004812 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004813
Nate Begeman9008ca62009-04-27 18:41:29 +00004814 while (NumElems > 4) {
4815 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004816 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004817 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004818 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004819 EltNo -= NumElems/2;
4820 }
4821 NumElems >>= 1;
4822 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004823 return V;
4824}
Eric Christopherfd179292009-08-27 18:07:15 +00004825
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004826/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4827static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004828 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004829 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004830
Craig Topper5a529e42013-01-18 06:44:29 +00004831 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004832 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004833 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004834 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4835 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004836 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004837 // To use VPERMILPS to splat scalars, the second half of indicies must
4838 // refer to the higher part, which is a duplication of the lower one,
4839 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004840 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4841 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004842
4843 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4844 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4845 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004846 } else
4847 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004848
4849 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4850}
4851
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004852/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004853static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004854 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004855 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004856 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004857
4858 int EltNo = SV->getSplatIndex();
4859 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004860 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004861
Craig Topper5a529e42013-01-18 06:44:29 +00004862 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4863 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004864
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004865 // Extract the 128-bit part containing the splat element and update
4866 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004867 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004868 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4869 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004870 EltNo -= NumElems/2;
4871 }
4872
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004873 // All i16 and i8 vector types can't be used directly by a generic shuffle
4874 // instruction because the target has no such instruction. Generate shuffles
4875 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004876 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004877 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004878 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004879 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004880
4881 // Recreate the 256-bit vector and place the same 128-bit vector
4882 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004883 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004884 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004885 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004886 }
4887
4888 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004889}
4890
Evan Chengba05f722006-04-21 23:03:30 +00004891/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004892/// vector of zero or undef vector. This produces a shuffle where the low
4893/// element of V2 is swizzled into the zero/undef vector, landing at element
4894/// 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 +00004895static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004896 bool IsZero,
4897 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004898 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004899 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004900 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004901 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004902 unsigned NumElems = VT.getVectorNumElements();
4903 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004904 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004905 // If this is the insertion idx, put the low elt of V2 here.
4906 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004907 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004908}
4909
Craig Toppera1ffc682012-03-20 06:42:26 +00004910/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4911/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004912/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004913static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004914 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004915 unsigned NumElems = VT.getVectorNumElements();
4916 SDValue ImmN;
4917
Craig Topper89f4e662012-03-20 07:17:59 +00004918 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004919 switch(N->getOpcode()) {
4920 case X86ISD::SHUFP:
4921 ImmN = N->getOperand(N->getNumOperands()-1);
4922 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4923 break;
4924 case X86ISD::UNPCKH:
4925 DecodeUNPCKHMask(VT, Mask);
4926 break;
4927 case X86ISD::UNPCKL:
4928 DecodeUNPCKLMask(VT, Mask);
4929 break;
4930 case X86ISD::MOVHLPS:
4931 DecodeMOVHLPSMask(NumElems, Mask);
4932 break;
4933 case X86ISD::MOVLHPS:
4934 DecodeMOVLHPSMask(NumElems, Mask);
4935 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004936 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004937 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004938 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004939 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004940 case X86ISD::PSHUFD:
4941 case X86ISD::VPERMILP:
4942 ImmN = N->getOperand(N->getNumOperands()-1);
4943 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004944 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004945 break;
4946 case X86ISD::PSHUFHW:
4947 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004948 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004949 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004950 break;
4951 case X86ISD::PSHUFLW:
4952 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004953 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004954 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004955 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004956 case X86ISD::VPERMI:
4957 ImmN = N->getOperand(N->getNumOperands()-1);
4958 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4959 IsUnary = true;
4960 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004961 case X86ISD::MOVSS:
4962 case X86ISD::MOVSD: {
4963 // The index 0 always comes from the first element of the second source,
4964 // this is why MOVSS and MOVSD are used in the first place. The other
4965 // elements come from the other positions of the first source vector
4966 Mask.push_back(NumElems);
4967 for (unsigned i = 1; i != NumElems; ++i) {
4968 Mask.push_back(i);
4969 }
4970 break;
4971 }
4972 case X86ISD::VPERM2X128:
4973 ImmN = N->getOperand(N->getNumOperands()-1);
4974 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004975 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004976 break;
4977 case X86ISD::MOVDDUP:
4978 case X86ISD::MOVLHPD:
4979 case X86ISD::MOVLPD:
4980 case X86ISD::MOVLPS:
4981 case X86ISD::MOVSHDUP:
4982 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004983 // Not yet implemented
4984 return false;
4985 default: llvm_unreachable("unknown target shuffle node");
4986 }
4987
4988 return true;
4989}
4990
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004991/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4992/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004993static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004994 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004995 if (Depth == 6)
4996 return SDValue(); // Limit search depth.
4997
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004998 SDValue V = SDValue(N, 0);
4999 EVT VT = V.getValueType();
5000 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005001
5002 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5003 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005004 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005005
Craig Topper3d092db2012-03-21 02:14:01 +00005006 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005007 return DAG.getUNDEF(VT.getVectorElementType());
5008
Craig Topperd156dc12012-02-06 07:17:51 +00005009 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005010 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5011 : SV->getOperand(1);
5012 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005013 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005014
5015 // Recurse into target specific vector shuffles to find scalars.
5016 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005017 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005018 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005019 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005020 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005021
Craig Topperd978c542012-05-06 19:46:21 +00005022 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005023 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005024
Craig Topper3d092db2012-03-21 02:14:01 +00005025 int Elt = ShuffleMask[Index];
5026 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005027 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005028
Craig Topper3d092db2012-03-21 02:14:01 +00005029 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005030 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005031 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005032 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005033 }
5034
5035 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005036 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005037 V = V.getOperand(0);
5038 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005039 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005040
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005041 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005042 return SDValue();
5043 }
5044
5045 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5046 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005047 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005048
5049 if (V.getOpcode() == ISD::BUILD_VECTOR)
5050 return V.getOperand(Index);
5051
5052 return SDValue();
5053}
5054
5055/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5056/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005057/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005058/// We count undefs as zeros until PreferredNum is reached.
5059static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5060 unsigned NumElems, bool ZerosFromLeft,
5061 SelectionDAG &DAG,
5062 unsigned PreferredNum = -1U) {
5063 unsigned NumZeros = 0;
5064 for (unsigned i = 0; i != NumElems; ++i) {
5065 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005066 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005067 if (!Elt.getNode())
5068 break;
5069
5070 if (X86::isZeroNode(Elt))
5071 ++NumZeros;
5072 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5073 NumZeros = std::min(NumZeros + 1, PreferredNum);
5074 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005075 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005076 }
5077
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005078 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005079}
5080
Craig Topper3d092db2012-03-21 02:14:01 +00005081/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5082/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005083/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5084static
Craig Topper3d092db2012-03-21 02:14:01 +00005085bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5086 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5087 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005088 bool SeenV1 = false;
5089 bool SeenV2 = false;
5090
Craig Topper3d092db2012-03-21 02:14:01 +00005091 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005092 int Idx = SVOp->getMaskElt(i);
5093 // Ignore undef indicies
5094 if (Idx < 0)
5095 continue;
5096
Craig Topper3d092db2012-03-21 02:14:01 +00005097 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005098 SeenV1 = true;
5099 else
5100 SeenV2 = true;
5101
5102 // Only accept consecutive elements from the same vector
5103 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5104 return false;
5105 }
5106
5107 OpNum = SeenV1 ? 0 : 1;
5108 return true;
5109}
5110
5111/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5112/// logical left shift of a vector.
5113static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5114 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005115 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005116 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005117 unsigned NumZeros = getNumOfConsecutiveZeros(
5118 SVOp, NumElems, false /* check zeros from right */, DAG,
5119 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005120 unsigned OpSrc;
5121
5122 if (!NumZeros)
5123 return false;
5124
5125 // Considering the elements in the mask that are not consecutive zeros,
5126 // check if they consecutively come from only one of the source vectors.
5127 //
5128 // V1 = {X, A, B, C} 0
5129 // \ \ \ /
5130 // vector_shuffle V1, V2 <1, 2, 3, X>
5131 //
5132 if (!isShuffleMaskConsecutive(SVOp,
5133 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005134 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005135 NumZeros, // Where to start looking in the src vector
5136 NumElems, // Number of elements in vector
5137 OpSrc)) // Which source operand ?
5138 return false;
5139
5140 isLeft = false;
5141 ShAmt = NumZeros;
5142 ShVal = SVOp->getOperand(OpSrc);
5143 return true;
5144}
5145
5146/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5147/// logical left shift of a vector.
5148static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5149 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005150 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005151 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005152 unsigned NumZeros = getNumOfConsecutiveZeros(
5153 SVOp, NumElems, true /* check zeros from left */, DAG,
5154 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005155 unsigned OpSrc;
5156
5157 if (!NumZeros)
5158 return false;
5159
5160 // Considering the elements in the mask that are not consecutive zeros,
5161 // check if they consecutively come from only one of the source vectors.
5162 //
5163 // 0 { A, B, X, X } = V2
5164 // / \ / /
5165 // vector_shuffle V1, V2 <X, X, 4, 5>
5166 //
5167 if (!isShuffleMaskConsecutive(SVOp,
5168 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005169 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005170 0, // Where to start looking in the src vector
5171 NumElems, // Number of elements in vector
5172 OpSrc)) // Which source operand ?
5173 return false;
5174
5175 isLeft = true;
5176 ShAmt = NumZeros;
5177 ShVal = SVOp->getOperand(OpSrc);
5178 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005179}
5180
5181/// isVectorShift - Returns true if the shuffle can be implemented as a
5182/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005183static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005184 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005185 // Although the logic below support any bitwidth size, there are no
5186 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005187 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005188 return false;
5189
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005190 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5191 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5192 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005193
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005194 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005195}
5196
Evan Chengc78d3b42006-04-24 18:01:45 +00005197/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5198///
Dan Gohman475871a2008-07-27 21:46:04 +00005199static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005200 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005201 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005202 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005203 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005204 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005205 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005206
Andrew Trickac6d9be2013-05-25 02:42:55 +00005207 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005208 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005209 bool First = true;
5210 for (unsigned i = 0; i < 16; ++i) {
5211 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5212 if (ThisIsNonZero && First) {
5213 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005214 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005215 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005216 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005217 First = false;
5218 }
5219
5220 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005221 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005222 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5223 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005224 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005225 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005226 }
5227 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005228 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5229 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5230 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005231 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005232 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005233 } else
5234 ThisElt = LastElt;
5235
Gabor Greifba36cb52008-08-28 21:40:38 +00005236 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005237 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005238 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005239 }
5240 }
5241
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005242 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005243}
5244
Bill Wendlinga348c562007-03-22 18:42:45 +00005245/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005246///
Dan Gohman475871a2008-07-27 21:46:04 +00005247static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005248 unsigned NumNonZero, unsigned NumZero,
5249 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005250 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005251 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005252 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005253 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005254
Andrew Trickac6d9be2013-05-25 02:42:55 +00005255 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005256 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005257 bool First = true;
5258 for (unsigned i = 0; i < 8; ++i) {
5259 bool isNonZero = (NonZeros & (1 << i)) != 0;
5260 if (isNonZero) {
5261 if (First) {
5262 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005263 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005264 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005265 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005266 First = false;
5267 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005268 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005269 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005270 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005271 }
5272 }
5273
5274 return V;
5275}
5276
Evan Chengf26ffe92008-05-29 08:22:04 +00005277/// getVShift - Return a vector logical shift node.
5278///
Owen Andersone50ed302009-08-10 22:56:29 +00005279static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005280 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005281 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005282 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005283 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005284 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005285 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5286 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005287 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005288 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005289 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005290}
5291
Craig Topperff79bc62013-08-18 08:53:01 +00005292static SDValue
5293LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005294
Evan Chengc3630942009-12-09 21:00:30 +00005295 // Check if the scalar load can be widened into a vector load. And if
5296 // the address is "base + cst" see if the cst can be "absorbed" into
5297 // the shuffle mask.
5298 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5299 SDValue Ptr = LD->getBasePtr();
5300 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5301 return SDValue();
5302 EVT PVT = LD->getValueType(0);
5303 if (PVT != MVT::i32 && PVT != MVT::f32)
5304 return SDValue();
5305
5306 int FI = -1;
5307 int64_t Offset = 0;
5308 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5309 FI = FINode->getIndex();
5310 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005311 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005312 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5313 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5314 Offset = Ptr.getConstantOperandVal(1);
5315 Ptr = Ptr.getOperand(0);
5316 } else {
5317 return SDValue();
5318 }
5319
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005320 // FIXME: 256-bit vector instructions don't require a strict alignment,
5321 // improve this code to support it better.
5322 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005323 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005324 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005325 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005326 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005327 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005328 // Can't change the alignment. FIXME: It's possible to compute
5329 // the exact stack offset and reference FI + adjust offset instead.
5330 // If someone *really* cares about this. That's the way to implement it.
5331 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005332 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005333 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005334 }
5335 }
5336
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005337 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005338 // Ptr + (Offset & ~15).
5339 if (Offset < 0)
5340 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005341 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005342 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005343 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005344 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005345 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005346 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5347
5348 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005349 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005350
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005351 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5352 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005353 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005354 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005355
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005356 SmallVector<int, 8> Mask;
5357 for (unsigned i = 0; i != NumElems; ++i)
5358 Mask.push_back(EltNo);
5359
Craig Toppercc3000632012-01-30 07:50:31 +00005360 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005361 }
5362
5363 return SDValue();
5364}
5365
Michael J. Spencerec38de22010-10-10 22:04:20 +00005366/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5367/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005368/// load which has the same value as a build_vector whose operands are 'elts'.
5369///
5370/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005371///
Nate Begeman1449f292010-03-24 22:19:06 +00005372/// FIXME: we'd also like to handle the case where the last elements are zero
5373/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5374/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005375static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005376 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005377 EVT EltVT = VT.getVectorElementType();
5378 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005379
Nate Begemanfdea31a2010-03-24 20:49:50 +00005380 LoadSDNode *LDBase = NULL;
5381 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005382
Nate Begeman1449f292010-03-24 22:19:06 +00005383 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005384 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005385 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005386 for (unsigned i = 0; i < NumElems; ++i) {
5387 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005388
Nate Begemanfdea31a2010-03-24 20:49:50 +00005389 if (!Elt.getNode() ||
5390 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5391 return SDValue();
5392 if (!LDBase) {
5393 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5394 return SDValue();
5395 LDBase = cast<LoadSDNode>(Elt.getNode());
5396 LastLoadedElt = i;
5397 continue;
5398 }
5399 if (Elt.getOpcode() == ISD::UNDEF)
5400 continue;
5401
5402 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5403 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5404 return SDValue();
5405 LastLoadedElt = i;
5406 }
Nate Begeman1449f292010-03-24 22:19:06 +00005407
5408 // If we have found an entire vector of loads and undefs, then return a large
5409 // load of the entire vector width starting at the base pointer. If we found
5410 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005411 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005412 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005413 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005414 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5415 LDBase->getPointerInfo(),
5416 LDBase->isVolatile(), LDBase->isNonTemporal(),
5417 LDBase->isInvariant(), 0);
5418 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5419 LDBase->getPointerInfo(),
5420 LDBase->isVolatile(), LDBase->isNonTemporal(),
5421 LDBase->isInvariant(), LDBase->getAlignment());
5422
5423 if (LDBase->hasAnyUseOfValue(1)) {
5424 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5425 SDValue(LDBase, 1),
5426 SDValue(NewLd.getNode(), 1));
5427 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5428 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5429 SDValue(NewLd.getNode(), 1));
5430 }
5431
5432 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005433 }
5434 if (NumElems == 4 && LastLoadedElt == 1 &&
5435 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005436 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5437 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005438 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005439 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5440 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005441 LDBase->getPointerInfo(),
5442 LDBase->getAlignment(),
5443 false/*isVolatile*/, true/*ReadMem*/,
5444 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005445
5446 // Make sure the newly-created LOAD is in the same position as LDBase in
5447 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5448 // update uses of LDBase's output chain to use the TokenFactor.
5449 if (LDBase->hasAnyUseOfValue(1)) {
5450 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5451 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5452 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5453 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5454 SDValue(ResNode.getNode(), 1));
5455 }
5456
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005457 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005458 }
5459 return SDValue();
5460}
5461
Nadav Rotem9d68b062012-04-08 12:54:54 +00005462/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5463/// to generate a splat value for the following cases:
5464/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005465/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005466/// a scalar load, or a constant.
5467/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005468/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005469static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5470 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005471 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005472 return SDValue();
5473
Craig Topper5a0910b2013-08-15 02:33:50 +00005474 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005475 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005476
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005477 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005478 "Unsupported vector type for broadcast.");
5479
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005480 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005481 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005482
Nadav Rotem9d68b062012-04-08 12:54:54 +00005483 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005484 default:
5485 // Unknown pattern found.
5486 return SDValue();
5487
5488 case ISD::BUILD_VECTOR: {
5489 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005490 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005491 return SDValue();
5492
Nadav Rotem9d68b062012-04-08 12:54:54 +00005493 Ld = Op.getOperand(0);
5494 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5495 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005496
5497 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005498 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005499 // Constants may have multiple users.
5500 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005501 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005502 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005503 }
5504
5505 case ISD::VECTOR_SHUFFLE: {
5506 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5507
5508 // Shuffles must have a splat mask where the first element is
5509 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005510 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005511 return SDValue();
5512
5513 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005514 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005515 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5516
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005517 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005518 return SDValue();
5519
5520 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005521 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005522 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5523 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5524 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005525
5526 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005527 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005528 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005529
5530 // The scalar_to_vector node and the suspected
5531 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005532 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005533
5534 // AVX-512 has register version of the broadcast
5535 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5536 Ld.getValueType().getSizeInBits() >= 32;
5537 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5538 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005539 return SDValue();
5540 break;
5541 }
5542 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005543
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005544 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005545
5546 // Handle the broadcasting a single constant scalar from the constant pool
5547 // into a vector. On Sandybridge it is still better to load a constant vector
5548 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005549 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005550 EVT CVT = Ld.getValueType();
5551 assert(!CVT.isVector() && "Must not broadcast a vector type");
5552 unsigned ScalarSize = CVT.getSizeInBits();
5553
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005554 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005555 const Constant *C = 0;
5556 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5557 C = CI->getConstantIntValue();
5558 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5559 C = CF->getConstantFPValue();
5560
5561 assert(C && "Invalid constant type");
5562
Craig Topper158ec072013-08-14 07:34:43 +00005563 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5564 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005565 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005566 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005567 MachinePointerInfo::getConstantPool(),
5568 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005569
Nadav Rotem9d68b062012-04-08 12:54:54 +00005570 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5571 }
5572 }
5573
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005574 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005575 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5576
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005577 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005578 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005579 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005580 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5581
5582 // The scalar source must be a normal load.
5583 if (!IsLoad)
5584 return SDValue();
5585
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005586 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005587 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005588
Craig Toppera9376332012-01-10 08:23:59 +00005589 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005590 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005591 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005592 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005593 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005594 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005595
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005596 // Unsupported broadcast.
5597 return SDValue();
5598}
5599
Craig Topper158ec072013-08-14 07:34:43 +00005600static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005601 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005602
5603 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005604 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5605 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005606 return SDValue();
5607
Andrew Trickac6d9be2013-05-25 02:42:55 +00005608 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005609 unsigned NumElems = Op.getNumOperands();
5610
5611 SDValue VecIn1;
5612 SDValue VecIn2;
5613 SmallVector<unsigned, 4> InsertIndices;
5614 SmallVector<int, 8> Mask(NumElems, -1);
5615
5616 for (unsigned i = 0; i != NumElems; ++i) {
5617 unsigned Opc = Op.getOperand(i).getOpcode();
5618
5619 if (Opc == ISD::UNDEF)
5620 continue;
5621
5622 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5623 // Quit if more than 1 elements need inserting.
5624 if (InsertIndices.size() > 1)
5625 return SDValue();
5626
5627 InsertIndices.push_back(i);
5628 continue;
5629 }
5630
5631 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5632 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5633
5634 // Quit if extracted from vector of different type.
5635 if (ExtractedFromVec.getValueType() != VT)
5636 return SDValue();
5637
5638 // Quit if non-constant index.
5639 if (!isa<ConstantSDNode>(ExtIdx))
5640 return SDValue();
5641
5642 if (VecIn1.getNode() == 0)
5643 VecIn1 = ExtractedFromVec;
5644 else if (VecIn1 != ExtractedFromVec) {
5645 if (VecIn2.getNode() == 0)
5646 VecIn2 = ExtractedFromVec;
5647 else if (VecIn2 != ExtractedFromVec)
5648 // Quit if more than 2 vectors to shuffle
5649 return SDValue();
5650 }
5651
5652 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5653
5654 if (ExtractedFromVec == VecIn1)
5655 Mask[i] = Idx;
5656 else if (ExtractedFromVec == VecIn2)
5657 Mask[i] = Idx + NumElems;
5658 }
5659
5660 if (VecIn1.getNode() == 0)
5661 return SDValue();
5662
5663 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5664 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5665 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5666 unsigned Idx = InsertIndices[i];
5667 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5668 DAG.getIntPtrConstant(Idx));
5669 }
5670
5671 return NV;
5672}
5673
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005674// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5675SDValue
5676X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5677
Craig Topper5a0910b2013-08-15 02:33:50 +00005678 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005679 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5680 "Unexpected type in LowerBUILD_VECTORvXi1!");
5681
5682 SDLoc dl(Op);
5683 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5684 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5685 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5686 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5687 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5688 Ops, VT.getVectorNumElements());
5689 }
5690
5691 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5692 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5693 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5694 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5695 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5696 Ops, VT.getVectorNumElements());
5697 }
5698
5699 bool AllContants = true;
5700 uint64_t Immediate = 0;
5701 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5702 SDValue In = Op.getOperand(idx);
5703 if (In.getOpcode() == ISD::UNDEF)
5704 continue;
5705 if (!isa<ConstantSDNode>(In)) {
5706 AllContants = false;
5707 break;
5708 }
5709 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005710 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005711 }
5712
5713 if (AllContants) {
5714 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5715 DAG.getConstant(Immediate, MVT::i16));
5716 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005717 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005718 }
5719
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005720 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005721 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005722 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5723 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5724 llvm_unreachable("Unsupported predicate operation");
5725 }
5726
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005727 SDValue EFLAGS, X86CC;
5728 if (In.getOpcode() == ISD::SETCC) {
5729 SDValue Op0 = In.getOperand(0);
5730 SDValue Op1 = In.getOperand(1);
5731 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5732 bool isFP = Op1.getValueType().isFloatingPoint();
5733 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5734
5735 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5736
5737 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5738 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5739 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5740 } else if (In.getOpcode() == X86ISD::SETCC) {
5741 X86CC = In.getOperand(0);
5742 EFLAGS = In.getOperand(1);
5743 } else {
5744 // The algorithm:
5745 // Bit1 = In & 0x1
5746 // if (Bit1 != 0)
5747 // ZF = 0
5748 // else
5749 // ZF = 1
5750 // if (ZF == 0)
5751 // res = allOnes ### CMOVNE -1, %res
5752 // else
5753 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005754 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005755 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5756 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5757 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5758 }
5759
5760 if (VT == MVT::v16i1) {
5761 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5762 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5763 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5764 Cst0, Cst1, X86CC, EFLAGS);
5765 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5766 }
5767
5768 if (VT == MVT::v8i1) {
5769 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5770 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5771 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5772 Cst0, Cst1, X86CC, EFLAGS);
5773 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5774 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5775 }
5776 llvm_unreachable("Unsupported predicate operation");
5777}
5778
Michael Liaofacace82012-10-19 17:15:18 +00005779SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005780X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005781 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005782
Craig Topper5a0910b2013-08-15 02:33:50 +00005783 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005784 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005785 unsigned NumElems = Op.getNumOperands();
5786
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005787 // Generate vectors for predicate vectors.
5788 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5789 return LowerBUILD_VECTORvXi1(Op, DAG);
5790
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005791 // Vectors containing all zeros can be matched by pxor and xorps later
5792 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5793 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5794 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005795 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005796 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005797
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005798 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005799 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005800
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005801 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005802 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5803 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005804 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005805 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005806 return Op;
5807
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005808 if (!VT.is512BitVector())
5809 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005810 }
5811
Craig Topper158ec072013-08-14 07:34:43 +00005812 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005813 if (Broadcast.getNode())
5814 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005815
Owen Andersone50ed302009-08-10 22:56:29 +00005816 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005817
Evan Cheng0db9fe62006-04-25 20:13:52 +00005818 unsigned NumZero = 0;
5819 unsigned NumNonZero = 0;
5820 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005821 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005822 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005823 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005824 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005825 if (Elt.getOpcode() == ISD::UNDEF)
5826 continue;
5827 Values.insert(Elt);
5828 if (Elt.getOpcode() != ISD::Constant &&
5829 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005830 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005831 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005832 NumZero++;
5833 else {
5834 NonZeros |= (1 << i);
5835 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005836 }
5837 }
5838
Chris Lattner97a2a562010-08-26 05:24:29 +00005839 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5840 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005841 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005842
Chris Lattner67f453a2008-03-09 05:42:06 +00005843 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005844 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005845 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005846 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005847
Chris Lattner62098042008-03-09 01:05:04 +00005848 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5849 // the value are obviously zero, truncate the value to i32 and do the
5850 // insertion that way. Only do this if the value is non-constant or if the
5851 // value is a constant being inserted into element 0. It is cheaper to do
5852 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005853 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005854 (!IsAllConstants || Idx == 0)) {
5855 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005856 // Handle SSE only.
5857 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5858 EVT VecVT = MVT::v4i32;
5859 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005860
Chris Lattner62098042008-03-09 01:05:04 +00005861 // Truncate the value (which may itself be a constant) to i32, and
5862 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005863 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005864 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005865 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005866
Chris Lattner62098042008-03-09 01:05:04 +00005867 // Now we have our 32-bit value zero extended in the low element of
5868 // a vector. If Idx != 0, swizzle it into place.
5869 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005870 SmallVector<int, 4> Mask;
5871 Mask.push_back(Idx);
5872 for (unsigned i = 1; i != VecElts; ++i)
5873 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005874 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005875 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005876 }
Craig Topper07a27622012-01-22 03:07:48 +00005877 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005878 }
5879 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005880
Chris Lattner19f79692008-03-08 22:59:52 +00005881 // If we have a constant or non-constant insertion into the low element of
5882 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5883 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005884 // depending on what the source datatype is.
5885 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005886 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005887 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005888
5889 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005890 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005891 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005892 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005893 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5894 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005895 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005896 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005897 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5898 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005899 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005900 }
5901
5902 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005903 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005904 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005905 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005906 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005907 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005908 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005909 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005910 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005911 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005912 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005913 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005914 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005915
5916 // Is it a vector logical left shift?
5917 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005918 X86::isZeroNode(Op.getOperand(0)) &&
5919 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005920 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005921 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005922 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005923 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005924 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005925 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005926
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005927 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005928 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005929
Chris Lattner19f79692008-03-08 22:59:52 +00005930 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5931 // is a non-constant being inserted into an element other than the low one,
5932 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5933 // movd/movss) to move this into the low element, then shuffle it into
5934 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005935 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005936 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005937
Evan Cheng0db9fe62006-04-25 20:13:52 +00005938 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005939 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005940 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005941 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005942 MaskVec.push_back(i == Idx ? 0 : 1);
5943 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005944 }
5945 }
5946
Chris Lattner67f453a2008-03-09 05:42:06 +00005947 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005948 if (Values.size() == 1) {
5949 if (EVTBits == 32) {
5950 // Instead of a shuffle like this:
5951 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5952 // Check if it's possible to issue this instead.
5953 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005954 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005955 SDValue Item = Op.getOperand(Idx);
5956 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5957 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5958 }
Dan Gohman475871a2008-07-27 21:46:04 +00005959 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005960 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005961
Dan Gohmana3941172007-07-24 22:55:08 +00005962 // A vector full of immediates; various special cases are already
5963 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005964 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005965 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005966
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005967 // For AVX-length vectors, build the individual 128-bit pieces and use
5968 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005969 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005970 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005971 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005972 V.push_back(Op.getOperand(i));
5973
5974 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5975
5976 // Build both the lower and upper subvector.
5977 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5978 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5979 NumElems/2);
5980
5981 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005982 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005983 }
5984
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005985 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005986 if (EVTBits == 64) {
5987 if (NumNonZero == 1) {
5988 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005989 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005990 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005991 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005992 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005993 }
Dan Gohman475871a2008-07-27 21:46:04 +00005994 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005995 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005996
5997 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005998 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005999 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006000 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006001 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006002 }
6003
Bill Wendling826f36f2007-03-28 00:57:11 +00006004 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006005 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006006 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006007 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006008 }
6009
6010 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006011 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006012 if (NumElems == 4 && NumZero > 0) {
6013 for (unsigned i = 0; i < 4; ++i) {
6014 bool isZero = !(NonZeros & (1 << i));
6015 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006016 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006017 else
Dale Johannesenace16102009-02-03 19:33:06 +00006018 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006019 }
6020
6021 for (unsigned i = 0; i < 2; ++i) {
6022 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6023 default: break;
6024 case 0:
6025 V[i] = V[i*2]; // Must be a zero vector.
6026 break;
6027 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006028 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006029 break;
6030 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006031 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006032 break;
6033 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006034 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006035 break;
6036 }
6037 }
6038
Benjamin Kramer9c683542012-01-30 15:16:21 +00006039 bool Reverse1 = (NonZeros & 0x3) == 2;
6040 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6041 int MaskVec[] = {
6042 Reverse1 ? 1 : 0,
6043 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006044 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6045 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006046 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006047 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006048 }
6049
Craig Topper7a9a28b2012-08-12 02:23:29 +00006050 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006051 // Check for a build vector of consecutive loads.
6052 for (unsigned i = 0; i < NumElems; ++i)
6053 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006054
Nate Begemanfdea31a2010-03-24 20:49:50 +00006055 // Check for elements which are consecutive loads.
6056 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6057 if (LD.getNode())
6058 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006059
Michael Liaofacace82012-10-19 17:15:18 +00006060 // Check for a build vector from mostly shuffle plus few inserting.
6061 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6062 if (Sh.getNode())
6063 return Sh;
6064
Michael J. Spencerec38de22010-10-10 22:04:20 +00006065 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006066 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006067 SDValue Result;
6068 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6069 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6070 else
6071 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006072
Chris Lattner24faf612010-08-28 17:59:08 +00006073 for (unsigned i = 1; i < NumElems; ++i) {
6074 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6075 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006076 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006077 }
6078 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006079 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006080
Chris Lattner6e80e442010-08-28 17:15:43 +00006081 // Otherwise, expand into a number of unpckl*, start by extending each of
6082 // our (non-undef) elements to the full vector width with the element in the
6083 // bottom slot of the vector (which generates no code for SSE).
6084 for (unsigned i = 0; i < NumElems; ++i) {
6085 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6086 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6087 else
6088 V[i] = DAG.getUNDEF(VT);
6089 }
6090
6091 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006092 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6093 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6094 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006095 unsigned EltStride = NumElems >> 1;
6096 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006097 for (unsigned i = 0; i < EltStride; ++i) {
6098 // If V[i+EltStride] is undef and this is the first round of mixing,
6099 // then it is safe to just drop this shuffle: V[i] is already in the
6100 // right place, the one element (since it's the first round) being
6101 // inserted as undef can be dropped. This isn't safe for successive
6102 // rounds because they will permute elements within both vectors.
6103 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6104 EltStride == NumElems/2)
6105 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006106
Chris Lattner6e80e442010-08-28 17:15:43 +00006107 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006108 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006109 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006110 }
6111 return V[0];
6112 }
Dan Gohman475871a2008-07-27 21:46:04 +00006113 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006114}
6115
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006116// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6117// to create 256-bit vectors from two other 128-bit ones.
6118static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006119 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006120 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006121
Elena Demikhovsky83952512013-07-31 11:35:14 +00006122 assert((ResVT.is256BitVector() ||
6123 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006124
6125 SDValue V1 = Op.getOperand(0);
6126 SDValue V2 = Op.getOperand(1);
6127 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006128 if(ResVT.is256BitVector())
6129 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006130
Elena Demikhovsky83952512013-07-31 11:35:14 +00006131 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006132}
6133
Craig Topper55b24052012-09-11 06:15:32 +00006134static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006135 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006136
Elena Demikhovsky83952512013-07-31 11:35:14 +00006137 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006138 // from two other 128-bit ones.
6139 return LowerAVXCONCAT_VECTORS(Op, DAG);
6140}
6141
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006142// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006143static SDValue
6144LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6145 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006146 SDValue V1 = SVOp->getOperand(0);
6147 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006148 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006149 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006150 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006151 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006152
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006153 // There is no blend with immediate in AVX-512.
6154 if (VT.is512BitVector())
6155 return SDValue();
6156
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006157 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6158 return SDValue();
6159 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006160 return SDValue();
6161
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006162 // Check the mask for BLEND and build the value.
6163 unsigned MaskValue = 0;
6164 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006165 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006166 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006167
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006168 // Blend for v16i16 should be symetric for the both lanes.
6169 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006170
Craig Topper9b33ef72013-01-21 06:57:59 +00006171 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006172 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006173 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006174
Craig Topper04f74a12013-01-21 07:25:16 +00006175 if ((EltIdx < 0 || EltIdx == (int)i) &&
6176 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006177 continue;
6178
Craig Topper9b33ef72013-01-21 06:57:59 +00006179 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006180 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006181 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6182 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006183 else
Craig Topper1842ba02012-04-23 06:38:28 +00006184 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006185 }
6186
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006187 // Convert i32 vectors to floating point if it is not AVX2.
6188 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006189 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006190 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006191 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6192 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006193 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6194 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6195 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006196
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006197 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6198 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006199 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006200}
6201
Nate Begemanb9a47b82009-02-23 08:49:38 +00006202// v8i16 shuffles - Prefer shuffles in the following order:
6203// 1. [all] pshuflw, pshufhw, optional move
6204// 2. [ssse3] 1 x pshufb
6205// 3. [ssse3] 2 x pshufb + 1 x por
6206// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006207static SDValue
6208LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6209 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006210 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006211 SDValue V1 = SVOp->getOperand(0);
6212 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006213 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006214 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006215
Nate Begemanb9a47b82009-02-23 08:49:38 +00006216 // Determine if more than 1 of the words in each of the low and high quadwords
6217 // of the result come from the same quadword of one of the two inputs. Undef
6218 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006219 unsigned LoQuad[] = { 0, 0, 0, 0 };
6220 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006221 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006222 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006223 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006224 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006225 MaskVals.push_back(EltIdx);
6226 if (EltIdx < 0) {
6227 ++Quad[0];
6228 ++Quad[1];
6229 ++Quad[2];
6230 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006231 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006232 }
6233 ++Quad[EltIdx / 4];
6234 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006235 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006236
Nate Begemanb9a47b82009-02-23 08:49:38 +00006237 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006238 unsigned MaxQuad = 1;
6239 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006240 if (LoQuad[i] > MaxQuad) {
6241 BestLoQuad = i;
6242 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006243 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006244 }
6245
Nate Begemanb9a47b82009-02-23 08:49:38 +00006246 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006247 MaxQuad = 1;
6248 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006249 if (HiQuad[i] > MaxQuad) {
6250 BestHiQuad = i;
6251 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006252 }
6253 }
6254
Nate Begemanb9a47b82009-02-23 08:49:38 +00006255 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006256 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006257 // single pshufb instruction is necessary. If There are more than 2 input
6258 // quads, disable the next transformation since it does not help SSSE3.
6259 bool V1Used = InputQuads[0] || InputQuads[1];
6260 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006261 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006262 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006263 BestLoQuad = InputQuads[0] ? 0 : 1;
6264 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006265 }
6266 if (InputQuads.count() > 2) {
6267 BestLoQuad = -1;
6268 BestHiQuad = -1;
6269 }
6270 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006271
Nate Begemanb9a47b82009-02-23 08:49:38 +00006272 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6273 // the shuffle mask. If a quad is scored as -1, that means that it contains
6274 // words from all 4 input quadwords.
6275 SDValue NewV;
6276 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006277 int MaskV[] = {
6278 BestLoQuad < 0 ? 0 : BestLoQuad,
6279 BestHiQuad < 0 ? 1 : BestHiQuad
6280 };
Eric Christopherfd179292009-08-27 18:07:15 +00006281 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006282 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6283 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6284 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006285
Nate Begemanb9a47b82009-02-23 08:49:38 +00006286 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6287 // source words for the shuffle, to aid later transformations.
6288 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006289 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006290 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006291 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006292 if (idx != (int)i)
6293 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006294 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006295 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006296 AllWordsInNewV = false;
6297 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006298 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006299
Nate Begemanb9a47b82009-02-23 08:49:38 +00006300 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6301 if (AllWordsInNewV) {
6302 for (int i = 0; i != 8; ++i) {
6303 int idx = MaskVals[i];
6304 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006305 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006306 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006307 if ((idx != i) && idx < 4)
6308 pshufhw = false;
6309 if ((idx != i) && idx > 3)
6310 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006311 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006312 V1 = NewV;
6313 V2Used = false;
6314 BestLoQuad = 0;
6315 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006316 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006317
Nate Begemanb9a47b82009-02-23 08:49:38 +00006318 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6319 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006320 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006321 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6322 unsigned TargetMask = 0;
6323 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006324 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006325 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6326 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6327 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006328 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006329 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006330 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006331 }
Eric Christopherfd179292009-08-27 18:07:15 +00006332
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006333 // Promote splats to a larger type which usually leads to more efficient code.
6334 // FIXME: Is this true if pshufb is available?
6335 if (SVOp->isSplat())
6336 return PromoteSplat(SVOp, DAG);
6337
Nate Begemanb9a47b82009-02-23 08:49:38 +00006338 // If we have SSSE3, and all words of the result are from 1 input vector,
6339 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6340 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006341 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006342 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006343
Nate Begemanb9a47b82009-02-23 08:49:38 +00006344 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006345 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006346 // mask, and elements that come from V1 in the V2 mask, so that the two
6347 // results can be OR'd together.
6348 bool TwoInputs = V1Used && V2Used;
6349 for (unsigned i = 0; i != 8; ++i) {
6350 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006351 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6352 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006353 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006354 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006355 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006356 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006357 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006358 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006359 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006360 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006361 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006362
Nate Begemanb9a47b82009-02-23 08:49:38 +00006363 // Calculate the shuffle mask for the second input, shuffle it, and
6364 // OR it with the first shuffled input.
6365 pshufbMask.clear();
6366 for (unsigned i = 0; i != 8; ++i) {
6367 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006368 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6369 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6370 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6371 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006372 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006373 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006374 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006375 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006376 MVT::v16i8, &pshufbMask[0], 16));
6377 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006378 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006379 }
6380
6381 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6382 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006383 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006384 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006385 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006386 for (int i = 0; i != 4; ++i) {
6387 int idx = MaskVals[i];
6388 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006389 InOrder.set(i);
6390 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006391 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006392 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006393 }
6394 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006395 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006396 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006397
Craig Topperdd637ae2012-02-19 05:41:45 +00006398 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6399 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006400 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006401 NewV.getOperand(0),
6402 getShufflePSHUFLWImmediate(SVOp), DAG);
6403 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006404 }
Eric Christopherfd179292009-08-27 18:07:15 +00006405
Nate Begemanb9a47b82009-02-23 08:49:38 +00006406 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6407 // and update MaskVals with the new element order.
6408 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006409 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006410 for (unsigned i = 4; i != 8; ++i) {
6411 int idx = MaskVals[i];
6412 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006413 InOrder.set(i);
6414 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006415 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006416 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006417 }
6418 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006419 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006420 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006421
Craig Topperdd637ae2012-02-19 05:41:45 +00006422 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6423 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006424 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006425 NewV.getOperand(0),
6426 getShufflePSHUFHWImmediate(SVOp), DAG);
6427 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006428 }
Eric Christopherfd179292009-08-27 18:07:15 +00006429
Nate Begemanb9a47b82009-02-23 08:49:38 +00006430 // In case BestHi & BestLo were both -1, which means each quadword has a word
6431 // from each of the four input quadwords, calculate the InOrder bitvector now
6432 // before falling through to the insert/extract cleanup.
6433 if (BestLoQuad == -1 && BestHiQuad == -1) {
6434 NewV = V1;
6435 for (int i = 0; i != 8; ++i)
6436 if (MaskVals[i] < 0 || MaskVals[i] == i)
6437 InOrder.set(i);
6438 }
Eric Christopherfd179292009-08-27 18:07:15 +00006439
Nate Begemanb9a47b82009-02-23 08:49:38 +00006440 // The other elements are put in the right place using pextrw and pinsrw.
6441 for (unsigned i = 0; i != 8; ++i) {
6442 if (InOrder[i])
6443 continue;
6444 int EltIdx = MaskVals[i];
6445 if (EltIdx < 0)
6446 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006447 SDValue ExtOp = (EltIdx < 8) ?
6448 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6449 DAG.getIntPtrConstant(EltIdx)) :
6450 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006451 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006452 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006453 DAG.getIntPtrConstant(i));
6454 }
6455 return NewV;
6456}
6457
6458// v16i8 shuffles - Prefer shuffles in the following order:
6459// 1. [ssse3] 1 x pshufb
6460// 2. [ssse3] 2 x pshufb + 1 x por
6461// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006462static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6463 const X86Subtarget* Subtarget,
6464 SelectionDAG &DAG) {
6465 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006466 SDValue V1 = SVOp->getOperand(0);
6467 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006468 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006469 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006470
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006471 // Promote splats to a larger type which usually leads to more efficient code.
6472 // FIXME: Is this true if pshufb is available?
6473 if (SVOp->isSplat())
6474 return PromoteSplat(SVOp, DAG);
6475
Nate Begemanb9a47b82009-02-23 08:49:38 +00006476 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006477 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006478 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006479
Nate Begemanb9a47b82009-02-23 08:49:38 +00006480 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006481 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006482 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006483
Nate Begemanb9a47b82009-02-23 08:49:38 +00006484 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006485 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006486 //
6487 // Otherwise, we have elements from both input vectors, and must zero out
6488 // elements that come from V2 in the first mask, and V1 in the second mask
6489 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006490 for (unsigned i = 0; i != 16; ++i) {
6491 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006492 if (EltIdx < 0 || EltIdx >= 16)
6493 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006494 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006495 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006496 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006497 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006498 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006499
6500 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6501 // the 2nd operand if it's undefined or zero.
6502 if (V2.getOpcode() == ISD::UNDEF ||
6503 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006504 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006505
Nate Begemanb9a47b82009-02-23 08:49:38 +00006506 // Calculate the shuffle mask for the second input, shuffle it, and
6507 // OR it with the first shuffled input.
6508 pshufbMask.clear();
6509 for (unsigned i = 0; i != 16; ++i) {
6510 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006511 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006512 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006513 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006514 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006515 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006516 MVT::v16i8, &pshufbMask[0], 16));
6517 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006518 }
Eric Christopherfd179292009-08-27 18:07:15 +00006519
Nate Begemanb9a47b82009-02-23 08:49:38 +00006520 // No SSSE3 - Calculate in place words and then fix all out of place words
6521 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6522 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006523 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6524 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006525 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006526 for (int i = 0; i != 8; ++i) {
6527 int Elt0 = MaskVals[i*2];
6528 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006529
Nate Begemanb9a47b82009-02-23 08:49:38 +00006530 // This word of the result is all undef, skip it.
6531 if (Elt0 < 0 && Elt1 < 0)
6532 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006533
Nate Begemanb9a47b82009-02-23 08:49:38 +00006534 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006535 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006536 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006537
Nate Begemanb9a47b82009-02-23 08:49:38 +00006538 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6539 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6540 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006541
6542 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6543 // using a single extract together, load it and store it.
6544 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006545 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006546 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006547 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006548 DAG.getIntPtrConstant(i));
6549 continue;
6550 }
6551
Nate Begemanb9a47b82009-02-23 08:49:38 +00006552 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006553 // source byte is not also odd, shift the extracted word left 8 bits
6554 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006555 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006556 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006557 DAG.getIntPtrConstant(Elt1 / 2));
6558 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006559 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006560 DAG.getConstant(8,
6561 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006562 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006563 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6564 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006565 }
6566 // If Elt0 is defined, extract it from the appropriate source. If the
6567 // source byte is not also even, shift the extracted word right 8 bits. If
6568 // Elt1 was also defined, OR the extracted values together before
6569 // inserting them in the result.
6570 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006571 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006572 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6573 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006574 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006575 DAG.getConstant(8,
6576 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006577 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006578 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6579 DAG.getConstant(0x00FF, MVT::i16));
6580 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006581 : InsElt0;
6582 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006583 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006584 DAG.getIntPtrConstant(i));
6585 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006586 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006587}
6588
Elena Demikhovsky41789462012-09-06 12:42:01 +00006589// v32i8 shuffles - Translate to VPSHUFB if possible.
6590static
6591SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006592 const X86Subtarget *Subtarget,
6593 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006594 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006595 SDValue V1 = SVOp->getOperand(0);
6596 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006597 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006598 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006599
6600 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006601 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6602 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006603
Michael Liao471b9172012-10-03 23:43:52 +00006604 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006605 // (1) one of input vector is undefined or zeroinitializer.
6606 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6607 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006608 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006609 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006610 return SDValue();
6611
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006612 if (V1IsAllZero && !V2IsAllZero) {
6613 CommuteVectorShuffleMask(MaskVals, 32);
6614 V1 = V2;
6615 }
6616 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006617 for (unsigned i = 0; i != 32; i++) {
6618 int EltIdx = MaskVals[i];
6619 if (EltIdx < 0 || EltIdx >= 32)
6620 EltIdx = 0x80;
6621 else {
6622 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6623 // Cross lane is not allowed.
6624 return SDValue();
6625 EltIdx &= 0xf;
6626 }
6627 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6628 }
6629 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6630 DAG.getNode(ISD::BUILD_VECTOR, dl,
6631 MVT::v32i8, &pshufbMask[0], 32));
6632}
6633
Evan Cheng7a831ce2007-12-15 03:00:47 +00006634/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006635/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006636/// done when every pair / quad of shuffle mask elements point to elements in
6637/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006638/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006639static
Nate Begeman9008ca62009-04-27 18:41:29 +00006640SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006641 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006642 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006643 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006644 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006645 MVT NewVT;
6646 unsigned Scale;
6647 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006648 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006649 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6650 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6651 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6652 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6653 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6654 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006655 }
6656
Nate Begeman9008ca62009-04-27 18:41:29 +00006657 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006658 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006659 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006660 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006661 int EltIdx = SVOp->getMaskElt(i+j);
6662 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006663 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006664 if (StartIdx < 0)
6665 StartIdx = (EltIdx / Scale);
6666 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006667 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006668 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006669 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006670 }
6671
Craig Topper11ac1f82012-05-04 04:08:44 +00006672 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6673 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006674 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006675}
6676
Evan Chengd880b972008-05-09 21:53:03 +00006677/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006678///
Craig Topper8d725b92013-08-15 05:33:45 +00006679static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006680 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006681 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006682 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006683 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006684 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006685 LD = dyn_cast<LoadSDNode>(SrcOp);
6686 if (!LD) {
6687 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6688 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006689 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006690 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006691 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006692 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006693 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006694 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006695 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006696 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006697 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6698 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6699 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006700 SrcOp.getOperand(0)
6701 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006702 }
6703 }
6704 }
6705
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006706 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006707 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006708 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006709 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006710}
6711
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006712/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6713/// which could not be matched by any known target speficic shuffle
6714static SDValue
6715LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006716
6717 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6718 if (NewOp.getNode())
6719 return NewOp;
6720
Craig Topper5a0910b2013-08-15 02:33:50 +00006721 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006722
Craig Topper8f35c132012-01-20 09:29:03 +00006723 unsigned NumElems = VT.getVectorNumElements();
6724 unsigned NumLaneElems = NumElems / 2;
6725
Andrew Trickac6d9be2013-05-25 02:42:55 +00006726 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006727 MVT EltVT = VT.getVectorElementType();
6728 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006729 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006730
Craig Topper9a2b6e12012-04-06 07:45:23 +00006731 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006732 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006733 // Build a shuffle mask for the output, discovering on the fly which
6734 // input vectors to use as shuffle operands (recorded in InputUsed).
6735 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006736 // out with UseBuildVector set.
6737 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006738 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006739 unsigned LaneStart = l * NumLaneElems;
6740 for (unsigned i = 0; i != NumLaneElems; ++i) {
6741 // The mask element. This indexes into the input.
6742 int Idx = SVOp->getMaskElt(i+LaneStart);
6743 if (Idx < 0) {
6744 // the mask element does not index into any input vector.
6745 Mask.push_back(-1);
6746 continue;
6747 }
Craig Topper8f35c132012-01-20 09:29:03 +00006748
Craig Topper9a2b6e12012-04-06 07:45:23 +00006749 // The input vector this mask element indexes into.
6750 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006751
Craig Topper9a2b6e12012-04-06 07:45:23 +00006752 // Turn the index into an offset from the start of the input vector.
6753 Idx -= Input * NumLaneElems;
6754
6755 // Find or create a shuffle vector operand to hold this input.
6756 unsigned OpNo;
6757 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6758 if (InputUsed[OpNo] == Input)
6759 // This input vector is already an operand.
6760 break;
6761 if (InputUsed[OpNo] < 0) {
6762 // Create a new operand for this input vector.
6763 InputUsed[OpNo] = Input;
6764 break;
6765 }
6766 }
6767
6768 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006769 // More than two input vectors used! Give up on trying to create a
6770 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6771 UseBuildVector = true;
6772 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006773 }
6774
6775 // Add the mask index for the new shuffle vector.
6776 Mask.push_back(Idx + OpNo * NumLaneElems);
6777 }
6778
Craig Topper8ae97ba2012-05-21 06:40:16 +00006779 if (UseBuildVector) {
6780 SmallVector<SDValue, 16> SVOps;
6781 for (unsigned i = 0; i != NumLaneElems; ++i) {
6782 // The mask element. This indexes into the input.
6783 int Idx = SVOp->getMaskElt(i+LaneStart);
6784 if (Idx < 0) {
6785 SVOps.push_back(DAG.getUNDEF(EltVT));
6786 continue;
6787 }
6788
6789 // The input vector this mask element indexes into.
6790 int Input = Idx / NumElems;
6791
6792 // Turn the index into an offset from the start of the input vector.
6793 Idx -= Input * NumElems;
6794
6795 // Extract the vector element by hand.
6796 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6797 SVOp->getOperand(Input),
6798 DAG.getIntPtrConstant(Idx)));
6799 }
6800
6801 // Construct the output using a BUILD_VECTOR.
6802 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6803 SVOps.size());
6804 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006805 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006806 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006807 } else {
6808 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006809 (InputUsed[0] % 2) * NumLaneElems,
6810 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006811 // If only one input was used, use an undefined vector for the other.
6812 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6813 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006814 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006815 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006816 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006817 }
6818
6819 Mask.clear();
6820 }
Craig Topper8f35c132012-01-20 09:29:03 +00006821
6822 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006823 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006824}
6825
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006826/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6827/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006828static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006829LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006830 SDValue V1 = SVOp->getOperand(0);
6831 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006832 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006833 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006834
Craig Topper7a9a28b2012-08-12 02:23:29 +00006835 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006836
Benjamin Kramer9c683542012-01-30 15:16:21 +00006837 std::pair<int, int> Locs[4];
6838 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006839 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006840
Evan Chengace3c172008-07-22 21:13:36 +00006841 unsigned NumHi = 0;
6842 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006843 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006844 int Idx = PermMask[i];
6845 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006846 Locs[i] = std::make_pair(-1, -1);
6847 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006848 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6849 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006850 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006851 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006852 NumLo++;
6853 } else {
6854 Locs[i] = std::make_pair(1, NumHi);
6855 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006856 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006857 NumHi++;
6858 }
6859 }
6860 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006861
Evan Chengace3c172008-07-22 21:13:36 +00006862 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006863 // If no more than two elements come from either vector. This can be
6864 // implemented with two shuffles. First shuffle gather the elements.
6865 // The second shuffle, which takes the first shuffle as both of its
6866 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006867 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006868
Benjamin Kramer9c683542012-01-30 15:16:21 +00006869 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006870
Benjamin Kramer9c683542012-01-30 15:16:21 +00006871 for (unsigned i = 0; i != 4; ++i)
6872 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006873 unsigned Idx = (i < 2) ? 0 : 4;
6874 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006875 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006876 }
Evan Chengace3c172008-07-22 21:13:36 +00006877
Nate Begeman9008ca62009-04-27 18:41:29 +00006878 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006879 }
6880
6881 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006882 // Otherwise, we must have three elements from one vector, call it X, and
6883 // one element from the other, call it Y. First, use a shufps to build an
6884 // intermediate vector with the one element from Y and the element from X
6885 // that will be in the same half in the final destination (the indexes don't
6886 // matter). Then, use a shufps to build the final vector, taking the half
6887 // containing the element from Y from the intermediate, and the other half
6888 // from X.
6889 if (NumHi == 3) {
6890 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006891 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006892 std::swap(V1, V2);
6893 }
6894
6895 // Find the element from V2.
6896 unsigned HiIndex;
6897 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006898 int Val = PermMask[HiIndex];
6899 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006900 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006901 if (Val >= 4)
6902 break;
6903 }
6904
Nate Begeman9008ca62009-04-27 18:41:29 +00006905 Mask1[0] = PermMask[HiIndex];
6906 Mask1[1] = -1;
6907 Mask1[2] = PermMask[HiIndex^1];
6908 Mask1[3] = -1;
6909 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006910
6911 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006912 Mask1[0] = PermMask[0];
6913 Mask1[1] = PermMask[1];
6914 Mask1[2] = HiIndex & 1 ? 6 : 4;
6915 Mask1[3] = HiIndex & 1 ? 4 : 6;
6916 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006917 }
Craig Topper69947b92012-04-23 06:57:04 +00006918
6919 Mask1[0] = HiIndex & 1 ? 2 : 0;
6920 Mask1[1] = HiIndex & 1 ? 0 : 2;
6921 Mask1[2] = PermMask[2];
6922 Mask1[3] = PermMask[3];
6923 if (Mask1[2] >= 0)
6924 Mask1[2] += 4;
6925 if (Mask1[3] >= 0)
6926 Mask1[3] += 4;
6927 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006928 }
6929
6930 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006931 int LoMask[] = { -1, -1, -1, -1 };
6932 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006933
Benjamin Kramer9c683542012-01-30 15:16:21 +00006934 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006935 unsigned MaskIdx = 0;
6936 unsigned LoIdx = 0;
6937 unsigned HiIdx = 2;
6938 for (unsigned i = 0; i != 4; ++i) {
6939 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006940 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006941 MaskIdx = 1;
6942 LoIdx = 0;
6943 HiIdx = 2;
6944 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006945 int Idx = PermMask[i];
6946 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006947 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006948 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006949 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006950 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006951 LoIdx++;
6952 } else {
6953 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006954 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006955 HiIdx++;
6956 }
6957 }
6958
Nate Begeman9008ca62009-04-27 18:41:29 +00006959 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6960 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006961 int MaskOps[] = { -1, -1, -1, -1 };
6962 for (unsigned i = 0; i != 4; ++i)
6963 if (Locs[i].first != -1)
6964 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006965 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006966}
6967
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006968static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006969 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006970 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006971
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006972 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6973 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006974 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6975 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6976 // BUILD_VECTOR (load), undef
6977 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006978
6979 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006980}
6981
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006982static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006983SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006984 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00006985
6986 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006987 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6988 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006989 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6990 V1, DAG));
6991}
6992
6993static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006994SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006995 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006996 SDValue V1 = Op.getOperand(0);
6997 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00006998 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006999
7000 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7001
Craig Topper1accb7e2012-01-10 06:54:16 +00007002 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007003 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7004
Evan Cheng0899f5c2011-08-31 02:05:24 +00007005 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7006 return DAG.getNode(ISD::BITCAST, dl, VT,
7007 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7008 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7009 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007010}
7011
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007012static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007013SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007014 SDValue V1 = Op.getOperand(0);
7015 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007016 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007017
7018 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7019 "unsupported shuffle type");
7020
7021 if (V2.getOpcode() == ISD::UNDEF)
7022 V2 = V1;
7023
7024 // v4i32 or v4f32
7025 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7026}
7027
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007028static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007029SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007030 SDValue V1 = Op.getOperand(0);
7031 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007032 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007033 unsigned NumElems = VT.getVectorNumElements();
7034
7035 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7036 // operand of these instructions is only memory, so check if there's a
7037 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7038 // same masks.
7039 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007040
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007041 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007042 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007043 CanFoldLoad = true;
7044
7045 // When V1 is a load, it can be folded later into a store in isel, example:
7046 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7047 // turns into:
7048 // (MOVLPSmr addr:$src1, VR128:$src2)
7049 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007050 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007051 CanFoldLoad = true;
7052
Dan Gohman65fd6562011-11-03 21:49:52 +00007053 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007054 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007055 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007056 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7057
7058 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007059 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007060 if (SVOp->getMaskElt(1) != -1)
7061 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007062 }
7063
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007064 // movl and movlp will both match v2i64, but v2i64 is never matched by
7065 // movl earlier because we make it strict to avoid messing with the movlp load
7066 // folding logic (see the code above getMOVLP call). Match it here then,
7067 // this is horrible, but will stay like this until we move all shuffle
7068 // matching to x86 specific nodes. Note that for the 1st condition all
7069 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007070 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007071 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7072 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007073 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007074 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007075 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007076 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007077
7078 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7079
7080 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007081 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007082 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007083}
7084
Michael Liaod9d09602012-10-23 17:34:00 +00007085// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007086static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7087 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007088 // PMOVZX is only available from SSE41.
7089 if (!Subtarget->hasSSE41())
7090 return SDValue();
7091
Craig Topper8d725b92013-08-15 05:33:45 +00007092 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007093
7094 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007095 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007096 return SDValue();
7097
7098 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007099 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007100 SDValue V1 = Op.getOperand(0);
7101 SDValue V2 = Op.getOperand(1);
7102 unsigned NumElems = VT.getVectorNumElements();
7103
7104 // Extending is an unary operation and the element type of the source vector
7105 // won't be equal to or larger than i64.
7106 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7107 VT.getVectorElementType() == MVT::i64)
7108 return SDValue();
7109
7110 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7111 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007112 while ((1U << Shift) < NumElems) {
7113 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007114 break;
7115 Shift += 1;
7116 // The maximal ratio is 8, i.e. from i8 to i64.
7117 if (Shift > 3)
7118 return SDValue();
7119 }
7120
7121 // Check the shuffle mask.
7122 unsigned Mask = (1U << Shift) - 1;
7123 for (unsigned i = 0; i != NumElems; ++i) {
7124 int EltIdx = SVOp->getMaskElt(i);
7125 if ((i & Mask) != 0 && EltIdx != -1)
7126 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007127 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007128 return SDValue();
7129 }
7130
7131 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007132 MVT NeVT = MVT::getIntegerVT(NBits);
7133 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007134
Craig Topper158ec072013-08-14 07:34:43 +00007135 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007136 return SDValue();
7137
7138 // Simplify the operand as it's prepared to be fed into shuffle.
7139 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7140 if (V1.getOpcode() == ISD::BITCAST &&
7141 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7142 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007143 V1.getOperand(0).getOperand(0)
7144 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007145 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7146 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007147 ConstantSDNode *CIdx =
7148 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007149 // If it's foldable, i.e. normal load with single use, we will let code
7150 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007151 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007152 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007153 MVT FullVT = V.getSimpleValueType();
7154 MVT V1VT = V1.getSimpleValueType();
7155 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007156 // The "ext_vec_elt" node is wider than the result node.
7157 // In this case we should extract subvector from V.
7158 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007159 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7160 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007161 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007162 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007163 DAG.getIntPtrConstant(0));
7164 }
Craig Topper8d725b92013-08-15 05:33:45 +00007165 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007166 }
Michael Liaod9d09602012-10-23 17:34:00 +00007167 }
7168
7169 return DAG.getNode(ISD::BITCAST, DL, VT,
7170 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7171}
7172
Craig Topper158ec072013-08-14 07:34:43 +00007173static SDValue
7174NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7175 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007176 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007177 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007178 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007179 SDValue V1 = Op.getOperand(0);
7180 SDValue V2 = Op.getOperand(1);
7181
7182 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007183 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007184
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007185 // Handle splat operations
7186 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007187 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007188 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007189 if (Broadcast.getNode())
7190 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007191 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007192
Michael Liaod9d09602012-10-23 17:34:00 +00007193 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007194 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007195 if (NewOp.getNode())
7196 return NewOp;
7197
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007198 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7199 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007200 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7201 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007202 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007203 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007204 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007205 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007206 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007207 // FIXME: Figure out a cleaner way to do this.
7208 // Try to make use of movq to zero out the top part.
7209 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007210 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007211 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007212 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007213 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7214 NewVT, true, false))
7215 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007216 DAG, Subtarget, dl);
7217 }
7218 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007219 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007220 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007221 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007222 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7223 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7224 DAG, Subtarget, dl);
7225 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007226 }
7227 }
7228 return SDValue();
7229}
7230
Dan Gohman475871a2008-07-27 21:46:04 +00007231SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007232X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007233 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007234 SDValue V1 = Op.getOperand(0);
7235 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007236 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007237 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007238 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007239 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007240 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007241 bool V1IsSplat = false;
7242 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007243 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007244 bool HasFp256 = Subtarget->hasFp256();
7245 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007246 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007247 bool OptForSize = MF.getFunction()->getAttributes().
7248 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007249
Craig Topper3426a3e2011-11-14 06:46:21 +00007250 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007251
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007252 if (V1IsUndef && V2IsUndef)
7253 return DAG.getUNDEF(VT);
7254
7255 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007256
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007257 // Vector shuffle lowering takes 3 steps:
7258 //
7259 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7260 // narrowing and commutation of operands should be handled.
7261 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7262 // shuffle nodes.
7263 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7264 // so the shuffle can be broken into other shuffles and the legalizer can
7265 // try the lowering again.
7266 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007267 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007268 // be matched during isel, all of them must be converted to a target specific
7269 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007270
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007271 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7272 // narrowing and commutation of operands should be handled. The actual code
7273 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007274 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007275 if (NewOp.getNode())
7276 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007277
Craig Topper5aaffa82012-02-19 02:53:47 +00007278 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7279
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007280 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7281 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007282 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007283 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007284 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007285 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007286
Craig Topperdd637ae2012-02-19 05:41:45 +00007287 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007288 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007289 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007290
Craig Topperdd637ae2012-02-19 05:41:45 +00007291 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007292 return getMOVHighToLow(Op, dl, DAG);
7293
7294 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007295 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007296 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007297 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007298
Craig Topper5aaffa82012-02-19 02:53:47 +00007299 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007300 // The actual implementation will match the mask in the if above and then
7301 // during isel it can match several different instructions, not only pshufd
7302 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007303 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7304 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007305
Craig Topper5aaffa82012-02-19 02:53:47 +00007306 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007307
Craig Topper1accb7e2012-01-10 06:54:16 +00007308 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007309 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7310
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007311 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7312 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7313 DAG);
7314
Craig Topperb3982da2011-12-31 23:50:21 +00007315 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007316 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007317 }
Eric Christopherfd179292009-08-27 18:07:15 +00007318
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007319 if (isPALIGNRMask(M, VT, Subtarget))
7320 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7321 getShufflePALIGNRImmediate(SVOp),
7322 DAG);
7323
Evan Chengf26ffe92008-05-29 08:22:04 +00007324 // Check if this can be converted into a logical shift.
7325 bool isLeft = false;
7326 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007327 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007328 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007329 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007330 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007331 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007332 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007333 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007334 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007335 }
Eric Christopherfd179292009-08-27 18:07:15 +00007336
Craig Topper5aaffa82012-02-19 02:53:47 +00007337 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007338 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007339 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007340 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007341 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007342 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7343
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007344 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007345 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7346 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007347 }
Eric Christopherfd179292009-08-27 18:07:15 +00007348
Nate Begeman9008ca62009-04-27 18:41:29 +00007349 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007350 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007351 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007352
Craig Topperdd637ae2012-02-19 05:41:45 +00007353 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007354 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007355
Craig Topperdd637ae2012-02-19 05:41:45 +00007356 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007357 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007358
Craig Topperdd637ae2012-02-19 05:41:45 +00007359 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007360 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007361
Craig Topperdd637ae2012-02-19 05:41:45 +00007362 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007363 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007364
Craig Topperdd637ae2012-02-19 05:41:45 +00007365 if (ShouldXformToMOVHLPS(M, VT) ||
7366 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007367 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007368
Evan Chengf26ffe92008-05-29 08:22:04 +00007369 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007370 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007371 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007372 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007373 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007374 }
Eric Christopherfd179292009-08-27 18:07:15 +00007375
Evan Cheng9eca5e82006-10-25 21:49:50 +00007376 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007377 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7378 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007379 V1IsSplat = isSplatVector(V1.getNode());
7380 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007381
Chris Lattner8a594482007-11-25 00:24:49 +00007382 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007383 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7384 CommuteVectorShuffleMask(M, NumElems);
7385 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007386 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007387 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007388 }
7389
Craig Topperbeabc6c2011-12-05 06:56:46 +00007390 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007391 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007392 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007393 return V1;
7394 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7395 // the instruction selector will not match, so get a canonical MOVL with
7396 // swapped operands to undo the commute.
7397 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007398 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007399
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007400 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007401 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007402
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007403 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007404 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007405
Evan Cheng9bbbb982006-10-25 20:48:19 +00007406 if (V2IsSplat) {
7407 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007408 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007409 // new vector_shuffle with the corrected mask.p
7410 SmallVector<int, 8> NewMask(M.begin(), M.end());
7411 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007412 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007413 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007414 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007415 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007416 }
7417
Evan Cheng9eca5e82006-10-25 21:49:50 +00007418 if (Commuted) {
7419 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007420 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007421 CommuteVectorShuffleMask(M, NumElems);
7422 std::swap(V1, V2);
7423 std::swap(V1IsSplat, V2IsSplat);
7424 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007425
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007426 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007427 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007428
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007429 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007430 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007431 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007432
Nate Begeman9008ca62009-04-27 18:41:29 +00007433 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007434 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007435 return CommuteVectorShuffle(SVOp, DAG);
7436
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007437 // The checks below are all present in isShuffleMaskLegal, but they are
7438 // inlined here right now to enable us to directly emit target specific
7439 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007440
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007441 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7442 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007443 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007444 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007445 }
7446
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007447 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007448 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007449 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007450 DAG);
7451
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007452 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007453 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007454 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007455 DAG);
7456
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007457 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007458 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007459 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007460
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007461 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007462 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007463 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007464 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007465
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007466 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007467 // Generate target specific nodes for 128 or 256-bit shuffles only
7468 // supported in the AVX instruction set.
7469 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007470
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007471 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007472 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007473 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7474
Craig Topper70b883b2011-11-28 10:14:51 +00007475 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007476 if (isVPERMILPMask(M, VT)) {
7477 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007478 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007479 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007480 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007481 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007482 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007483
Craig Topper70b883b2011-11-28 10:14:51 +00007484 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007485 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007486 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007487 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007488
Craig Topper1842ba02012-04-23 06:38:28 +00007489 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007490 if (BlendOp.getNode())
7491 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007492
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007493 unsigned Imm8;
7494 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7495 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007496
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007497 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7498 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007499 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7500 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007501 SmallVector<SDValue, 16> permclMask;
7502 for (unsigned i = 0; i != NumElems; ++i) {
7503 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7504 }
7505
7506 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7507 &permclMask[0], NumElems);
7508 if (V2IsUndef)
7509 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7510 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7511 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7512 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7513 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7514 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007515
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007516 //===--------------------------------------------------------------------===//
7517 // Since no target specific shuffle was selected for this generic one,
7518 // lower it into other known shuffles. FIXME: this isn't true yet, but
7519 // this is the plan.
7520 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007521
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007522 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7523 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007524 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007525 if (NewOp.getNode())
7526 return NewOp;
7527 }
7528
7529 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007530 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007531 if (NewOp.getNode())
7532 return NewOp;
7533 }
7534
Elena Demikhovsky41789462012-09-06 12:42:01 +00007535 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007536 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007537 if (NewOp.getNode())
7538 return NewOp;
7539 }
7540
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007541 // Handle all 128-bit wide vectors with 4 elements, and match them with
7542 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007543 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007544 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7545
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007546 // Handle general 256-bit shuffles
7547 if (VT.is256BitVector())
7548 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7549
Dan Gohman475871a2008-07-27 21:46:04 +00007550 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007551}
7552
Craig Topperf84b7502013-01-20 00:50:58 +00007553static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007554 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007555 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007556
Craig Topper5a0910b2013-08-15 02:33:50 +00007557 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007558 return SDValue();
7559
Duncan Sands83ec4b62008-06-06 12:08:01 +00007560 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007561 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007562 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007563 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007564 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007565 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007566 }
7567
7568 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007569 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7570 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7571 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007572 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7573 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007574 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007575 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007576 Op.getOperand(0)),
7577 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007578 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007579 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007580 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007581 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007582 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007583 }
7584
7585 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007586 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7587 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007588 // result has a single use which is a store or a bitcast to i32. And in
7589 // the case of a store, it's not worth it if the index is a constant 0,
7590 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007591 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007592 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007593 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007594 if ((User->getOpcode() != ISD::STORE ||
7595 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7596 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007597 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007598 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007599 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007600 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007601 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007602 Op.getOperand(0)),
7603 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007604 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007605 }
7606
7607 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007608 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007609 if (isa<ConstantSDNode>(Op.getOperand(1)))
7610 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007611 }
Dan Gohman475871a2008-07-27 21:46:04 +00007612 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007613}
7614
Dan Gohman475871a2008-07-27 21:46:04 +00007615SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007616X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7617 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007618 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007619 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007620 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007621 SDValue Idx = Op.getOperand(1);
7622 if (!isa<ConstantSDNode>(Idx)) {
7623 if (VecVT.is512BitVector() ||
7624 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7625 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7626
7627 MVT MaskEltVT =
7628 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7629 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7630 MaskEltVT.getSizeInBits());
7631
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007632 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007633 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7634 getZeroVector(MaskVT, Subtarget, DAG, dl),
7635 Idx, DAG.getConstant(0, getPointerTy()));
7636 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7637 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7638 Perm, DAG.getConstant(0, getPointerTy()));
7639 }
7640 return SDValue();
7641 }
David Greene74a579d2011-02-10 16:57:36 +00007642
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007643 // If this is a 256-bit vector result, first extract the 128-bit vector and
7644 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007645 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007646
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007647 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007648 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007649 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007650 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007651
Elena Demikhovsky83952512013-07-31 11:35:14 +00007652 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7653
7654 //if (IdxVal >= NumElems/2)
7655 // IdxVal -= NumElems/2;
7656 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007657 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007658 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007659 }
7660
Craig Topper7a9a28b2012-08-12 02:23:29 +00007661 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007662
Craig Topperd0a31172012-01-10 06:37:29 +00007663 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007664 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007665 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007666 return Res;
7667 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007668
Craig Topper5a0910b2013-08-15 02:33:50 +00007669 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007670 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007671 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007672 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007673 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007674 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007675 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7676 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007677 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007678 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007679 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007680 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007681 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007682 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007683 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007684 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007685 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007686 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007687 }
7688
7689 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007690 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007691 if (Idx == 0)
7692 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007693
Evan Cheng0db9fe62006-04-25 20:13:52 +00007694 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007695 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007696 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007697 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007698 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007699 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007700 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007701 }
7702
7703 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007704 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7705 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7706 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007707 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007708 if (Idx == 0)
7709 return Op;
7710
7711 // UNPCKHPD the element to the lowest double word, then movsd.
7712 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7713 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007714 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007715 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007716 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007717 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007718 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007719 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007720 }
7721
Dan Gohman475871a2008-07-27 21:46:04 +00007722 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007723}
7724
Craig Topperf84b7502013-01-20 00:50:58 +00007725static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007726 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007727 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007728 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007729
Dan Gohman475871a2008-07-27 21:46:04 +00007730 SDValue N0 = Op.getOperand(0);
7731 SDValue N1 = Op.getOperand(1);
7732 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007733
Craig Topper7a9a28b2012-08-12 02:23:29 +00007734 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007735 return SDValue();
7736
Dan Gohman8a55ce42009-09-23 21:02:20 +00007737 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007738 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007739 unsigned Opc;
7740 if (VT == MVT::v8i16)
7741 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007742 else if (VT == MVT::v16i8)
7743 Opc = X86ISD::PINSRB;
7744 else
7745 Opc = X86ISD::PINSRB;
7746
Nate Begeman14d12ca2008-02-11 04:19:36 +00007747 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7748 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007749 if (N1.getValueType() != MVT::i32)
7750 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7751 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007752 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007753 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007754 }
7755
7756 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007757 // Bits [7:6] of the constant are the source select. This will always be
7758 // zero here. The DAG Combiner may combine an extract_elt index into these
7759 // bits. For example (insert (extract, 3), 2) could be matched by putting
7760 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007761 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007762 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007763 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007764 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007765 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007766 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007767 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007768 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007769 }
7770
7771 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007772 // PINSR* works with constant index.
7773 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007774 }
Dan Gohman475871a2008-07-27 21:46:04 +00007775 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007776}
7777
Dan Gohman475871a2008-07-27 21:46:04 +00007778SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007779X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007780 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007781 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007782
Andrew Trickac6d9be2013-05-25 02:42:55 +00007783 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007784 SDValue N0 = Op.getOperand(0);
7785 SDValue N1 = Op.getOperand(1);
7786 SDValue N2 = Op.getOperand(2);
7787
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007788 // If this is a 256-bit vector result, first extract the 128-bit vector,
7789 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007790 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007791 if (!isa<ConstantSDNode>(N2))
7792 return SDValue();
7793
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007794 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007795 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007796 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007797
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007798 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007799 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7800 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7801
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007802 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007803 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007804
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007805 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007806 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007807 }
7808
Craig Topperd0a31172012-01-10 06:37:29 +00007809 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007810 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7811
Dan Gohman8a55ce42009-09-23 21:02:20 +00007812 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007813 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007814
Dan Gohman8a55ce42009-09-23 21:02:20 +00007815 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007816 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7817 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007818 if (N1.getValueType() != MVT::i32)
7819 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7820 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007821 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007822 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007823 }
Dan Gohman475871a2008-07-27 21:46:04 +00007824 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007825}
7826
Craig Topper55b24052012-09-11 06:15:32 +00007827static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007828 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007829 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007830
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007831 // If this is a 256-bit vector result, first insert into a 128-bit
7832 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007833 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007834 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007835 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007836 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007837 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007838
7839 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7840
7841 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007842 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007843 }
7844
Craig Topperd77d2fe2012-04-29 20:22:05 +00007845 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007846 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007847 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007848
Owen Anderson825b72b2009-08-11 20:47:22 +00007849 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007850 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007851 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007852 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007853}
7854
David Greene91585092011-01-26 15:38:49 +00007855// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7856// a simple subregister reference or explicit instructions to grab
7857// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007858static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7859 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007860 SDLoc dl(Op);
7861 SDValue In = Op.getOperand(0);
7862 SDValue Idx = Op.getOperand(1);
7863 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007864 MVT ResVT = Op.getSimpleValueType();
7865 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007866
Elena Demikhovsky83952512013-07-31 11:35:14 +00007867 if (Subtarget->hasFp256()) {
7868 if (ResVT.is128BitVector() &&
7869 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007870 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007871 return Extract128BitVector(In, IdxVal, DAG, dl);
7872 }
7873 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7874 isa<ConstantSDNode>(Idx)) {
7875 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007876 }
David Greene91585092011-01-26 15:38:49 +00007877 }
7878 return SDValue();
7879}
7880
David Greenecfe33c42011-01-26 19:13:22 +00007881// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7882// simple superregister reference or explicit instructions to insert
7883// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007884static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7885 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007886 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007887 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007888 SDValue Vec = Op.getNode()->getOperand(0);
7889 SDValue SubVec = Op.getNode()->getOperand(1);
7890 SDValue Idx = Op.getNode()->getOperand(2);
7891
Craig Topper8d725b92013-08-15 05:33:45 +00007892 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7893 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7894 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007895 isa<ConstantSDNode>(Idx)) {
7896 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7897 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007898 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007899
Craig Topper8d725b92013-08-15 05:33:45 +00007900 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7901 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007902 isa<ConstantSDNode>(Idx)) {
7903 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7904 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7905 }
David Greenecfe33c42011-01-26 19:13:22 +00007906 }
7907 return SDValue();
7908}
7909
Bill Wendling056292f2008-09-16 21:48:12 +00007910// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7911// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7912// one of the above mentioned nodes. It has to be wrapped because otherwise
7913// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7914// be used to form addressing mode. These wrapped nodes will be selected
7915// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007916SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007917X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007918 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007919
Chris Lattner41621a22009-06-26 19:22:52 +00007920 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7921 // global base reg.
7922 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007923 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007924 CodeModel::Model M = getTargetMachine().getCodeModel();
7925
Chris Lattner4f066492009-07-11 20:29:19 +00007926 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007927 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007928 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007929 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007930 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007931 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007932 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007933
Evan Cheng1606e8e2009-03-13 07:51:59 +00007934 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007935 CP->getAlignment(),
7936 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007937 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007938 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007939 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007940 if (OpFlag) {
7941 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007942 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007943 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007944 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007945 }
7946
7947 return Result;
7948}
7949
Dan Gohmand858e902010-04-17 15:26:15 +00007950SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007951 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007952
Chris Lattner18c59872009-06-27 04:16:01 +00007953 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7954 // global base reg.
7955 unsigned char OpFlag = 0;
7956 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007957 CodeModel::Model M = getTargetMachine().getCodeModel();
7958
Chris Lattner4f066492009-07-11 20:29:19 +00007959 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007960 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007961 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007962 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007963 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007964 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007965 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007966
Chris Lattner18c59872009-06-27 04:16:01 +00007967 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7968 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007969 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007970 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007971
Chris Lattner18c59872009-06-27 04:16:01 +00007972 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007973 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007974 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7975 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007976 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007977 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007978
Chris Lattner18c59872009-06-27 04:16:01 +00007979 return Result;
7980}
7981
7982SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007983X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007984 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007985
Chris Lattner18c59872009-06-27 04:16:01 +00007986 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7987 // global base reg.
7988 unsigned char OpFlag = 0;
7989 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007990 CodeModel::Model M = getTargetMachine().getCodeModel();
7991
Chris Lattner4f066492009-07-11 20:29:19 +00007992 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007993 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7994 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7995 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007996 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007997 } else if (Subtarget->isPICStyleGOT()) {
7998 OpFlag = X86II::MO_GOT;
7999 } else if (Subtarget->isPICStyleStubPIC()) {
8000 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8001 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8002 OpFlag = X86II::MO_DARWIN_NONLAZY;
8003 }
Eric Christopherfd179292009-08-27 18:07:15 +00008004
Chris Lattner18c59872009-06-27 04:16:01 +00008005 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008006
Andrew Trickac6d9be2013-05-25 02:42:55 +00008007 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008008 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008009
Chris Lattner18c59872009-06-27 04:16:01 +00008010 // With PIC, the address is actually $g + Offset.
8011 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008012 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008013 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8014 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008015 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008016 Result);
8017 }
Eric Christopherfd179292009-08-27 18:07:15 +00008018
Eli Friedman586272d2011-08-11 01:48:05 +00008019 // For symbols that require a load from a stub to get the address, emit the
8020 // load.
8021 if (isGlobalStubReference(OpFlag))
8022 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008023 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008024
Chris Lattner18c59872009-06-27 04:16:01 +00008025 return Result;
8026}
8027
Dan Gohman475871a2008-07-27 21:46:04 +00008028SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008029X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008030 // Create the TargetBlockAddressAddress node.
8031 unsigned char OpFlags =
8032 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008033 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008034 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008035 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008036 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008037 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8038 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008039
Dan Gohmanf705adb2009-10-30 01:28:02 +00008040 if (Subtarget->isPICStyleRIPRel() &&
8041 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008042 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8043 else
8044 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008045
Dan Gohman29cbade2009-11-20 23:18:13 +00008046 // With PIC, the address is actually $g + Offset.
8047 if (isGlobalRelativeToPICBase(OpFlags)) {
8048 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8049 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8050 Result);
8051 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008052
8053 return Result;
8054}
8055
8056SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008057X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008058 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008059 // Create the TargetGlobalAddress node, folding in the constant
8060 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008061 unsigned char OpFlags =
8062 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008063 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008064 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008065 if (OpFlags == X86II::MO_NO_FLAG &&
8066 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008067 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008068 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008069 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008070 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008071 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008072 }
Eric Christopherfd179292009-08-27 18:07:15 +00008073
Chris Lattner4f066492009-07-11 20:29:19 +00008074 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008075 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008076 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8077 else
8078 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008079
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008080 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008081 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008082 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8083 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008084 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008086
Chris Lattner36c25012009-07-10 07:34:39 +00008087 // For globals that require a load from a stub to get the address, emit the
8088 // load.
8089 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008090 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008091 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008092
Dan Gohman6520e202008-10-18 02:06:02 +00008093 // If there was a non-zero offset that we didn't fold, create an explicit
8094 // addition for it.
8095 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008096 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008097 DAG.getConstant(Offset, getPointerTy()));
8098
Evan Cheng0db9fe62006-04-25 20:13:52 +00008099 return Result;
8100}
8101
Evan Chengda43bcf2008-09-24 00:05:32 +00008102SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008103X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008104 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008105 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008106 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008107}
8108
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008109static SDValue
8110GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008111 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008112 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008113 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008114 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008115 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008116 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008117 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008118 GA->getOffset(),
8119 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008120
8121 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8122 : X86ISD::TLSADDR;
8123
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008124 if (InFlag) {
8125 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008126 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008127 } else {
8128 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008129 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008130 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008131
8132 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008133 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008134
Rafael Espindola15f1b662009-04-24 12:59:40 +00008135 SDValue Flag = Chain.getValue(1);
8136 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008137}
8138
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008139// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008140static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008141LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008142 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008143 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008144 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008145 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008146 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008147 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008148 InFlag = Chain.getValue(1);
8149
Chris Lattnerb903bed2009-06-26 21:20:29 +00008150 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008151}
8152
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008153// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008154static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008155LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008156 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008157 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8158 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008159}
8160
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008161static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8162 SelectionDAG &DAG,
8163 const EVT PtrVT,
8164 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008165 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008166
8167 // Get the start address of the TLS block for this module.
8168 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8169 .getInfo<X86MachineFunctionInfo>();
8170 MFI->incNumLocalDynamicTLSAccesses();
8171
8172 SDValue Base;
8173 if (is64Bit) {
8174 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8175 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8176 } else {
8177 SDValue InFlag;
8178 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008179 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008180 InFlag = Chain.getValue(1);
8181 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8182 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8183 }
8184
8185 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8186 // of Base.
8187
8188 // Build x@dtpoff.
8189 unsigned char OperandFlags = X86II::MO_DTPOFF;
8190 unsigned WrapperKind = X86ISD::Wrapper;
8191 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8192 GA->getValueType(0),
8193 GA->getOffset(), OperandFlags);
8194 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8195
8196 // Add x@dtpoff with the base.
8197 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8198}
8199
Hans Wennborg228756c2012-05-11 10:11:01 +00008200// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008201static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008202 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008203 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008204 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008205
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008206 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8207 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8208 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008209
Eric Christopher739eb9d2013-10-14 21:52:23 +00008210 SDValue ThreadPointer =
8211 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8212 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008213
Chris Lattnerb903bed2009-06-26 21:20:29 +00008214 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008215 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8216 // initialexec.
8217 unsigned WrapperKind = X86ISD::Wrapper;
8218 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008219 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008220 } else if (model == TLSModel::InitialExec) {
8221 if (is64Bit) {
8222 OperandFlags = X86II::MO_GOTTPOFF;
8223 WrapperKind = X86ISD::WrapperRIP;
8224 } else {
8225 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8226 }
Chris Lattner18c59872009-06-27 04:16:01 +00008227 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008228 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008229 }
Eric Christopherfd179292009-08-27 18:07:15 +00008230
Hans Wennborg228756c2012-05-11 10:11:01 +00008231 // emit "addl x@ntpoff,%eax" (local exec)
8232 // or "addl x@indntpoff,%eax" (initial exec)
8233 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008234 SDValue TGA =
8235 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8236 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008237 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008238
Hans Wennborg228756c2012-05-11 10:11:01 +00008239 if (model == TLSModel::InitialExec) {
8240 if (isPIC && !is64Bit) {
8241 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008242 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008243 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008244 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008245
8246 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008247 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008248 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008249
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008250 // The address of the thread local variable is the add of the thread
8251 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008252 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008253}
8254
Dan Gohman475871a2008-07-27 21:46:04 +00008255SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008256X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008257
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008258 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008259 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008260
Eric Christopher30ef0e52010-06-03 04:07:48 +00008261 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008262 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008263
Eric Christopher30ef0e52010-06-03 04:07:48 +00008264 switch (model) {
8265 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008266 if (Subtarget->is64Bit())
8267 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8268 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008269 case TLSModel::LocalDynamic:
8270 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8271 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008272 case TLSModel::InitialExec:
8273 case TLSModel::LocalExec:
8274 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008275 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008276 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008277 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008278 llvm_unreachable("Unknown TLS model.");
8279 }
8280
8281 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008282 // Darwin only has one model of TLS. Lower to that.
8283 unsigned char OpFlag = 0;
8284 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8285 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008286
Eric Christopher30ef0e52010-06-03 04:07:48 +00008287 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8288 // global base reg.
8289 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8290 !Subtarget->is64Bit();
8291 if (PIC32)
8292 OpFlag = X86II::MO_TLVP_PIC_BASE;
8293 else
8294 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008295 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008296 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008297 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008298 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008299 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008300
Eric Christopher30ef0e52010-06-03 04:07:48 +00008301 // With PIC32, the address is actually $g + Offset.
8302 if (PIC32)
8303 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8304 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008305 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008306 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008307
Eric Christopher30ef0e52010-06-03 04:07:48 +00008308 // Lowering the machine isd will make sure everything is in the right
8309 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008310 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008311 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008312 SDValue Args[] = { Chain, Offset };
8313 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008314
Eric Christopher30ef0e52010-06-03 04:07:48 +00008315 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8316 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8317 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008318
Eric Christopher30ef0e52010-06-03 04:07:48 +00008319 // And our return value (tls address) is in the standard call return value
8320 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008321 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008322 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8323 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008324 }
8325
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008326 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008327 // Just use the implicit TLS architecture
8328 // Need to generate someting similar to:
8329 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8330 // ; from TEB
8331 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8332 // mov rcx, qword [rdx+rcx*8]
8333 // mov eax, .tls$:tlsvar
8334 // [rax+rcx] contains the address
8335 // Windows 64bit: gs:0x58
8336 // Windows 32bit: fs:__tls_array
8337
8338 // If GV is an alias then use the aliasee for determining
8339 // thread-localness.
8340 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8341 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008342 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008343 SDValue Chain = DAG.getEntryNode();
8344
8345 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008346 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8347 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008348 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8349 ? Type::getInt8PtrTy(*DAG.getContext(),
8350 256)
8351 : Type::getInt32PtrTy(*DAG.getContext(),
8352 257));
8353
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008354 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8355 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8356 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8357
8358 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008359 MachinePointerInfo(Ptr),
8360 false, false, false, 0);
8361
8362 // Load the _tls_index variable
8363 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8364 if (Subtarget->is64Bit())
8365 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8366 IDX, MachinePointerInfo(), MVT::i32,
8367 false, false, 0);
8368 else
8369 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8370 false, false, false, 0);
8371
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008372 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008373 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008374 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8375
8376 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8377 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8378 false, false, false, 0);
8379
8380 // Get the offset of start of .tls section
8381 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8382 GA->getValueType(0),
8383 GA->getOffset(), X86II::MO_SECREL);
8384 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8385
8386 // The address of the thread local variable is the add of the thread
8387 // pointer with the offset of the variable.
8388 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008389 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008390
David Blaikie4d6ccb52012-01-20 21:51:11 +00008391 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008392}
8393
Chad Rosierb90d2a92012-01-03 23:19:12 +00008394/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8395/// and take a 2 x i32 value to shift plus a shift amount.
8396SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008397 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008398 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008399 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008400 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008401 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008402 SDValue ShOpLo = Op.getOperand(0);
8403 SDValue ShOpHi = Op.getOperand(1);
8404 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008405 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008406 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008407 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008408
Dan Gohman475871a2008-07-27 21:46:04 +00008409 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008410 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008411 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8412 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008413 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008414 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8415 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008416 }
Evan Chenge3413162006-01-09 18:33:28 +00008417
Owen Anderson825b72b2009-08-11 20:47:22 +00008418 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8419 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008420 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008421 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008422
Dan Gohman475871a2008-07-27 21:46:04 +00008423 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008424 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008425 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8426 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008427
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008428 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008429 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8430 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008431 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008432 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8433 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008434 }
8435
Dan Gohman475871a2008-07-27 21:46:04 +00008436 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008437 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008438}
Evan Chenga3195e82006-01-12 22:54:21 +00008439
Dan Gohmand858e902010-04-17 15:26:15 +00008440SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8441 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008442 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008443
Dale Johannesen0488fb62010-09-30 23:57:10 +00008444 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008445 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008446
Owen Anderson825b72b2009-08-11 20:47:22 +00008447 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008448 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008449
Eli Friedman36df4992009-05-27 00:47:34 +00008450 // These are really Legal; return the operand so the caller accepts it as
8451 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008452 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008453 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008454 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008455 Subtarget->is64Bit()) {
8456 return Op;
8457 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008458
Andrew Trickac6d9be2013-05-25 02:42:55 +00008459 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008460 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008461 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008462 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008463 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008464 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008465 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008466 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008467 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008468 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8469}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008470
Owen Andersone50ed302009-08-10 22:56:29 +00008471SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008472 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008473 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008474 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008475 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008476 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008477 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008478 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008479 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008480 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008481 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008482
Chris Lattner492a43e2010-09-22 01:28:21 +00008483 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008484
Stuart Hastings84be9582011-06-02 15:57:11 +00008485 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8486 MachineMemOperand *MMO;
8487 if (FI) {
8488 int SSFI = FI->getIndex();
8489 MMO =
8490 DAG.getMachineFunction()
8491 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8492 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8493 } else {
8494 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8495 StackSlot = StackSlot.getOperand(1);
8496 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008497 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008498 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8499 X86ISD::FILD, DL,
8500 Tys, Ops, array_lengthof(Ops),
8501 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008502
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008503 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008504 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008505 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008506
8507 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8508 // shouldn't be necessary except that RFP cannot be live across
8509 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008510 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008511 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8512 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008513 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008514 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008515 SDValue Ops[] = {
8516 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8517 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008518 MachineMemOperand *MMO =
8519 DAG.getMachineFunction()
8520 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008521 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008522
Chris Lattner492a43e2010-09-22 01:28:21 +00008523 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8524 Ops, array_lengthof(Ops),
8525 Op.getValueType(), MMO);
8526 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008527 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008528 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008529 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008530
Evan Cheng0db9fe62006-04-25 20:13:52 +00008531 return Result;
8532}
8533
Bill Wendling8b8a6362009-01-17 03:56:04 +00008534// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008535SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8536 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008537 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008538 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008539 movq %rax, %xmm0
8540 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8541 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8542 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008543 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008544 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008545 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008546 addpd %xmm1, %xmm0
8547 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008548 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008549
Andrew Trickac6d9be2013-05-25 02:42:55 +00008550 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008551 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008552
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008553 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008554 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008555 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008556 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008557
Chris Lattner97484792012-01-25 09:56:22 +00008558 SmallVector<Constant*,2> CV1;
8559 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008560 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8561 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008562 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008563 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8564 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008565 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008566 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008567
Bill Wendling397ae212012-01-05 02:13:20 +00008568 // Load the 64-bit value into an XMM register.
8569 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8570 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008571 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008572 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008573 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008574 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8575 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8576 CLod0);
8577
Owen Anderson825b72b2009-08-11 20:47:22 +00008578 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008579 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008580 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008581 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008582 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008583 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008584
Craig Topperd0a31172012-01-10 06:37:29 +00008585 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008586 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8587 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8588 } else {
8589 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8590 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8591 S2F, 0x4E, DAG);
8592 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8593 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8594 Sub);
8595 }
8596
8597 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008598 DAG.getIntPtrConstant(0));
8599}
8600
Bill Wendling8b8a6362009-01-17 03:56:04 +00008601// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008602SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8603 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008604 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008605 // FP constant to bias correct the final result.
8606 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008607 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008608
8609 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008610 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008611 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008612
Eli Friedmanf3704762011-08-29 21:15:46 +00008613 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008614 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008615
Owen Anderson825b72b2009-08-11 20:47:22 +00008616 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008617 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008618 DAG.getIntPtrConstant(0));
8619
8620 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008621 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008622 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008623 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008624 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008625 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008626 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008627 MVT::v2f64, Bias)));
8628 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008629 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008630 DAG.getIntPtrConstant(0));
8631
8632 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008633 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008634
8635 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008636 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008637
Craig Topper69947b92012-04-23 06:57:04 +00008638 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008639 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008640 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008641 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008642 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008643
8644 // Handle final rounding.
8645 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008646}
8647
Michael Liaoa7554632012-10-23 17:36:08 +00008648SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8649 SelectionDAG &DAG) const {
8650 SDValue N0 = Op.getOperand(0);
8651 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008652 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008653
8654 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8655 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8656 "Custom UINT_TO_FP is not supported!");
8657
Craig Topperb99bafe2013-01-21 06:21:54 +00008658 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8659 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008660 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8661 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8662}
8663
Dan Gohmand858e902010-04-17 15:26:15 +00008664SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8665 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008666 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008667 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008668
Michael Liaoa7554632012-10-23 17:36:08 +00008669 if (Op.getValueType().isVector())
8670 return lowerUINT_TO_FP_vec(Op, DAG);
8671
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008672 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008673 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8674 // the optimization here.
8675 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008676 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008677
Owen Andersone50ed302009-08-10 22:56:29 +00008678 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008679 EVT DstVT = Op.getValueType();
8680 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008681 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008682 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008683 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008684 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008685 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008686
8687 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008688 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008689 if (SrcVT == MVT::i32) {
8690 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8691 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8692 getPointerTy(), StackSlot, WordOff);
8693 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008694 StackSlot, MachinePointerInfo(),
8695 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008696 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008697 OffsetSlot, MachinePointerInfo(),
8698 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008699 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8700 return Fild;
8701 }
8702
8703 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8704 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008705 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008706 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008707 // For i64 source, we need to add the appropriate power of 2 if the input
8708 // was negative. This is the same as the optimization in
8709 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8710 // we must be careful to do the computation in x87 extended precision, not
8711 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008712 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8713 MachineMemOperand *MMO =
8714 DAG.getMachineFunction()
8715 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8716 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008717
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008718 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8719 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008720 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8721 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008722
8723 APInt FF(32, 0x5F800000ULL);
8724
8725 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008726 SDValue SignSet = DAG.getSetCC(dl,
8727 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008728 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8729 ISD::SETLT);
8730
8731 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8732 SDValue FudgePtr = DAG.getConstantPool(
8733 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8734 getPointerTy());
8735
8736 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8737 SDValue Zero = DAG.getIntPtrConstant(0);
8738 SDValue Four = DAG.getIntPtrConstant(4);
8739 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8740 Zero, Four);
8741 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8742
8743 // Load the value out, extending it from f32 to f80.
8744 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008745 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008746 FudgePtr, MachinePointerInfo::getConstantPool(),
8747 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008748 // Extend everything to 80 bits to force it to be done on x87.
8749 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8750 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008751}
8752
Craig Topperb99bafe2013-01-21 06:21:54 +00008753std::pair<SDValue,SDValue>
8754X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8755 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008756 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008757
Owen Andersone50ed302009-08-10 22:56:29 +00008758 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008759
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008760 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008761 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8762 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008763 }
8764
Owen Anderson825b72b2009-08-11 20:47:22 +00008765 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8766 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008767 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008768
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008769 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008770 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008771 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008772 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008773 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008774 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008775 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008776 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008777
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008778 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8779 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008780 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008781 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008782 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008783 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008784
Evan Cheng0db9fe62006-04-25 20:13:52 +00008785 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008786 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8787 Opc = X86ISD::WIN_FTOL;
8788 else
8789 switch (DstTy.getSimpleVT().SimpleTy) {
8790 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8791 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8792 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8793 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8794 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008795
Dan Gohman475871a2008-07-27 21:46:04 +00008796 SDValue Chain = DAG.getEntryNode();
8797 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008798 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008799 // FIXME This causes a redundant load/store if the SSE-class value is already
8800 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008801 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008802 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008803 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008804 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008805 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008806 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008807 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008808 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008809 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008810
Chris Lattner492a43e2010-09-22 01:28:21 +00008811 MachineMemOperand *MMO =
8812 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8813 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008814 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8815 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008816 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008817 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008818 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8819 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008820
Chris Lattner07290932010-09-22 01:05:16 +00008821 MachineMemOperand *MMO =
8822 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8823 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008824
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008825 if (Opc != X86ISD::WIN_FTOL) {
8826 // Build the FP_TO_INT*_IN_MEM
8827 SDValue Ops[] = { Chain, Value, StackSlot };
8828 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008829 Ops, array_lengthof(Ops), DstTy,
8830 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008831 return std::make_pair(FIST, StackSlot);
8832 } else {
8833 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8834 DAG.getVTList(MVT::Other, MVT::Glue),
8835 Chain, Value);
8836 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8837 MVT::i32, ftol.getValue(1));
8838 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8839 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008840 SDValue Ops[] = { eax, edx };
8841 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008842 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8843 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008844 return std::make_pair(pair, SDValue());
8845 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008846}
8847
Nadav Rotem0509db22012-12-28 05:45:24 +00008848static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8849 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008850 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008851 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008852 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008853 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008854
8855 // Optimize vectors in AVX mode:
8856 //
8857 // v8i16 -> v8i32
8858 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8859 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8860 // Concat upper and lower parts.
8861 //
8862 // v4i32 -> v4i64
8863 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8864 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8865 // Concat upper and lower parts.
8866 //
8867
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008868 if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8869 ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
Nadav Rotem0509db22012-12-28 05:45:24 +00008870 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8871 return SDValue();
8872
8873 if (Subtarget->hasInt256())
8874 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8875
8876 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8877 SDValue Undef = DAG.getUNDEF(InVT);
8878 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8879 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8880 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8881
Craig Toppera080daf2013-01-20 21:50:27 +00008882 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008883 VT.getVectorNumElements()/2);
8884
8885 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8886 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8887
8888 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8889}
8890
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008891static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8892 SelectionDAG &DAG) {
8893 MVT VT = Op->getValueType(0).getSimpleVT();
8894 SDValue In = Op->getOperand(0);
8895 MVT InVT = In.getValueType().getSimpleVT();
8896 SDLoc DL(Op);
8897 unsigned int NumElts = VT.getVectorNumElements();
8898 if (NumElts != 8 && NumElts != 16)
8899 return SDValue();
8900
8901 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8902 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8903
8904 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8905 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8906 // Now we have only mask extension
8907 assert(InVT.getVectorElementType() == MVT::i1);
8908 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8909 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8910 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8911 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8912 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8913 MachinePointerInfo::getConstantPool(),
8914 false, false, false, Alignment);
8915
8916 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8917 if (VT.is512BitVector())
8918 return Brcst;
8919 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8920}
8921
Craig Topperff79bc62013-08-18 08:53:01 +00008922static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8923 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008924 if (Subtarget->hasFp256()) {
8925 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8926 if (Res.getNode())
8927 return Res;
8928 }
8929
8930 return SDValue();
8931}
Craig Topperff79bc62013-08-18 08:53:01 +00008932
8933static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8934 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008935 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008936 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008937 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008938 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008939
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008940 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8941 return LowerZERO_EXTEND_AVX512(Op, DAG);
8942
Nadav Rotem0509db22012-12-28 05:45:24 +00008943 if (Subtarget->hasFp256()) {
8944 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8945 if (Res.getNode())
8946 return Res;
8947 }
8948
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008949 assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
8950 VT.getVectorNumElements() != SVT.getVectorNumElements());
8951 return SDValue();
Michael Liaoa7554632012-10-23 17:36:08 +00008952}
8953
Craig Topperd713c0f2013-01-20 21:34:37 +00008954SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008955 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008956 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008957 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008958 MVT InVT = In.getSimpleValueType();
8959 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8960 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008961
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008962 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8963 if (VT.getVectorElementType().getSizeInBits() >=8)
8964 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8965
8966 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8967 unsigned NumElts = InVT.getVectorNumElements();
8968 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8969 if (InVT.getSizeInBits() < 512) {
8970 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8971 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8972 InVT = ExtVT;
8973 }
8974 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8975 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8976 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8977 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8978 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8979 MachinePointerInfo::getConstantPool(),
8980 false, false, false, Alignment);
8981 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8982 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8983 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8984 }
8985
8986 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00008987 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8988 if (Subtarget->hasInt256()) {
8989 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8990 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8991 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8992 ShufMask);
8993 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8994 DAG.getIntPtrConstant(0));
8995 }
8996
8997 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8998 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8999 DAG.getIntPtrConstant(0));
9000 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9001 DAG.getIntPtrConstant(2));
9002
9003 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9004 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9005
9006 // The PSHUFD mask:
9007 static const int ShufMask1[] = {0, 2, 0, 0};
9008 SDValue Undef = DAG.getUNDEF(VT);
9009 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9010 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9011
9012 // The MOVLHPS mask:
9013 static const int ShufMask2[] = {0, 1, 4, 5};
9014 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9015 }
9016
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009017 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009018 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9019 if (Subtarget->hasInt256()) {
9020 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9021
9022 SmallVector<SDValue,32> pshufbMask;
9023 for (unsigned i = 0; i < 2; ++i) {
9024 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9025 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9026 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9027 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9028 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9029 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9030 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9031 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9032 for (unsigned j = 0; j < 8; ++j)
9033 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9034 }
9035 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9036 &pshufbMask[0], 32);
9037 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9038 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9039
9040 static const int ShufMask[] = {0, 2, -1, -1};
9041 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9042 &ShufMask[0]);
9043 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9044 DAG.getIntPtrConstant(0));
9045 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9046 }
9047
9048 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9049 DAG.getIntPtrConstant(0));
9050
9051 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9052 DAG.getIntPtrConstant(4));
9053
9054 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9055 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9056
9057 // The PSHUFB mask:
9058 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9059 -1, -1, -1, -1, -1, -1, -1, -1};
9060
9061 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9062 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9063 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9064
9065 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9066 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9067
9068 // The MOVLHPS Mask:
9069 static const int ShufMask2[] = {0, 1, 4, 5};
9070 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9071 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9072 }
9073
9074 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009075 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009076 return SDValue();
9077
Nadav Rotem3c22a442012-12-27 07:45:10 +00009078 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009079
9080 unsigned NumElems = VT.getVectorNumElements();
9081 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9082 NumElems * 2);
9083
Michael Liaobedcbd42012-10-16 18:14:11 +00009084 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9085 // Prepare truncation shuffle mask
9086 for (unsigned i = 0; i != NumElems; ++i)
9087 MaskVec[i] = i * 2;
9088 SDValue V = DAG.getVectorShuffle(NVT, DL,
9089 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9090 DAG.getUNDEF(NVT), &MaskVec[0]);
9091 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9092 DAG.getIntPtrConstant(0));
9093}
9094
Dan Gohmand858e902010-04-17 15:26:15 +00009095SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9096 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009097 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009098 if (VT.isVector()) {
9099 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009100 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9101 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009102 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009103 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009104 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009105
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009106 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9107 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009108 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009109 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9110 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009111
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009112 if (StackSlot.getNode())
9113 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009114 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009115 FIST, StackSlot, MachinePointerInfo(),
9116 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009117
9118 // The node is the result.
9119 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009120}
9121
Dan Gohmand858e902010-04-17 15:26:15 +00009122SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9123 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009124 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9125 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009126 SDValue FIST = Vals.first, StackSlot = Vals.second;
9127 assert(FIST.getNode() && "Unexpected failure");
9128
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009129 if (StackSlot.getNode())
9130 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009131 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009132 FIST, StackSlot, MachinePointerInfo(),
9133 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009134
9135 // The node is the result.
9136 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009137}
9138
Craig Topperb84b4232013-01-21 06:13:28 +00009139static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009140 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009141 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009142 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009143 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009144
9145 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9146
9147 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9148 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9149 In, DAG.getUNDEF(SVT)));
9150}
9151
Craig Topper43620672012-09-08 07:31:51 +00009152SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009153 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009154 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009155 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009156 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009157 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9158 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009159 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009160 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009161 }
Craig Topper43620672012-09-08 07:31:51 +00009162 Constant *C;
9163 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009164 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9165 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009166 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009167 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9168 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009169 C = ConstantVector::getSplat(NumElts, C);
9170 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9171 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009172 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009173 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009174 false, false, false, Alignment);
9175 if (VT.isVector()) {
9176 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9177 return DAG.getNode(ISD::BITCAST, dl, VT,
9178 DAG.getNode(ISD::AND, dl, ANDVT,
9179 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9180 Op.getOperand(0)),
9181 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9182 }
Dale Johannesenace16102009-02-03 19:33:06 +00009183 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009184}
9185
Dan Gohmand858e902010-04-17 15:26:15 +00009186SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009187 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009188 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009189 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009190 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009191 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9192 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009193 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009194 NumElts = VT.getVectorNumElements();
9195 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009196 Constant *C;
9197 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009198 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9199 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009200 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009201 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9202 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009203 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009204 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9205 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009206 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009207 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009208 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009209 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009210 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009211 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009212 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009213 DAG.getNode(ISD::BITCAST, dl, XORVT,
9214 Op.getOperand(0)),
9215 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009216 }
Craig Topper69947b92012-04-23 06:57:04 +00009217
9218 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009219}
9220
Dan Gohmand858e902010-04-17 15:26:15 +00009221SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009222 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009223 SDValue Op0 = Op.getOperand(0);
9224 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009225 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009226 MVT VT = Op.getSimpleValueType();
9227 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009228
9229 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009230 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009231 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009232 SrcVT = VT;
9233 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009234 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009235 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009236 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009237 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009238 }
9239
9240 // At this point the operands and the result should have the same
9241 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009242
Evan Cheng68c47cb2007-01-05 07:55:56 +00009243 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009244 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009245 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009246 const fltSemantics &Sem = APFloat::IEEEdouble;
9247 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9248 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009249 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009250 const fltSemantics &Sem = APFloat::IEEEsingle;
9251 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9252 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9253 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9254 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009255 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009256 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009257 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009258 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009259 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009260 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009261 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009262
9263 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009264 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009265 // Op0 is MVT::f32, Op1 is MVT::f64.
9266 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9267 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9268 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009269 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009270 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009271 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009272 }
9273
Evan Cheng73d6cf12007-01-05 21:37:56 +00009274 // Clear first operand sign bit.
9275 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009276 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009277 const fltSemantics &Sem = APFloat::IEEEdouble;
9278 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9279 APInt(64, ~(1ULL << 63)))));
9280 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009281 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009282 const fltSemantics &Sem = APFloat::IEEEsingle;
9283 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9284 APInt(32, ~(1U << 31)))));
9285 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9286 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9287 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009288 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009289 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009290 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009291 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009292 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009293 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009294 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009295
9296 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009297 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009298}
9299
Craig Topper55b24052012-09-11 06:15:32 +00009300static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009301 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009302 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009303 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009304
9305 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9306 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9307 DAG.getConstant(1, VT));
9308 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9309}
9310
Michael Liaof966e4e2012-09-13 20:24:54 +00009311// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9312//
Craig Topper158ec072013-08-14 07:34:43 +00009313static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9314 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009315 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9316
9317 if (!Subtarget->hasSSE41())
9318 return SDValue();
9319
9320 if (!Op->hasOneUse())
9321 return SDValue();
9322
9323 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009324 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009325
9326 SmallVector<SDValue, 8> Opnds;
9327 DenseMap<SDValue, unsigned> VecInMap;
9328 EVT VT = MVT::Other;
9329
9330 // Recognize a special case where a vector is casted into wide integer to
9331 // test all 0s.
9332 Opnds.push_back(N->getOperand(0));
9333 Opnds.push_back(N->getOperand(1));
9334
9335 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009336 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009337 // BFS traverse all OR'd operands.
9338 if (I->getOpcode() == ISD::OR) {
9339 Opnds.push_back(I->getOperand(0));
9340 Opnds.push_back(I->getOperand(1));
9341 // Re-evaluate the number of nodes to be traversed.
9342 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9343 continue;
9344 }
9345
9346 // Quit if a non-EXTRACT_VECTOR_ELT
9347 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9348 return SDValue();
9349
9350 // Quit if without a constant index.
9351 SDValue Idx = I->getOperand(1);
9352 if (!isa<ConstantSDNode>(Idx))
9353 return SDValue();
9354
9355 SDValue ExtractedFromVec = I->getOperand(0);
9356 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9357 if (M == VecInMap.end()) {
9358 VT = ExtractedFromVec.getValueType();
9359 // Quit if not 128/256-bit vector.
9360 if (!VT.is128BitVector() && !VT.is256BitVector())
9361 return SDValue();
9362 // Quit if not the same type.
9363 if (VecInMap.begin() != VecInMap.end() &&
9364 VT != VecInMap.begin()->first.getValueType())
9365 return SDValue();
9366 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9367 }
9368 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9369 }
9370
9371 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009372 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009373
9374 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9375 SmallVector<SDValue, 8> VecIns;
9376
9377 for (DenseMap<SDValue, unsigned>::const_iterator
9378 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9379 // Quit if not all elements are used.
9380 if (I->second != FullMask)
9381 return SDValue();
9382 VecIns.push_back(I->first);
9383 }
9384
9385 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9386
9387 // Cast all vectors into TestVT for PTEST.
9388 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9389 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9390
9391 // If more than one full vectors are evaluated, OR them first before PTEST.
9392 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9393 // Each iteration will OR 2 nodes and append the result until there is only
9394 // 1 node left, i.e. the final OR'd value of all vectors.
9395 SDValue LHS = VecIns[Slot];
9396 SDValue RHS = VecIns[Slot + 1];
9397 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9398 }
9399
9400 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9401 VecIns.back(), VecIns.back());
9402}
9403
Dan Gohman076aee32009-03-04 19:44:21 +00009404/// Emit nodes that will be selected as "test Op0,Op0", or something
9405/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009406SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009407 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009408 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009409
Dan Gohman31125812009-03-07 01:58:32 +00009410 // CF and OF aren't always set the way we want. Determine which
9411 // of these we need.
9412 bool NeedCF = false;
9413 bool NeedOF = false;
9414 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009415 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009416 case X86::COND_A: case X86::COND_AE:
9417 case X86::COND_B: case X86::COND_BE:
9418 NeedCF = true;
9419 break;
9420 case X86::COND_G: case X86::COND_GE:
9421 case X86::COND_L: case X86::COND_LE:
9422 case X86::COND_O: case X86::COND_NO:
9423 NeedOF = true;
9424 break;
Dan Gohman31125812009-03-07 01:58:32 +00009425 }
9426
Dan Gohman076aee32009-03-04 19:44:21 +00009427 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009428 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9429 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009430 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9431 // Emit a CMP with 0, which is the TEST pattern.
9432 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9433 DAG.getConstant(0, Op.getValueType()));
9434
9435 unsigned Opcode = 0;
9436 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009437
9438 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009439 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009440 // of the arithmetic instruction and use a reduced bit-width instruction.
9441 bool NeedTruncation = false;
9442 SDValue ArithOp = Op;
9443 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9444 SDValue Arith = Op->getOperand(0);
9445 // Both the trunc and the arithmetic op need to have one user each.
9446 if (Arith->hasOneUse())
9447 switch (Arith.getOpcode()) {
9448 default: break;
9449 case ISD::ADD:
9450 case ISD::SUB:
9451 case ISD::AND:
9452 case ISD::OR:
9453 case ISD::XOR: {
9454 NeedTruncation = true;
9455 ArithOp = Arith;
9456 }
9457 }
9458 }
9459
9460 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9461 // which may be the result of a CAST. We use the variable 'Op', which is the
9462 // non-casted variable when we check for possible users.
9463 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009464 case ISD::ADD:
9465 // Due to an isel shortcoming, be conservative if this add is likely to be
9466 // selected as part of a load-modify-store instruction. When the root node
9467 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9468 // uses of other nodes in the match, such as the ADD in this case. This
9469 // leads to the ADD being left around and reselected, with the result being
9470 // two adds in the output. Alas, even if none our users are stores, that
9471 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9472 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9473 // climbing the DAG back to the root, and it doesn't seem to be worth the
9474 // effort.
9475 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009476 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9477 if (UI->getOpcode() != ISD::CopyToReg &&
9478 UI->getOpcode() != ISD::SETCC &&
9479 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009480 goto default_case;
9481
9482 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009483 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009484 // An add of one will be selected as an INC.
9485 if (C->getAPIntValue() == 1) {
9486 Opcode = X86ISD::INC;
9487 NumOperands = 1;
9488 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009489 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009490
9491 // An add of negative one (subtract of one) will be selected as a DEC.
9492 if (C->getAPIntValue().isAllOnesValue()) {
9493 Opcode = X86ISD::DEC;
9494 NumOperands = 1;
9495 break;
9496 }
Dan Gohman076aee32009-03-04 19:44:21 +00009497 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009498
9499 // Otherwise use a regular EFLAGS-setting add.
9500 Opcode = X86ISD::ADD;
9501 NumOperands = 2;
9502 break;
9503 case ISD::AND: {
9504 // If the primary and result isn't used, don't bother using X86ISD::AND,
9505 // because a TEST instruction will be better.
9506 bool NonFlagUse = false;
9507 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9508 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9509 SDNode *User = *UI;
9510 unsigned UOpNo = UI.getOperandNo();
9511 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9512 // Look pass truncate.
9513 UOpNo = User->use_begin().getOperandNo();
9514 User = *User->use_begin();
9515 }
9516
9517 if (User->getOpcode() != ISD::BRCOND &&
9518 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009519 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009520 NonFlagUse = true;
9521 break;
9522 }
Dan Gohman076aee32009-03-04 19:44:21 +00009523 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009524
9525 if (!NonFlagUse)
9526 break;
9527 }
9528 // FALL THROUGH
9529 case ISD::SUB:
9530 case ISD::OR:
9531 case ISD::XOR:
9532 // Due to the ISEL shortcoming noted above, be conservative if this op is
9533 // likely to be selected as part of a load-modify-store instruction.
9534 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9535 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9536 if (UI->getOpcode() == ISD::STORE)
9537 goto default_case;
9538
9539 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009540 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009541 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009542 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009543 case ISD::XOR: Opcode = X86ISD::XOR; break;
9544 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009545 case ISD::OR: {
9546 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009547 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009548 if (EFLAGS.getNode())
9549 return EFLAGS;
9550 }
9551 Opcode = X86ISD::OR;
9552 break;
9553 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009554 }
9555
9556 NumOperands = 2;
9557 break;
9558 case X86ISD::ADD:
9559 case X86ISD::SUB:
9560 case X86ISD::INC:
9561 case X86ISD::DEC:
9562 case X86ISD::OR:
9563 case X86ISD::XOR:
9564 case X86ISD::AND:
9565 return SDValue(Op.getNode(), 1);
9566 default:
9567 default_case:
9568 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009569 }
9570
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009571 // If we found that truncation is beneficial, perform the truncation and
9572 // update 'Op'.
9573 if (NeedTruncation) {
9574 EVT VT = Op.getValueType();
9575 SDValue WideVal = Op->getOperand(0);
9576 EVT WideVT = WideVal.getValueType();
9577 unsigned ConvertedOp = 0;
9578 // Use a target machine opcode to prevent further DAGCombine
9579 // optimizations that may separate the arithmetic operations
9580 // from the setcc node.
9581 switch (WideVal.getOpcode()) {
9582 default: break;
9583 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9584 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9585 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9586 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9587 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9588 }
9589
9590 if (ConvertedOp) {
9591 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9592 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9593 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9594 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9595 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9596 }
9597 }
9598 }
9599
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009600 if (Opcode == 0)
9601 // Emit a CMP with 0, which is the TEST pattern.
9602 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9603 DAG.getConstant(0, Op.getValueType()));
9604
9605 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9606 SmallVector<SDValue, 4> Ops;
9607 for (unsigned i = 0; i != NumOperands; ++i)
9608 Ops.push_back(Op.getOperand(i));
9609
9610 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9611 DAG.ReplaceAllUsesWith(Op, New);
9612 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009613}
9614
9615/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9616/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009617SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009618 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009619 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9620 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009621 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009622
Andrew Trickac6d9be2013-05-25 02:42:55 +00009623 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009624 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9625 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9626 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9627 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9628 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9629 Op0, Op1);
9630 return SDValue(Sub.getNode(), 1);
9631 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009632 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009633}
9634
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009635/// Convert a comparison if required by the subtarget.
9636SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9637 SelectionDAG &DAG) const {
9638 // If the subtarget does not support the FUCOMI instruction, floating-point
9639 // comparisons have to be converted.
9640 if (Subtarget->hasCMov() ||
9641 Cmp.getOpcode() != X86ISD::CMP ||
9642 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9643 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9644 return Cmp;
9645
9646 // The instruction selector will select an FUCOM instruction instead of
9647 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9648 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9649 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009650 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009651 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9652 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9653 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9654 DAG.getConstant(8, MVT::i8));
9655 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9656 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9657}
9658
Evan Cheng4e544802012-12-05 00:10:38 +00009659static bool isAllOnes(SDValue V) {
9660 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9661 return C && C->isAllOnesValue();
9662}
9663
Evan Chengd40d03e2010-01-06 19:38:29 +00009664/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9665/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009666SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009667 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009668 SDValue Op0 = And.getOperand(0);
9669 SDValue Op1 = And.getOperand(1);
9670 if (Op0.getOpcode() == ISD::TRUNCATE)
9671 Op0 = Op0.getOperand(0);
9672 if (Op1.getOpcode() == ISD::TRUNCATE)
9673 Op1 = Op1.getOperand(0);
9674
Evan Chengd40d03e2010-01-06 19:38:29 +00009675 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009676 if (Op1.getOpcode() == ISD::SHL)
9677 std::swap(Op0, Op1);
9678 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009679 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9680 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009681 // If we looked past a truncate, check that it's only truncating away
9682 // known zeros.
9683 unsigned BitWidth = Op0.getValueSizeInBits();
9684 unsigned AndBitWidth = And.getValueSizeInBits();
9685 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009686 APInt Zeros, Ones;
9687 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009688 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9689 return SDValue();
9690 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009691 LHS = Op1;
9692 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009693 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009694 } else if (Op1.getOpcode() == ISD::Constant) {
9695 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009696 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009697 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009698
9699 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009700 LHS = AndLHS.getOperand(0);
9701 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009702 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009703
9704 // Use BT if the immediate can't be encoded in a TEST instruction.
9705 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9706 LHS = AndLHS;
9707 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9708 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009709 }
Evan Cheng0488db92007-09-25 01:57:46 +00009710
Evan Chengd40d03e2010-01-06 19:38:29 +00009711 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009712 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009713 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009714 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009715 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009716 // Also promote i16 to i32 for performance / code size reason.
9717 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009718 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009719 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009720
Evan Chengd40d03e2010-01-06 19:38:29 +00009721 // If the operand types disagree, extend the shift amount to match. Since
9722 // BT ignores high bits (like shifts) we can use anyextend.
9723 if (LHS.getValueType() != RHS.getValueType())
9724 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009725
Evan Chengd40d03e2010-01-06 19:38:29 +00009726 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009727 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009728 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9729 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009730 }
9731
Evan Cheng54de3ea2010-01-05 06:52:31 +00009732 return SDValue();
9733}
9734
Benjamin Kramer75311b72013-08-04 12:05:16 +00009735/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9736/// mask CMPs.
9737static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9738 SDValue &Op1) {
9739 unsigned SSECC;
9740 bool Swap = false;
9741
9742 // SSE Condition code mapping:
9743 // 0 - EQ
9744 // 1 - LT
9745 // 2 - LE
9746 // 3 - UNORD
9747 // 4 - NEQ
9748 // 5 - NLT
9749 // 6 - NLE
9750 // 7 - ORD
9751 switch (SetCCOpcode) {
9752 default: llvm_unreachable("Unexpected SETCC condition");
9753 case ISD::SETOEQ:
9754 case ISD::SETEQ: SSECC = 0; break;
9755 case ISD::SETOGT:
9756 case ISD::SETGT: Swap = true; // Fallthrough
9757 case ISD::SETLT:
9758 case ISD::SETOLT: SSECC = 1; break;
9759 case ISD::SETOGE:
9760 case ISD::SETGE: Swap = true; // Fallthrough
9761 case ISD::SETLE:
9762 case ISD::SETOLE: SSECC = 2; break;
9763 case ISD::SETUO: SSECC = 3; break;
9764 case ISD::SETUNE:
9765 case ISD::SETNE: SSECC = 4; break;
9766 case ISD::SETULE: Swap = true; // Fallthrough
9767 case ISD::SETUGE: SSECC = 5; break;
9768 case ISD::SETULT: Swap = true; // Fallthrough
9769 case ISD::SETUGT: SSECC = 6; break;
9770 case ISD::SETO: SSECC = 7; break;
9771 case ISD::SETUEQ:
9772 case ISD::SETONE: SSECC = 8; break;
9773 }
9774 if (Swap)
9775 std::swap(Op0, Op1);
9776
9777 return SSECC;
9778}
9779
Craig Topper89af15e2011-09-18 08:03:58 +00009780// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009781// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009782static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009783 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009784
Craig Topper7a9a28b2012-08-12 02:23:29 +00009785 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009786 "Unsupported value type for operation");
9787
Craig Topper66ddd152012-04-27 22:54:43 +00009788 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009789 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009790 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009791
9792 // Extract the LHS vectors
9793 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009794 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9795 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009796
9797 // Extract the RHS vectors
9798 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009799 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9800 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009801
9802 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009803 MVT EltVT = VT.getVectorElementType();
9804 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009805 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9806 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9807 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9808}
9809
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009810static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009811 SDValue Op0 = Op.getOperand(0);
9812 SDValue Op1 = Op.getOperand(1);
9813 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009814 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009815
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009816 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009817 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009818 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009819
9820 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9821 SDLoc dl(Op);
9822
9823 bool Unsigned = false;
9824 unsigned SSECC;
9825 switch (SetCCOpcode) {
9826 default: llvm_unreachable("Unexpected SETCC condition");
9827 case ISD::SETNE: SSECC = 4; break;
9828 case ISD::SETEQ: SSECC = 0; break;
9829 case ISD::SETUGT: Unsigned = true;
9830 case ISD::SETGT: SSECC = 6; break; // NLE
9831 case ISD::SETULT: Unsigned = true;
9832 case ISD::SETLT: SSECC = 1; break;
9833 case ISD::SETUGE: Unsigned = true;
9834 case ISD::SETGE: SSECC = 5; break; // NLT
9835 case ISD::SETULE: Unsigned = true;
9836 case ISD::SETLE: SSECC = 2; break;
9837 }
9838 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9839 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9840 DAG.getConstant(SSECC, MVT::i8));
9841
9842}
9843
Craig Topper26827f32013-01-20 09:02:22 +00009844static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9845 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009846 SDValue Op0 = Op.getOperand(0);
9847 SDValue Op1 = Op.getOperand(1);
9848 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009849 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009850 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009851 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009852 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009853
9854 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009855#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009856 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009857 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9858#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009859
Benjamin Kramer75311b72013-08-04 12:05:16 +00009860 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009861 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009862 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009863 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009864 Opc = X86ISD::CMPM;
9865 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009866 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009867 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009868 unsigned CC0, CC1;
9869 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009870 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009871 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9872 } else {
9873 assert(SetCCOpcode == ISD::SETONE);
9874 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009875 }
Craig Topper523908d2012-08-13 02:34:03 +00009876
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009877 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009878 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009879 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009880 DAG.getConstant(CC1, MVT::i8));
9881 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009882 }
9883 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009884 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009885 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009886 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009887
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009888 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009889 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009890 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009891
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009892 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9893 EVT OpVT = Op1.getValueType();
9894 if (Subtarget->hasAVX512()) {
9895 if (Op1.getValueType().is512BitVector() ||
9896 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9897 return LowerIntVSETCC_AVX512(Op, DAG);
9898
9899 // In AVX-512 architecture setcc returns mask with i1 elements,
9900 // But there is no compare instruction for i8 and i16 elements.
9901 // We are not talking about 512-bit operands in this case, these
9902 // types are illegal.
9903 if (MaskResult &&
9904 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9905 OpVT.getVectorElementType().getSizeInBits() >= 8))
9906 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9907 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9908 }
9909
Nate Begeman30a0de92008-07-17 16:51:19 +00009910 // We are handling one of the integer comparisons here. Since SSE only has
9911 // GT and EQ comparisons for integer, swapping operands and multiple
9912 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009913 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009914 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9915
Nate Begeman30a0de92008-07-17 16:51:19 +00009916 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009917 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009918 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009919 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009920 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009921 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009922 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009923 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9924 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009925 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009926 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9927 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009928 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009929 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9930 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009931 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009932
9933 // Special case: Use min/max operations for SETULE/SETUGE
9934 MVT VET = VT.getVectorElementType();
9935 bool hasMinMax =
9936 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9937 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9938
9939 if (hasMinMax) {
9940 switch (SetCCOpcode) {
9941 default: break;
9942 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9943 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9944 }
9945
9946 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9947 }
9948
Nate Begeman30a0de92008-07-17 16:51:19 +00009949 if (Swap)
9950 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009951
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009952 // Check that the operation in question is available (most are plain SSE2,
9953 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009954 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009955 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9956 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9957
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009958 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009959 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9960 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9961
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009962 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009963 // bits of the inputs before performing those operations. The lower
9964 // compare is always unsigned.
9965 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009966 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009967 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9968 } else {
9969 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9970 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9971 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9972 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009973 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009974 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9975 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009976
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009977 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9978 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9979 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9980
9981 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009982 static const int MaskHi[] = { 1, 1, 3, 3 };
9983 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009984 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9985 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9986 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9987
9988 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9989 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9990
9991 if (Invert)
9992 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9993
9994 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9995 }
9996
Benjamin Kramer382ed782012-12-25 12:54:19 +00009997 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9998 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +00009999 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010000 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10001
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010002 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010003 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10004 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10005
10006 // Do the compare.
10007 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10008
10009 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010010 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010011 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10012 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010013
10014 if (Invert)
10015 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10016
10017 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10018 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010019 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010020
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010021 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10022 // bits of the inputs before performing those operations.
10023 if (FlipSigns) {
10024 EVT EltVT = VT.getVectorElementType();
10025 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10026 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10027 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10028 }
10029
Dale Johannesenace16102009-02-03 19:33:06 +000010030 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010031
10032 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010033 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010034 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010035
10036 if (MinMax)
10037 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010038
Nate Begeman30a0de92008-07-17 16:51:19 +000010039 return Result;
10040}
Evan Cheng0488db92007-09-25 01:57:46 +000010041
Craig Topper26827f32013-01-20 09:02:22 +000010042SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10043
Craig Topper5a0910b2013-08-15 02:33:50 +000010044 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010045
10046 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10047
10048 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10049 SDValue Op0 = Op.getOperand(0);
10050 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010051 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010052 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10053
10054 // Optimize to BT if possible.
10055 // Lower (X & (1 << N)) == 0 to BT(X, N).
10056 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10057 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10058 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10059 Op1.getOpcode() == ISD::Constant &&
10060 cast<ConstantSDNode>(Op1)->isNullValue() &&
10061 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10062 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10063 if (NewSetCC.getNode())
10064 return NewSetCC;
10065 }
10066
10067 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10068 // these.
10069 if (Op1.getOpcode() == ISD::Constant &&
10070 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10071 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10072 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10073
10074 // If the input is a setcc, then reuse the input setcc or use a new one with
10075 // the inverted condition.
10076 if (Op0.getOpcode() == X86ISD::SETCC) {
10077 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10078 bool Invert = (CC == ISD::SETNE) ^
10079 cast<ConstantSDNode>(Op1)->isNullValue();
10080 if (!Invert) return Op0;
10081
10082 CCode = X86::GetOppositeBranchCondition(CCode);
10083 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10084 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10085 }
10086 }
10087
Craig Topper5a0910b2013-08-15 02:33:50 +000010088 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010089 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10090 if (X86CC == X86::COND_INVALID)
10091 return SDValue();
10092
10093 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10094 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10095 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10096 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10097}
10098
Evan Cheng370e5342008-12-03 08:38:43 +000010099// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010100static bool isX86LogicalCmp(SDValue Op) {
10101 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010102 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10103 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010104 return true;
10105 if (Op.getResNo() == 1 &&
10106 (Opc == X86ISD::ADD ||
10107 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010108 Opc == X86ISD::ADC ||
10109 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010110 Opc == X86ISD::SMUL ||
10111 Opc == X86ISD::UMUL ||
10112 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010113 Opc == X86ISD::DEC ||
10114 Opc == X86ISD::OR ||
10115 Opc == X86ISD::XOR ||
10116 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010117 return true;
10118
Chris Lattner9637d5b2010-12-05 07:49:54 +000010119 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10120 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010121
Dan Gohman076aee32009-03-04 19:44:21 +000010122 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010123}
10124
Chris Lattnera2b56002010-12-05 01:23:24 +000010125static bool isZero(SDValue V) {
10126 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10127 return C && C->isNullValue();
10128}
10129
Evan Chengb64dd5f2012-08-07 22:21:00 +000010130static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10131 if (V.getOpcode() != ISD::TRUNCATE)
10132 return false;
10133
10134 SDValue VOp0 = V.getOperand(0);
10135 unsigned InBits = VOp0.getValueSizeInBits();
10136 unsigned Bits = V.getValueSizeInBits();
10137 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10138}
10139
Dan Gohmand858e902010-04-17 15:26:15 +000010140SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010141 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010142 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010143 SDValue Op1 = Op.getOperand(1);
10144 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010145 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010146 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010147 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010148
Benjamin Kramer75311b72013-08-04 12:05:16 +000010149 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10150 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10151 // sequence later on.
10152 if (Cond.getOpcode() == ISD::SETCC &&
10153 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10154 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10155 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10156 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10157 int SSECC = translateX86FSETCC(
10158 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10159
10160 if (SSECC != 8) {
10161 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10162 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10163 DAG.getConstant(SSECC, MVT::i8));
10164 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10165 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10166 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10167 }
10168 }
10169
Dan Gohman1a492952009-10-20 16:22:37 +000010170 if (Cond.getOpcode() == ISD::SETCC) {
10171 SDValue NewCond = LowerSETCC(Cond, DAG);
10172 if (NewCond.getNode())
10173 Cond = NewCond;
10174 }
Evan Cheng734503b2006-09-11 02:19:56 +000010175
Chris Lattnera2b56002010-12-05 01:23:24 +000010176 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010177 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010178 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010179 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010180 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010181 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10182 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010183 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010184
Chris Lattnera2b56002010-12-05 01:23:24 +000010185 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010186
10187 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010188 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10189 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010190
10191 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010192 // Apply further optimizations for special cases
10193 // (select (x != 0), -1, 0) -> neg & sbb
10194 // (select (x == 0), 0, -1) -> neg & sbb
10195 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010196 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010197 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10198 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010199 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10200 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010201 CmpOp0);
10202 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10203 DAG.getConstant(X86::COND_B, MVT::i8),
10204 SDValue(Neg.getNode(), 1));
10205 return Res;
10206 }
10207
Chris Lattnera2b56002010-12-05 01:23:24 +000010208 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10209 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010210 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010211
Chris Lattner96908b12010-12-05 02:00:51 +000010212 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010213 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10214 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010215
Chris Lattner96908b12010-12-05 02:00:51 +000010216 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10217 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010218
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010219 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010220 if (N2C == 0 || !N2C->isNullValue())
10221 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10222 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010223 }
10224 }
10225
Chris Lattnera2b56002010-12-05 01:23:24 +000010226 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010227 if (Cond.getOpcode() == ISD::AND &&
10228 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10229 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010230 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010231 Cond = Cond.getOperand(0);
10232 }
10233
Evan Cheng3f41d662007-10-08 22:16:29 +000010234 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10235 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010236 unsigned CondOpcode = Cond.getOpcode();
10237 if (CondOpcode == X86ISD::SETCC ||
10238 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010239 CC = Cond.getOperand(0);
10240
Dan Gohman475871a2008-07-27 21:46:04 +000010241 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010242 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010243 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010244
Evan Cheng3f41d662007-10-08 22:16:29 +000010245 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010246 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010247 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010248 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010249
Chris Lattnerd1980a52009-03-12 06:52:53 +000010250 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10251 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010252 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010253 addTest = false;
10254 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010255 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10256 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10257 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10258 Cond.getOperand(0).getValueType() != MVT::i8)) {
10259 SDValue LHS = Cond.getOperand(0);
10260 SDValue RHS = Cond.getOperand(1);
10261 unsigned X86Opcode;
10262 unsigned X86Cond;
10263 SDVTList VTs;
10264 switch (CondOpcode) {
10265 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10266 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10267 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10268 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10269 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10270 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10271 default: llvm_unreachable("unexpected overflowing operator");
10272 }
10273 if (CondOpcode == ISD::UMULO)
10274 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10275 MVT::i32);
10276 else
10277 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10278
10279 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10280
10281 if (CondOpcode == ISD::UMULO)
10282 Cond = X86Op.getValue(2);
10283 else
10284 Cond = X86Op.getValue(1);
10285
10286 CC = DAG.getConstant(X86Cond, MVT::i8);
10287 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010288 }
10289
10290 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010291 // Look pass the truncate if the high bits are known zero.
10292 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10293 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010294
10295 // We know the result of AND is compared against zero. Try to match
10296 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010297 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010298 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010299 if (NewSetCC.getNode()) {
10300 CC = NewSetCC.getOperand(0);
10301 Cond = NewSetCC.getOperand(1);
10302 addTest = false;
10303 }
10304 }
10305 }
10306
10307 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010308 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010309 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010310 }
10311
Benjamin Kramere915ff32010-12-22 23:09:28 +000010312 // a < b ? -1 : 0 -> RES = ~setcc_carry
10313 // a < b ? 0 : -1 -> RES = setcc_carry
10314 // a >= b ? -1 : 0 -> RES = setcc_carry
10315 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010316 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010317 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010318 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10319
10320 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10321 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10322 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10323 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10324 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10325 return DAG.getNOT(DL, Res, Res.getValueType());
10326 return Res;
10327 }
10328 }
10329
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010330 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10331 // widen the cmov and push the truncate through. This avoids introducing a new
10332 // branch during isel and doesn't add any extensions.
10333 if (Op.getValueType() == MVT::i8 &&
10334 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10335 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10336 if (T1.getValueType() == T2.getValueType() &&
10337 // Blacklist CopyFromReg to avoid partial register stalls.
10338 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10339 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010340 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010341 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10342 }
10343 }
10344
Evan Cheng0488db92007-09-25 01:57:46 +000010345 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10346 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010347 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010348 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010349 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010350}
10351
Craig Topperff79bc62013-08-18 08:53:01 +000010352static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10353 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010354 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010355 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010356 SDLoc dl(Op);
10357
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010358 unsigned int NumElts = VT.getVectorNumElements();
10359 if (NumElts != 8 && NumElts != 16)
10360 return SDValue();
10361
10362 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010363 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10364
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010365 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10366 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10367
10368 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10369 Constant *C = ConstantInt::get(*DAG.getContext(),
10370 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10371
10372 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10373 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10374 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10375 MachinePointerInfo::getConstantPool(),
10376 false, false, false, Alignment);
10377 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10378 if (VT.is512BitVector())
10379 return Brcst;
10380 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010381}
10382
Craig Topperff79bc62013-08-18 08:53:01 +000010383static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10384 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010385 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010386 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010387 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010388 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010389
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010390 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10391 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10392
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010393 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
Benjamin Kramerbb41c752013-10-23 21:06:07 +000010394 (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10395 (VT != MVT::v16i16 || InVT != MVT::v16i8))
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010396 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010397
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010398 if (Subtarget->hasInt256())
10399 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010400
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010401 // Optimize vectors in AVX mode
10402 // Sign extend v8i16 to v8i32 and
10403 // v4i32 to v4i64
10404 //
10405 // Divide input vector into two parts
10406 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10407 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10408 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010409
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010410 unsigned NumElems = InVT.getVectorNumElements();
10411 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010412
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010413 SmallVector<int,8> ShufMask1(NumElems, -1);
10414 for (unsigned i = 0; i != NumElems/2; ++i)
10415 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010416
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010417 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010418
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010419 SmallVector<int,8> ShufMask2(NumElems, -1);
10420 for (unsigned i = 0; i != NumElems/2; ++i)
10421 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010422
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010423 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010424
Craig Toppera080daf2013-01-20 21:50:27 +000010425 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010426 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010427
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010428 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10429 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010430
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010431 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010432}
10433
Evan Cheng370e5342008-12-03 08:38:43 +000010434// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10435// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10436// from the AND / OR.
10437static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10438 Opc = Op.getOpcode();
10439 if (Opc != ISD::OR && Opc != ISD::AND)
10440 return false;
10441 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10442 Op.getOperand(0).hasOneUse() &&
10443 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10444 Op.getOperand(1).hasOneUse());
10445}
10446
Evan Cheng961d6d42009-02-02 08:19:07 +000010447// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10448// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010449static bool isXor1OfSetCC(SDValue Op) {
10450 if (Op.getOpcode() != ISD::XOR)
10451 return false;
10452 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10453 if (N1C && N1C->getAPIntValue() == 1) {
10454 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10455 Op.getOperand(0).hasOneUse();
10456 }
10457 return false;
10458}
10459
Dan Gohmand858e902010-04-17 15:26:15 +000010460SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010461 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010462 SDValue Chain = Op.getOperand(0);
10463 SDValue Cond = Op.getOperand(1);
10464 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010465 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010466 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010467 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010468
Dan Gohman1a492952009-10-20 16:22:37 +000010469 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010470 // Check for setcc([su]{add,sub,mul}o == 0).
10471 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10472 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10473 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10474 Cond.getOperand(0).getResNo() == 1 &&
10475 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10476 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10477 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10478 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10479 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10480 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10481 Inverted = true;
10482 Cond = Cond.getOperand(0);
10483 } else {
10484 SDValue NewCond = LowerSETCC(Cond, DAG);
10485 if (NewCond.getNode())
10486 Cond = NewCond;
10487 }
Dan Gohman1a492952009-10-20 16:22:37 +000010488 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010489#if 0
10490 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010491 else if (Cond.getOpcode() == X86ISD::ADD ||
10492 Cond.getOpcode() == X86ISD::SUB ||
10493 Cond.getOpcode() == X86ISD::SMUL ||
10494 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010495 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010496#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010497
Evan Chengad9c0a32009-12-15 00:53:42 +000010498 // Look pass (and (setcc_carry (cmp ...)), 1).
10499 if (Cond.getOpcode() == ISD::AND &&
10500 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10501 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010502 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010503 Cond = Cond.getOperand(0);
10504 }
10505
Evan Cheng3f41d662007-10-08 22:16:29 +000010506 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10507 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010508 unsigned CondOpcode = Cond.getOpcode();
10509 if (CondOpcode == X86ISD::SETCC ||
10510 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010511 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010512
Dan Gohman475871a2008-07-27 21:46:04 +000010513 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010514 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010515 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010516 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010517 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010518 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010519 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010520 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010521 default: break;
10522 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010523 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010524 // These can only come from an arithmetic instruction with overflow,
10525 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010526 Cond = Cond.getNode()->getOperand(1);
10527 addTest = false;
10528 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010529 }
Evan Cheng0488db92007-09-25 01:57:46 +000010530 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010531 }
10532 CondOpcode = Cond.getOpcode();
10533 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10534 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10535 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10536 Cond.getOperand(0).getValueType() != MVT::i8)) {
10537 SDValue LHS = Cond.getOperand(0);
10538 SDValue RHS = Cond.getOperand(1);
10539 unsigned X86Opcode;
10540 unsigned X86Cond;
10541 SDVTList VTs;
10542 switch (CondOpcode) {
10543 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10544 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10545 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10546 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10547 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10548 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10549 default: llvm_unreachable("unexpected overflowing operator");
10550 }
10551 if (Inverted)
10552 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10553 if (CondOpcode == ISD::UMULO)
10554 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10555 MVT::i32);
10556 else
10557 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10558
10559 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10560
10561 if (CondOpcode == ISD::UMULO)
10562 Cond = X86Op.getValue(2);
10563 else
10564 Cond = X86Op.getValue(1);
10565
10566 CC = DAG.getConstant(X86Cond, MVT::i8);
10567 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010568 } else {
10569 unsigned CondOpc;
10570 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10571 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010572 if (CondOpc == ISD::OR) {
10573 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10574 // two branches instead of an explicit OR instruction with a
10575 // separate test.
10576 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010577 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010578 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010579 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010580 Chain, Dest, CC, Cmp);
10581 CC = Cond.getOperand(1).getOperand(0);
10582 Cond = Cmp;
10583 addTest = false;
10584 }
10585 } else { // ISD::AND
10586 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10587 // two branches instead of an explicit AND instruction with a
10588 // separate test. However, we only do this if this block doesn't
10589 // have a fall-through edge, because this requires an explicit
10590 // jmp when the condition is false.
10591 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010592 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010593 Op.getNode()->hasOneUse()) {
10594 X86::CondCode CCode =
10595 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10596 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010597 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010598 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010599 // Look for an unconditional branch following this conditional branch.
10600 // We need this because we need to reverse the successors in order
10601 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010602 if (User->getOpcode() == ISD::BR) {
10603 SDValue FalseBB = User->getOperand(1);
10604 SDNode *NewBR =
10605 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010606 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010607 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010608 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010609
Dale Johannesene4d209d2009-02-03 20:21:25 +000010610 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010611 Chain, Dest, CC, Cmp);
10612 X86::CondCode CCode =
10613 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10614 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010615 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010616 Cond = Cmp;
10617 addTest = false;
10618 }
10619 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010620 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010621 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10622 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10623 // It should be transformed during dag combiner except when the condition
10624 // is set by a arithmetics with overflow node.
10625 X86::CondCode CCode =
10626 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10627 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010628 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010629 Cond = Cond.getOperand(0).getOperand(1);
10630 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010631 } else if (Cond.getOpcode() == ISD::SETCC &&
10632 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10633 // For FCMP_OEQ, we can emit
10634 // two branches instead of an explicit AND instruction with a
10635 // separate test. However, we only do this if this block doesn't
10636 // have a fall-through edge, because this requires an explicit
10637 // jmp when the condition is false.
10638 if (Op.getNode()->hasOneUse()) {
10639 SDNode *User = *Op.getNode()->use_begin();
10640 // Look for an unconditional branch following this conditional branch.
10641 // We need this because we need to reverse the successors in order
10642 // to implement FCMP_OEQ.
10643 if (User->getOpcode() == ISD::BR) {
10644 SDValue FalseBB = User->getOperand(1);
10645 SDNode *NewBR =
10646 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10647 assert(NewBR == User);
10648 (void)NewBR;
10649 Dest = FalseBB;
10650
10651 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10652 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010653 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010654 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10655 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10656 Chain, Dest, CC, Cmp);
10657 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10658 Cond = Cmp;
10659 addTest = false;
10660 }
10661 }
10662 } else if (Cond.getOpcode() == ISD::SETCC &&
10663 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10664 // For FCMP_UNE, we can emit
10665 // two branches instead of an explicit AND instruction with a
10666 // separate test. However, we only do this if this block doesn't
10667 // have a fall-through edge, because this requires an explicit
10668 // jmp when the condition is false.
10669 if (Op.getNode()->hasOneUse()) {
10670 SDNode *User = *Op.getNode()->use_begin();
10671 // Look for an unconditional branch following this conditional branch.
10672 // We need this because we need to reverse the successors in order
10673 // to implement FCMP_UNE.
10674 if (User->getOpcode() == ISD::BR) {
10675 SDValue FalseBB = User->getOperand(1);
10676 SDNode *NewBR =
10677 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10678 assert(NewBR == User);
10679 (void)NewBR;
10680
10681 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10682 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010683 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010684 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10685 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10686 Chain, Dest, CC, Cmp);
10687 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10688 Cond = Cmp;
10689 addTest = false;
10690 Dest = FalseBB;
10691 }
10692 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010693 }
Evan Cheng0488db92007-09-25 01:57:46 +000010694 }
10695
10696 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010697 // Look pass the truncate if the high bits are known zero.
10698 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10699 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010700
10701 // We know the result of AND is compared against zero. Try to match
10702 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010703 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010704 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10705 if (NewSetCC.getNode()) {
10706 CC = NewSetCC.getOperand(0);
10707 Cond = NewSetCC.getOperand(1);
10708 addTest = false;
10709 }
10710 }
10711 }
10712
10713 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010714 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010715 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010716 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010717 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010718 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010719 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010720}
10721
Anton Korobeynikove060b532007-04-17 19:34:00 +000010722// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10723// Calls to _alloca is needed to probe the stack when allocating more than 4k
10724// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10725// that the guard pages used by the OS virtual memory manager are allocated in
10726// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010727SDValue
10728X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010729 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010730 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010731 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010732 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010733 "are being used");
10734 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010735 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010736
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010737 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010738 SDValue Chain = Op.getOperand(0);
10739 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010740 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10741 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010742
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010743 bool Is64Bit = Subtarget->is64Bit();
10744 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010745
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010746 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010747 MachineFunction &MF = DAG.getMachineFunction();
10748 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010749
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010750 if (Is64Bit) {
10751 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010752 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010753 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010754
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010755 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010756 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010757 if (I->hasNestAttr())
10758 report_fatal_error("Cannot use segmented stacks with functions that "
10759 "have nested arguments.");
10760 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010761
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010762 const TargetRegisterClass *AddrRegClass =
10763 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10764 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10765 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10766 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10767 DAG.getRegister(Vreg, SPTy));
10768 SDValue Ops1[2] = { Value, Chain };
10769 return DAG.getMergeValues(Ops1, 2, dl);
10770 } else {
10771 SDValue Flag;
10772 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010773
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010774 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10775 Flag = Chain.getValue(1);
10776 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010777
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010778 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010779
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010780 const X86RegisterInfo *RegInfo =
10781 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010782 unsigned SPReg = RegInfo->getStackRegister();
10783 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10784 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010785
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010786 if (Align) {
10787 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10788 DAG.getConstant(-(uint64_t)Align, VT));
10789 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10790 }
10791
10792 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010793 return DAG.getMergeValues(Ops1, 2, dl);
10794 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010795}
10796
Dan Gohmand858e902010-04-17 15:26:15 +000010797SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010798 MachineFunction &MF = DAG.getMachineFunction();
10799 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10800
Dan Gohman69de1932008-02-06 22:27:42 +000010801 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010802 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010803
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010804 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010805 // vastart just stores the address of the VarArgsFrameIndex slot into the
10806 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010807 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10808 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010809 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10810 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010811 }
10812
10813 // __va_list_tag:
10814 // gp_offset (0 - 6 * 8)
10815 // fp_offset (48 - 48 + 8 * 16)
10816 // overflow_arg_area (point to parameters coming in memory).
10817 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010818 SmallVector<SDValue, 8> MemOps;
10819 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010820 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010821 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010822 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10823 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010824 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010825 MemOps.push_back(Store);
10826
10827 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010828 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010829 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010830 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010831 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10832 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010833 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010834 MemOps.push_back(Store);
10835
10836 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010837 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010838 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010839 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10840 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010841 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10842 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010843 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010844 MemOps.push_back(Store);
10845
10846 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010847 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010848 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010849 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10850 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010851 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10852 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010853 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010854 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010855 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010856}
10857
Dan Gohmand858e902010-04-17 15:26:15 +000010858SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010859 assert(Subtarget->is64Bit() &&
10860 "LowerVAARG only handles 64-bit va_arg!");
10861 assert((Subtarget->isTargetLinux() ||
10862 Subtarget->isTargetDarwin()) &&
10863 "Unhandled target in LowerVAARG");
10864 assert(Op.getNode()->getNumOperands() == 4);
10865 SDValue Chain = Op.getOperand(0);
10866 SDValue SrcPtr = Op.getOperand(1);
10867 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10868 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010869 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010870
Dan Gohman320afb82010-10-12 18:00:49 +000010871 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010872 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010873 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010874 uint8_t ArgMode;
10875
10876 // Decide which area this value should be read from.
10877 // TODO: Implement the AMD64 ABI in its entirety. This simple
10878 // selection mechanism works only for the basic types.
10879 if (ArgVT == MVT::f80) {
10880 llvm_unreachable("va_arg for f80 not yet implemented");
10881 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10882 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10883 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10884 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10885 } else {
10886 llvm_unreachable("Unhandled argument type in LowerVAARG");
10887 }
10888
10889 if (ArgMode == 2) {
10890 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010891 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010892 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010893 .getFunction()->getAttributes()
10894 .hasAttribute(AttributeSet::FunctionIndex,
10895 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010896 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010897 }
10898
10899 // Insert VAARG_64 node into the DAG
10900 // VAARG_64 returns two values: Variable Argument Address, Chain
10901 SmallVector<SDValue, 11> InstOps;
10902 InstOps.push_back(Chain);
10903 InstOps.push_back(SrcPtr);
10904 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10905 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10906 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10907 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10908 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10909 VTs, &InstOps[0], InstOps.size(),
10910 MVT::i64,
10911 MachinePointerInfo(SV),
10912 /*Align=*/0,
10913 /*Volatile=*/false,
10914 /*ReadMem=*/true,
10915 /*WriteMem=*/true);
10916 Chain = VAARG.getValue(1);
10917
10918 // Load the next argument and return it
10919 return DAG.getLoad(ArgVT, dl,
10920 Chain,
10921 VAARG,
10922 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010923 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010924}
10925
Craig Topper55b24052012-09-11 06:15:32 +000010926static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10927 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010928 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010929 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010930 SDValue Chain = Op.getOperand(0);
10931 SDValue DstPtr = Op.getOperand(1);
10932 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010933 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10934 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010935 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010936
Chris Lattnere72f2022010-09-21 05:40:29 +000010937 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010938 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010939 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010940 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010941}
10942
Lang Hames1d825372013-10-21 17:51:24 +000010943// getTargetVShiftByConstNode - Handle vector element shifts where the shift
10944// amount is a constant. Takes immediate version of shift as input.
10945static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10946 SDValue SrcOp, uint64_t ShiftAmt,
10947 SelectionDAG &DAG) {
10948
10949 // Check for ShiftAmt >= element width
10950 if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10951 if (Opc == X86ISD::VSRAI)
10952 ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10953 else
10954 return DAG.getConstant(0, VT);
10955 }
10956
10957 assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10958 && "Unknown target vector shift-by-constant node");
10959
10960 return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10961}
10962
Craig Topperff3139f2013-02-19 07:43:59 +000010963// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010964// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010965static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010966 SDValue SrcOp, SDValue ShAmt,
10967 SelectionDAG &DAG) {
10968 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10969
Lang Hames1d825372013-10-21 17:51:24 +000010970 // Catch shift-by-constant.
10971 if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
10972 return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
10973 CShAmt->getZExtValue(), DAG);
Craig Topper80e46362012-01-23 06:16:53 +000010974
10975 // Change opcode to non-immediate version
10976 switch (Opc) {
10977 default: llvm_unreachable("Unknown target vector shift node");
10978 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10979 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10980 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10981 }
10982
10983 // Need to build a vector containing shift amount
10984 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10985 SDValue ShOps[4];
10986 ShOps[0] = ShAmt;
10987 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000010988 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000010989 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000010990
10991 // The return type has to be a 128-bit type with the same element
10992 // type as the input type.
10993 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10994 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10995
10996 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000010997 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10998}
10999
Craig Topper55b24052012-09-11 06:15:32 +000011000static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011001 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011002 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000011003 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000011004 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000011005 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000011006 case Intrinsic::x86_sse_comieq_ss:
11007 case Intrinsic::x86_sse_comilt_ss:
11008 case Intrinsic::x86_sse_comile_ss:
11009 case Intrinsic::x86_sse_comigt_ss:
11010 case Intrinsic::x86_sse_comige_ss:
11011 case Intrinsic::x86_sse_comineq_ss:
11012 case Intrinsic::x86_sse_ucomieq_ss:
11013 case Intrinsic::x86_sse_ucomilt_ss:
11014 case Intrinsic::x86_sse_ucomile_ss:
11015 case Intrinsic::x86_sse_ucomigt_ss:
11016 case Intrinsic::x86_sse_ucomige_ss:
11017 case Intrinsic::x86_sse_ucomineq_ss:
11018 case Intrinsic::x86_sse2_comieq_sd:
11019 case Intrinsic::x86_sse2_comilt_sd:
11020 case Intrinsic::x86_sse2_comile_sd:
11021 case Intrinsic::x86_sse2_comigt_sd:
11022 case Intrinsic::x86_sse2_comige_sd:
11023 case Intrinsic::x86_sse2_comineq_sd:
11024 case Intrinsic::x86_sse2_ucomieq_sd:
11025 case Intrinsic::x86_sse2_ucomilt_sd:
11026 case Intrinsic::x86_sse2_ucomile_sd:
11027 case Intrinsic::x86_sse2_ucomigt_sd:
11028 case Intrinsic::x86_sse2_ucomige_sd:
11029 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000011030 unsigned Opc;
11031 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000011032 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000011033 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011034 case Intrinsic::x86_sse_comieq_ss:
11035 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011036 Opc = X86ISD::COMI;
11037 CC = ISD::SETEQ;
11038 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011039 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011040 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011041 Opc = X86ISD::COMI;
11042 CC = ISD::SETLT;
11043 break;
11044 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011045 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011046 Opc = X86ISD::COMI;
11047 CC = ISD::SETLE;
11048 break;
11049 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011050 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011051 Opc = X86ISD::COMI;
11052 CC = ISD::SETGT;
11053 break;
11054 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011055 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011056 Opc = X86ISD::COMI;
11057 CC = ISD::SETGE;
11058 break;
11059 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011060 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011061 Opc = X86ISD::COMI;
11062 CC = ISD::SETNE;
11063 break;
11064 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011065 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011066 Opc = X86ISD::UCOMI;
11067 CC = ISD::SETEQ;
11068 break;
11069 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011070 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011071 Opc = X86ISD::UCOMI;
11072 CC = ISD::SETLT;
11073 break;
11074 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011075 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011076 Opc = X86ISD::UCOMI;
11077 CC = ISD::SETLE;
11078 break;
11079 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011080 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011081 Opc = X86ISD::UCOMI;
11082 CC = ISD::SETGT;
11083 break;
11084 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011085 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011086 Opc = X86ISD::UCOMI;
11087 CC = ISD::SETGE;
11088 break;
11089 case Intrinsic::x86_sse_ucomineq_ss:
11090 case Intrinsic::x86_sse2_ucomineq_sd:
11091 Opc = X86ISD::UCOMI;
11092 CC = ISD::SETNE;
11093 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011094 }
Evan Cheng734503b2006-09-11 02:19:56 +000011095
Dan Gohman475871a2008-07-27 21:46:04 +000011096 SDValue LHS = Op.getOperand(1);
11097 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011098 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011099 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011100 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11101 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11102 DAG.getConstant(X86CC, MVT::i8), Cond);
11103 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011104 }
Craig Topper6d688152012-08-14 07:43:25 +000011105
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011106 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011107 case Intrinsic::x86_sse2_pmulu_dq:
11108 case Intrinsic::x86_avx2_pmulu_dq:
11109 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11110 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011111
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011112 // SSE2/AVX2 sub with unsigned saturation intrinsics
11113 case Intrinsic::x86_sse2_psubus_b:
11114 case Intrinsic::x86_sse2_psubus_w:
11115 case Intrinsic::x86_avx2_psubus_b:
11116 case Intrinsic::x86_avx2_psubus_w:
11117 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11118 Op.getOperand(1), Op.getOperand(2));
11119
Craig Topper6d688152012-08-14 07:43:25 +000011120 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011121 case Intrinsic::x86_sse3_hadd_ps:
11122 case Intrinsic::x86_sse3_hadd_pd:
11123 case Intrinsic::x86_avx_hadd_ps_256:
11124 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011125 case Intrinsic::x86_sse3_hsub_ps:
11126 case Intrinsic::x86_sse3_hsub_pd:
11127 case Intrinsic::x86_avx_hsub_ps_256:
11128 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011129 case Intrinsic::x86_ssse3_phadd_w_128:
11130 case Intrinsic::x86_ssse3_phadd_d_128:
11131 case Intrinsic::x86_avx2_phadd_w:
11132 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011133 case Intrinsic::x86_ssse3_phsub_w_128:
11134 case Intrinsic::x86_ssse3_phsub_d_128:
11135 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011136 case Intrinsic::x86_avx2_phsub_d: {
11137 unsigned Opcode;
11138 switch (IntNo) {
11139 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11140 case Intrinsic::x86_sse3_hadd_ps:
11141 case Intrinsic::x86_sse3_hadd_pd:
11142 case Intrinsic::x86_avx_hadd_ps_256:
11143 case Intrinsic::x86_avx_hadd_pd_256:
11144 Opcode = X86ISD::FHADD;
11145 break;
11146 case Intrinsic::x86_sse3_hsub_ps:
11147 case Intrinsic::x86_sse3_hsub_pd:
11148 case Intrinsic::x86_avx_hsub_ps_256:
11149 case Intrinsic::x86_avx_hsub_pd_256:
11150 Opcode = X86ISD::FHSUB;
11151 break;
11152 case Intrinsic::x86_ssse3_phadd_w_128:
11153 case Intrinsic::x86_ssse3_phadd_d_128:
11154 case Intrinsic::x86_avx2_phadd_w:
11155 case Intrinsic::x86_avx2_phadd_d:
11156 Opcode = X86ISD::HADD;
11157 break;
11158 case Intrinsic::x86_ssse3_phsub_w_128:
11159 case Intrinsic::x86_ssse3_phsub_d_128:
11160 case Intrinsic::x86_avx2_phsub_w:
11161 case Intrinsic::x86_avx2_phsub_d:
11162 Opcode = X86ISD::HSUB;
11163 break;
11164 }
11165 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011166 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011167 }
11168
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011169 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11170 case Intrinsic::x86_sse2_pmaxu_b:
11171 case Intrinsic::x86_sse41_pmaxuw:
11172 case Intrinsic::x86_sse41_pmaxud:
11173 case Intrinsic::x86_avx2_pmaxu_b:
11174 case Intrinsic::x86_avx2_pmaxu_w:
11175 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011176 case Intrinsic::x86_sse2_pminu_b:
11177 case Intrinsic::x86_sse41_pminuw:
11178 case Intrinsic::x86_sse41_pminud:
11179 case Intrinsic::x86_avx2_pminu_b:
11180 case Intrinsic::x86_avx2_pminu_w:
11181 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011182 case Intrinsic::x86_sse41_pmaxsb:
11183 case Intrinsic::x86_sse2_pmaxs_w:
11184 case Intrinsic::x86_sse41_pmaxsd:
11185 case Intrinsic::x86_avx2_pmaxs_b:
11186 case Intrinsic::x86_avx2_pmaxs_w:
11187 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011188 case Intrinsic::x86_sse41_pminsb:
11189 case Intrinsic::x86_sse2_pmins_w:
11190 case Intrinsic::x86_sse41_pminsd:
11191 case Intrinsic::x86_avx2_pmins_b:
11192 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000011193 case Intrinsic::x86_avx2_pmins_d: {
11194 unsigned Opcode;
11195 switch (IntNo) {
11196 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11197 case Intrinsic::x86_sse2_pmaxu_b:
11198 case Intrinsic::x86_sse41_pmaxuw:
11199 case Intrinsic::x86_sse41_pmaxud:
11200 case Intrinsic::x86_avx2_pmaxu_b:
11201 case Intrinsic::x86_avx2_pmaxu_w:
11202 case Intrinsic::x86_avx2_pmaxu_d:
11203 Opcode = X86ISD::UMAX;
11204 break;
11205 case Intrinsic::x86_sse2_pminu_b:
11206 case Intrinsic::x86_sse41_pminuw:
11207 case Intrinsic::x86_sse41_pminud:
11208 case Intrinsic::x86_avx2_pminu_b:
11209 case Intrinsic::x86_avx2_pminu_w:
11210 case Intrinsic::x86_avx2_pminu_d:
11211 Opcode = X86ISD::UMIN;
11212 break;
11213 case Intrinsic::x86_sse41_pmaxsb:
11214 case Intrinsic::x86_sse2_pmaxs_w:
11215 case Intrinsic::x86_sse41_pmaxsd:
11216 case Intrinsic::x86_avx2_pmaxs_b:
11217 case Intrinsic::x86_avx2_pmaxs_w:
11218 case Intrinsic::x86_avx2_pmaxs_d:
11219 Opcode = X86ISD::SMAX;
11220 break;
11221 case Intrinsic::x86_sse41_pminsb:
11222 case Intrinsic::x86_sse2_pmins_w:
11223 case Intrinsic::x86_sse41_pminsd:
11224 case Intrinsic::x86_avx2_pmins_b:
11225 case Intrinsic::x86_avx2_pmins_w:
11226 case Intrinsic::x86_avx2_pmins_d:
11227 Opcode = X86ISD::SMIN;
11228 break;
11229 }
11230 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011231 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011232 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011233
Craig Topper6d183e42012-12-29 16:44:25 +000011234 // SSE/SSE2/AVX floating point max/min intrinsics.
11235 case Intrinsic::x86_sse_max_ps:
11236 case Intrinsic::x86_sse2_max_pd:
11237 case Intrinsic::x86_avx_max_ps_256:
11238 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011239 case Intrinsic::x86_avx512_max_ps_512:
11240 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011241 case Intrinsic::x86_sse_min_ps:
11242 case Intrinsic::x86_sse2_min_pd:
11243 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011244 case Intrinsic::x86_avx_min_pd_256:
11245 case Intrinsic::x86_avx512_min_ps_512:
11246 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011247 unsigned Opcode;
11248 switch (IntNo) {
11249 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11250 case Intrinsic::x86_sse_max_ps:
11251 case Intrinsic::x86_sse2_max_pd:
11252 case Intrinsic::x86_avx_max_ps_256:
11253 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011254 case Intrinsic::x86_avx512_max_ps_512:
11255 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011256 Opcode = X86ISD::FMAX;
11257 break;
11258 case Intrinsic::x86_sse_min_ps:
11259 case Intrinsic::x86_sse2_min_pd:
11260 case Intrinsic::x86_avx_min_ps_256:
11261 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011262 case Intrinsic::x86_avx512_min_ps_512:
11263 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011264 Opcode = X86ISD::FMIN;
11265 break;
11266 }
11267 return DAG.getNode(Opcode, dl, Op.getValueType(),
11268 Op.getOperand(1), Op.getOperand(2));
11269 }
11270
Craig Topper6d688152012-08-14 07:43:25 +000011271 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011272 case Intrinsic::x86_avx2_psllv_d:
11273 case Intrinsic::x86_avx2_psllv_q:
11274 case Intrinsic::x86_avx2_psllv_d_256:
11275 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011276 case Intrinsic::x86_avx2_psrlv_d:
11277 case Intrinsic::x86_avx2_psrlv_q:
11278 case Intrinsic::x86_avx2_psrlv_d_256:
11279 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011280 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011281 case Intrinsic::x86_avx2_psrav_d_256: {
11282 unsigned Opcode;
11283 switch (IntNo) {
11284 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11285 case Intrinsic::x86_avx2_psllv_d:
11286 case Intrinsic::x86_avx2_psllv_q:
11287 case Intrinsic::x86_avx2_psllv_d_256:
11288 case Intrinsic::x86_avx2_psllv_q_256:
11289 Opcode = ISD::SHL;
11290 break;
11291 case Intrinsic::x86_avx2_psrlv_d:
11292 case Intrinsic::x86_avx2_psrlv_q:
11293 case Intrinsic::x86_avx2_psrlv_d_256:
11294 case Intrinsic::x86_avx2_psrlv_q_256:
11295 Opcode = ISD::SRL;
11296 break;
11297 case Intrinsic::x86_avx2_psrav_d:
11298 case Intrinsic::x86_avx2_psrav_d_256:
11299 Opcode = ISD::SRA;
11300 break;
11301 }
11302 return DAG.getNode(Opcode, dl, Op.getValueType(),
11303 Op.getOperand(1), Op.getOperand(2));
11304 }
11305
Craig Topper969ba282012-01-25 06:43:11 +000011306 case Intrinsic::x86_ssse3_pshuf_b_128:
11307 case Intrinsic::x86_avx2_pshuf_b:
11308 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11309 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011310
Craig Topper969ba282012-01-25 06:43:11 +000011311 case Intrinsic::x86_ssse3_psign_b_128:
11312 case Intrinsic::x86_ssse3_psign_w_128:
11313 case Intrinsic::x86_ssse3_psign_d_128:
11314 case Intrinsic::x86_avx2_psign_b:
11315 case Intrinsic::x86_avx2_psign_w:
11316 case Intrinsic::x86_avx2_psign_d:
11317 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11318 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011319
Craig Toppere566cd02012-01-26 07:18:03 +000011320 case Intrinsic::x86_sse41_insertps:
11321 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11322 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011323
Craig Toppere566cd02012-01-26 07:18:03 +000011324 case Intrinsic::x86_avx_vperm2f128_ps_256:
11325 case Intrinsic::x86_avx_vperm2f128_pd_256:
11326 case Intrinsic::x86_avx_vperm2f128_si_256:
11327 case Intrinsic::x86_avx2_vperm2i128:
11328 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11329 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011330
Craig Topperffa6c402012-04-16 07:13:00 +000011331 case Intrinsic::x86_avx2_permd:
11332 case Intrinsic::x86_avx2_permps:
11333 // Operands intentionally swapped. Mask is last operand to intrinsic,
Robert Wilhelmf80a63f2013-09-28 11:46:15 +000011334 // but second operand for node/instruction.
Craig Topperffa6c402012-04-16 07:13:00 +000011335 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11336 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011337
Craig Topper22d8f0d2012-12-29 18:18:20 +000011338 case Intrinsic::x86_sse_sqrt_ps:
11339 case Intrinsic::x86_sse2_sqrt_pd:
11340 case Intrinsic::x86_avx_sqrt_ps_256:
11341 case Intrinsic::x86_avx_sqrt_pd_256:
11342 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11343
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011344 // ptest and testp intrinsics. The intrinsic these come from are designed to
11345 // return an integer value, not just an instruction so lower it to the ptest
11346 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011347 case Intrinsic::x86_sse41_ptestz:
11348 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011349 case Intrinsic::x86_sse41_ptestnzc:
11350 case Intrinsic::x86_avx_ptestz_256:
11351 case Intrinsic::x86_avx_ptestc_256:
11352 case Intrinsic::x86_avx_ptestnzc_256:
11353 case Intrinsic::x86_avx_vtestz_ps:
11354 case Intrinsic::x86_avx_vtestc_ps:
11355 case Intrinsic::x86_avx_vtestnzc_ps:
11356 case Intrinsic::x86_avx_vtestz_pd:
11357 case Intrinsic::x86_avx_vtestc_pd:
11358 case Intrinsic::x86_avx_vtestnzc_pd:
11359 case Intrinsic::x86_avx_vtestz_ps_256:
11360 case Intrinsic::x86_avx_vtestc_ps_256:
11361 case Intrinsic::x86_avx_vtestnzc_ps_256:
11362 case Intrinsic::x86_avx_vtestz_pd_256:
11363 case Intrinsic::x86_avx_vtestc_pd_256:
11364 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11365 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011366 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011367 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011368 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011369 case Intrinsic::x86_avx_vtestz_ps:
11370 case Intrinsic::x86_avx_vtestz_pd:
11371 case Intrinsic::x86_avx_vtestz_ps_256:
11372 case Intrinsic::x86_avx_vtestz_pd_256:
11373 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011374 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011375 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011376 // ZF = 1
11377 X86CC = X86::COND_E;
11378 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011379 case Intrinsic::x86_avx_vtestc_ps:
11380 case Intrinsic::x86_avx_vtestc_pd:
11381 case Intrinsic::x86_avx_vtestc_ps_256:
11382 case Intrinsic::x86_avx_vtestc_pd_256:
11383 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011384 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011385 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011386 // CF = 1
11387 X86CC = X86::COND_B;
11388 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011389 case Intrinsic::x86_avx_vtestnzc_ps:
11390 case Intrinsic::x86_avx_vtestnzc_pd:
11391 case Intrinsic::x86_avx_vtestnzc_ps_256:
11392 case Intrinsic::x86_avx_vtestnzc_pd_256:
11393 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011394 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011395 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011396 // ZF and CF = 0
11397 X86CC = X86::COND_A;
11398 break;
11399 }
Eric Christopherfd179292009-08-27 18:07:15 +000011400
Eric Christopher71c67532009-07-29 00:28:05 +000011401 SDValue LHS = Op.getOperand(1);
11402 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011403 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11404 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011405 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11406 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11407 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011408 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011409 case Intrinsic::x86_avx512_kortestz:
11410 case Intrinsic::x86_avx512_kortestc: {
11411 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11412 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11413 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11414 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11415 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11416 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11417 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11418 }
Evan Cheng5759f972008-05-04 09:15:50 +000011419
Craig Topper80e46362012-01-23 06:16:53 +000011420 // SSE/AVX shift intrinsics
11421 case Intrinsic::x86_sse2_psll_w:
11422 case Intrinsic::x86_sse2_psll_d:
11423 case Intrinsic::x86_sse2_psll_q:
11424 case Intrinsic::x86_avx2_psll_w:
11425 case Intrinsic::x86_avx2_psll_d:
11426 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011427 case Intrinsic::x86_sse2_psrl_w:
11428 case Intrinsic::x86_sse2_psrl_d:
11429 case Intrinsic::x86_sse2_psrl_q:
11430 case Intrinsic::x86_avx2_psrl_w:
11431 case Intrinsic::x86_avx2_psrl_d:
11432 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011433 case Intrinsic::x86_sse2_psra_w:
11434 case Intrinsic::x86_sse2_psra_d:
11435 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011436 case Intrinsic::x86_avx2_psra_d: {
11437 unsigned Opcode;
11438 switch (IntNo) {
11439 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11440 case Intrinsic::x86_sse2_psll_w:
11441 case Intrinsic::x86_sse2_psll_d:
11442 case Intrinsic::x86_sse2_psll_q:
11443 case Intrinsic::x86_avx2_psll_w:
11444 case Intrinsic::x86_avx2_psll_d:
11445 case Intrinsic::x86_avx2_psll_q:
11446 Opcode = X86ISD::VSHL;
11447 break;
11448 case Intrinsic::x86_sse2_psrl_w:
11449 case Intrinsic::x86_sse2_psrl_d:
11450 case Intrinsic::x86_sse2_psrl_q:
11451 case Intrinsic::x86_avx2_psrl_w:
11452 case Intrinsic::x86_avx2_psrl_d:
11453 case Intrinsic::x86_avx2_psrl_q:
11454 Opcode = X86ISD::VSRL;
11455 break;
11456 case Intrinsic::x86_sse2_psra_w:
11457 case Intrinsic::x86_sse2_psra_d:
11458 case Intrinsic::x86_avx2_psra_w:
11459 case Intrinsic::x86_avx2_psra_d:
11460 Opcode = X86ISD::VSRA;
11461 break;
11462 }
11463 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011464 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011465 }
11466
11467 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011468 case Intrinsic::x86_sse2_pslli_w:
11469 case Intrinsic::x86_sse2_pslli_d:
11470 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011471 case Intrinsic::x86_avx2_pslli_w:
11472 case Intrinsic::x86_avx2_pslli_d:
11473 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011474 case Intrinsic::x86_sse2_psrli_w:
11475 case Intrinsic::x86_sse2_psrli_d:
11476 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011477 case Intrinsic::x86_avx2_psrli_w:
11478 case Intrinsic::x86_avx2_psrli_d:
11479 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011480 case Intrinsic::x86_sse2_psrai_w:
11481 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011482 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011483 case Intrinsic::x86_avx2_psrai_d: {
11484 unsigned Opcode;
11485 switch (IntNo) {
11486 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11487 case Intrinsic::x86_sse2_pslli_w:
11488 case Intrinsic::x86_sse2_pslli_d:
11489 case Intrinsic::x86_sse2_pslli_q:
11490 case Intrinsic::x86_avx2_pslli_w:
11491 case Intrinsic::x86_avx2_pslli_d:
11492 case Intrinsic::x86_avx2_pslli_q:
11493 Opcode = X86ISD::VSHLI;
11494 break;
11495 case Intrinsic::x86_sse2_psrli_w:
11496 case Intrinsic::x86_sse2_psrli_d:
11497 case Intrinsic::x86_sse2_psrli_q:
11498 case Intrinsic::x86_avx2_psrli_w:
11499 case Intrinsic::x86_avx2_psrli_d:
11500 case Intrinsic::x86_avx2_psrli_q:
11501 Opcode = X86ISD::VSRLI;
11502 break;
11503 case Intrinsic::x86_sse2_psrai_w:
11504 case Intrinsic::x86_sse2_psrai_d:
11505 case Intrinsic::x86_avx2_psrai_w:
11506 case Intrinsic::x86_avx2_psrai_d:
11507 Opcode = X86ISD::VSRAI;
11508 break;
11509 }
11510 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011511 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011512 }
11513
Craig Topper4feb6472012-08-06 06:22:36 +000011514 case Intrinsic::x86_sse42_pcmpistria128:
11515 case Intrinsic::x86_sse42_pcmpestria128:
11516 case Intrinsic::x86_sse42_pcmpistric128:
11517 case Intrinsic::x86_sse42_pcmpestric128:
11518 case Intrinsic::x86_sse42_pcmpistrio128:
11519 case Intrinsic::x86_sse42_pcmpestrio128:
11520 case Intrinsic::x86_sse42_pcmpistris128:
11521 case Intrinsic::x86_sse42_pcmpestris128:
11522 case Intrinsic::x86_sse42_pcmpistriz128:
11523 case Intrinsic::x86_sse42_pcmpestriz128: {
11524 unsigned Opcode;
11525 unsigned X86CC;
11526 switch (IntNo) {
11527 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11528 case Intrinsic::x86_sse42_pcmpistria128:
11529 Opcode = X86ISD::PCMPISTRI;
11530 X86CC = X86::COND_A;
11531 break;
11532 case Intrinsic::x86_sse42_pcmpestria128:
11533 Opcode = X86ISD::PCMPESTRI;
11534 X86CC = X86::COND_A;
11535 break;
11536 case Intrinsic::x86_sse42_pcmpistric128:
11537 Opcode = X86ISD::PCMPISTRI;
11538 X86CC = X86::COND_B;
11539 break;
11540 case Intrinsic::x86_sse42_pcmpestric128:
11541 Opcode = X86ISD::PCMPESTRI;
11542 X86CC = X86::COND_B;
11543 break;
11544 case Intrinsic::x86_sse42_pcmpistrio128:
11545 Opcode = X86ISD::PCMPISTRI;
11546 X86CC = X86::COND_O;
11547 break;
11548 case Intrinsic::x86_sse42_pcmpestrio128:
11549 Opcode = X86ISD::PCMPESTRI;
11550 X86CC = X86::COND_O;
11551 break;
11552 case Intrinsic::x86_sse42_pcmpistris128:
11553 Opcode = X86ISD::PCMPISTRI;
11554 X86CC = X86::COND_S;
11555 break;
11556 case Intrinsic::x86_sse42_pcmpestris128:
11557 Opcode = X86ISD::PCMPESTRI;
11558 X86CC = X86::COND_S;
11559 break;
11560 case Intrinsic::x86_sse42_pcmpistriz128:
11561 Opcode = X86ISD::PCMPISTRI;
11562 X86CC = X86::COND_E;
11563 break;
11564 case Intrinsic::x86_sse42_pcmpestriz128:
11565 Opcode = X86ISD::PCMPESTRI;
11566 X86CC = X86::COND_E;
11567 break;
11568 }
Craig Topper20b46b02013-08-06 04:12:40 +000011569 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011570 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11571 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11572 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11573 DAG.getConstant(X86CC, MVT::i8),
11574 SDValue(PCMP.getNode(), 1));
11575 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11576 }
Craig Topper6d688152012-08-14 07:43:25 +000011577
Craig Topper4feb6472012-08-06 06:22:36 +000011578 case Intrinsic::x86_sse42_pcmpistri128:
11579 case Intrinsic::x86_sse42_pcmpestri128: {
11580 unsigned Opcode;
11581 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11582 Opcode = X86ISD::PCMPISTRI;
11583 else
11584 Opcode = X86ISD::PCMPESTRI;
11585
Craig Topper20b46b02013-08-06 04:12:40 +000011586 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011587 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11588 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11589 }
Craig Topper0e292372012-08-24 04:03:22 +000011590 case Intrinsic::x86_fma_vfmadd_ps:
11591 case Intrinsic::x86_fma_vfmadd_pd:
11592 case Intrinsic::x86_fma_vfmsub_ps:
11593 case Intrinsic::x86_fma_vfmsub_pd:
11594 case Intrinsic::x86_fma_vfnmadd_ps:
11595 case Intrinsic::x86_fma_vfnmadd_pd:
11596 case Intrinsic::x86_fma_vfnmsub_ps:
11597 case Intrinsic::x86_fma_vfnmsub_pd:
11598 case Intrinsic::x86_fma_vfmaddsub_ps:
11599 case Intrinsic::x86_fma_vfmaddsub_pd:
11600 case Intrinsic::x86_fma_vfmsubadd_ps:
11601 case Intrinsic::x86_fma_vfmsubadd_pd:
11602 case Intrinsic::x86_fma_vfmadd_ps_256:
11603 case Intrinsic::x86_fma_vfmadd_pd_256:
11604 case Intrinsic::x86_fma_vfmsub_ps_256:
11605 case Intrinsic::x86_fma_vfmsub_pd_256:
11606 case Intrinsic::x86_fma_vfnmadd_ps_256:
11607 case Intrinsic::x86_fma_vfnmadd_pd_256:
11608 case Intrinsic::x86_fma_vfnmsub_ps_256:
11609 case Intrinsic::x86_fma_vfnmsub_pd_256:
11610 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11611 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11612 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11613 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011614 unsigned Opc;
11615 switch (IntNo) {
11616 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11617 case Intrinsic::x86_fma_vfmadd_ps:
11618 case Intrinsic::x86_fma_vfmadd_pd:
11619 case Intrinsic::x86_fma_vfmadd_ps_256:
11620 case Intrinsic::x86_fma_vfmadd_pd_256:
11621 Opc = X86ISD::FMADD;
11622 break;
11623 case Intrinsic::x86_fma_vfmsub_ps:
11624 case Intrinsic::x86_fma_vfmsub_pd:
11625 case Intrinsic::x86_fma_vfmsub_ps_256:
11626 case Intrinsic::x86_fma_vfmsub_pd_256:
11627 Opc = X86ISD::FMSUB;
11628 break;
11629 case Intrinsic::x86_fma_vfnmadd_ps:
11630 case Intrinsic::x86_fma_vfnmadd_pd:
11631 case Intrinsic::x86_fma_vfnmadd_ps_256:
11632 case Intrinsic::x86_fma_vfnmadd_pd_256:
11633 Opc = X86ISD::FNMADD;
11634 break;
11635 case Intrinsic::x86_fma_vfnmsub_ps:
11636 case Intrinsic::x86_fma_vfnmsub_pd:
11637 case Intrinsic::x86_fma_vfnmsub_ps_256:
11638 case Intrinsic::x86_fma_vfnmsub_pd_256:
11639 Opc = X86ISD::FNMSUB;
11640 break;
11641 case Intrinsic::x86_fma_vfmaddsub_ps:
11642 case Intrinsic::x86_fma_vfmaddsub_pd:
11643 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11644 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11645 Opc = X86ISD::FMADDSUB;
11646 break;
11647 case Intrinsic::x86_fma_vfmsubadd_ps:
11648 case Intrinsic::x86_fma_vfmsubadd_pd:
11649 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11650 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11651 Opc = X86ISD::FMSUBADD;
11652 break;
11653 }
11654
11655 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11656 Op.getOperand(2), Op.getOperand(3));
11657 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011658 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011659}
Evan Cheng72261582005-12-20 06:22:03 +000011660
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011661static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11662 SDValue Base, SDValue Index,
11663 SDValue ScaleOp, SDValue Chain,
11664 const X86Subtarget * Subtarget) {
11665 SDLoc dl(Op);
11666 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11667 assert(C && "Invalid scale type");
11668 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11669 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11670 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11671 Index.getValueType().getVectorNumElements());
11672 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11673 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11674 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11675 SDValue Segment = DAG.getRegister(0, MVT::i32);
11676 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11677 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11678 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11679 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11680}
11681
11682static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11683 SDValue Src, SDValue Mask, SDValue Base,
11684 SDValue Index, SDValue ScaleOp, SDValue Chain,
11685 const X86Subtarget * Subtarget) {
11686 SDLoc dl(Op);
11687 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11688 assert(C && "Invalid scale type");
11689 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11690 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11691 Index.getValueType().getVectorNumElements());
11692 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11693 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11694 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11695 SDValue Segment = DAG.getRegister(0, MVT::i32);
11696 if (Src.getOpcode() == ISD::UNDEF)
11697 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11698 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11699 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11700 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11701 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11702}
11703
11704static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11705 SDValue Src, SDValue Base, SDValue Index,
11706 SDValue ScaleOp, SDValue Chain) {
11707 SDLoc dl(Op);
11708 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11709 assert(C && "Invalid scale type");
11710 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11711 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11712 SDValue Segment = DAG.getRegister(0, MVT::i32);
11713 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11714 Index.getValueType().getVectorNumElements());
11715 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11716 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11717 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11718 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11719 return SDValue(Res, 1);
11720}
11721
11722static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11723 SDValue Src, SDValue Mask, SDValue Base,
11724 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11725 SDLoc dl(Op);
11726 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11727 assert(C && "Invalid scale type");
11728 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11729 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11730 SDValue Segment = DAG.getRegister(0, MVT::i32);
11731 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11732 Index.getValueType().getVectorNumElements());
11733 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11734 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11735 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11736 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11737 return SDValue(Res, 1);
11738}
11739
11740static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11741 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011742 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011743 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11744 switch (IntNo) {
11745 default: return SDValue(); // Don't custom lower most intrinsics.
11746
Michael Liaoc26392a2013-03-28 23:41:26 +000011747 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011748 case Intrinsic::x86_rdrand_16:
11749 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011750 case Intrinsic::x86_rdrand_64:
11751 case Intrinsic::x86_rdseed_16:
11752 case Intrinsic::x86_rdseed_32:
11753 case Intrinsic::x86_rdseed_64: {
11754 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11755 IntNo == Intrinsic::x86_rdseed_32 ||
11756 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11757 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011758 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011759 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011760 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011761
Michael Liaoc26392a2013-03-28 23:41:26 +000011762 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11763 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011764 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11765 DAG.getConstant(1, Op->getValueType(1)),
11766 DAG.getConstant(X86::COND_B, MVT::i32),
11767 SDValue(Result.getNode(), 1) };
11768 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11769 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011770 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011771
11772 // Return { result, isValid, chain }.
11773 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011774 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011775 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011776 //int_gather(index, base, scale);
11777 case Intrinsic::x86_avx512_gather_qpd_512:
11778 case Intrinsic::x86_avx512_gather_qps_512:
11779 case Intrinsic::x86_avx512_gather_dpd_512:
11780 case Intrinsic::x86_avx512_gather_qpi_512:
11781 case Intrinsic::x86_avx512_gather_qpq_512:
11782 case Intrinsic::x86_avx512_gather_dpq_512:
11783 case Intrinsic::x86_avx512_gather_dps_512:
11784 case Intrinsic::x86_avx512_gather_dpi_512: {
11785 unsigned Opc;
11786 switch (IntNo) {
11787 default: llvm_unreachable("Unexpected intrinsic!");
11788 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11789 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11790 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11791 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11792 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11793 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11794 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11795 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11796 }
11797 SDValue Chain = Op.getOperand(0);
11798 SDValue Index = Op.getOperand(2);
11799 SDValue Base = Op.getOperand(3);
11800 SDValue Scale = Op.getOperand(4);
11801 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11802 }
11803 //int_gather_mask(v1, mask, index, base, scale);
11804 case Intrinsic::x86_avx512_gather_qps_mask_512:
11805 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11806 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11807 case Intrinsic::x86_avx512_gather_dps_mask_512:
11808 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11809 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11810 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11811 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11812 unsigned Opc;
11813 switch (IntNo) {
11814 default: llvm_unreachable("Unexpected intrinsic!");
11815 case Intrinsic::x86_avx512_gather_qps_mask_512:
11816 Opc = X86::VGATHERQPSZrm; break;
11817 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11818 Opc = X86::VGATHERQPDZrm; break;
11819 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11820 Opc = X86::VGATHERDPDZrm; break;
11821 case Intrinsic::x86_avx512_gather_dps_mask_512:
11822 Opc = X86::VGATHERDPSZrm; break;
11823 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11824 Opc = X86::VPGATHERQDZrm; break;
11825 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11826 Opc = X86::VPGATHERQQZrm; break;
11827 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11828 Opc = X86::VPGATHERDDZrm; break;
11829 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11830 Opc = X86::VPGATHERDQZrm; break;
11831 }
11832 SDValue Chain = Op.getOperand(0);
11833 SDValue Src = Op.getOperand(2);
11834 SDValue Mask = Op.getOperand(3);
11835 SDValue Index = Op.getOperand(4);
11836 SDValue Base = Op.getOperand(5);
11837 SDValue Scale = Op.getOperand(6);
11838 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11839 Subtarget);
11840 }
11841 //int_scatter(base, index, v1, scale);
11842 case Intrinsic::x86_avx512_scatter_qpd_512:
11843 case Intrinsic::x86_avx512_scatter_qps_512:
11844 case Intrinsic::x86_avx512_scatter_dpd_512:
11845 case Intrinsic::x86_avx512_scatter_qpi_512:
11846 case Intrinsic::x86_avx512_scatter_qpq_512:
11847 case Intrinsic::x86_avx512_scatter_dpq_512:
11848 case Intrinsic::x86_avx512_scatter_dps_512:
11849 case Intrinsic::x86_avx512_scatter_dpi_512: {
11850 unsigned Opc;
11851 switch (IntNo) {
11852 default: llvm_unreachable("Unexpected intrinsic!");
11853 case Intrinsic::x86_avx512_scatter_qpd_512:
11854 Opc = X86::VSCATTERQPDZmr; break;
11855 case Intrinsic::x86_avx512_scatter_qps_512:
11856 Opc = X86::VSCATTERQPSZmr; break;
11857 case Intrinsic::x86_avx512_scatter_dpd_512:
11858 Opc = X86::VSCATTERDPDZmr; break;
11859 case Intrinsic::x86_avx512_scatter_dps_512:
11860 Opc = X86::VSCATTERDPSZmr; break;
11861 case Intrinsic::x86_avx512_scatter_qpi_512:
11862 Opc = X86::VPSCATTERQDZmr; break;
11863 case Intrinsic::x86_avx512_scatter_qpq_512:
11864 Opc = X86::VPSCATTERQQZmr; break;
11865 case Intrinsic::x86_avx512_scatter_dpq_512:
11866 Opc = X86::VPSCATTERDQZmr; break;
11867 case Intrinsic::x86_avx512_scatter_dpi_512:
11868 Opc = X86::VPSCATTERDDZmr; break;
11869 }
11870 SDValue Chain = Op.getOperand(0);
11871 SDValue Base = Op.getOperand(2);
11872 SDValue Index = Op.getOperand(3);
11873 SDValue Src = Op.getOperand(4);
11874 SDValue Scale = Op.getOperand(5);
11875 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11876 }
11877 //int_scatter_mask(base, mask, index, v1, scale);
11878 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11879 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11880 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11881 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11882 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11883 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11884 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11885 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11886 unsigned Opc;
11887 switch (IntNo) {
11888 default: llvm_unreachable("Unexpected intrinsic!");
11889 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11890 Opc = X86::VSCATTERQPDZmr; break;
11891 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11892 Opc = X86::VSCATTERQPSZmr; break;
11893 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11894 Opc = X86::VSCATTERDPDZmr; break;
11895 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11896 Opc = X86::VSCATTERDPSZmr; break;
11897 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11898 Opc = X86::VPSCATTERQDZmr; break;
11899 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11900 Opc = X86::VPSCATTERQQZmr; break;
11901 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11902 Opc = X86::VPSCATTERDQZmr; break;
11903 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11904 Opc = X86::VPSCATTERDDZmr; break;
11905 }
11906 SDValue Chain = Op.getOperand(0);
11907 SDValue Base = Op.getOperand(2);
11908 SDValue Mask = Op.getOperand(3);
11909 SDValue Index = Op.getOperand(4);
11910 SDValue Src = Op.getOperand(5);
11911 SDValue Scale = Op.getOperand(6);
11912 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11913 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011914 // XTEST intrinsics.
11915 case Intrinsic::x86_xtest: {
11916 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11917 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11918 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11919 DAG.getConstant(X86::COND_NE, MVT::i8),
11920 InTrans);
11921 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11922 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11923 Ret, SDValue(InTrans.getNode(), 1));
11924 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011925 }
11926}
11927
Dan Gohmand858e902010-04-17 15:26:15 +000011928SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11929 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011930 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11931 MFI->setReturnAddressIsTaken(true);
11932
Bill Wendling64e87322009-01-16 19:25:27 +000011933 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011934 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011935 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011936
11937 if (Depth > 0) {
11938 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011939 const X86RegisterInfo *RegInfo =
11940 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11941 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011942 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11943 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011944 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011945 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011946 }
11947
11948 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011949 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011950 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011951 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011952}
11953
Dan Gohmand858e902010-04-17 15:26:15 +000011954SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011955 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11956 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011957
Owen Andersone50ed302009-08-10 22:56:29 +000011958 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011959 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011960 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011961 const X86RegisterInfo *RegInfo =
11962 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011963 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11964 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011965 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11966 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011967 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011968 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000011969 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11970 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011971 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000011972 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000011973}
11974
Dan Gohman475871a2008-07-27 21:46:04 +000011975SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000011976 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011977 const X86RegisterInfo *RegInfo =
11978 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011979 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011980}
11981
Dan Gohmand858e902010-04-17 15:26:15 +000011982SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011983 SDValue Chain = Op.getOperand(0);
11984 SDValue Offset = Op.getOperand(1);
11985 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011986 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011987
Michael Liaodb7da202013-05-02 09:18:38 +000011988 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011989 const X86RegisterInfo *RegInfo =
11990 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000011991 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11992 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11993 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11994 "Invalid Frame Register!");
11995 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11996 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011997
Michael Liaodb7da202013-05-02 09:18:38 +000011998 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000011999 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000012000 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000012001 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12002 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000012003 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012004
Michael Liaodb7da202013-05-02 09:18:38 +000012005 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12006 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012007}
12008
Michael Liao6c0e04c2012-10-15 22:39:43 +000012009SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12010 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012011 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012012 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12013 DAG.getVTList(MVT::i32, MVT::Other),
12014 Op.getOperand(0), Op.getOperand(1));
12015}
12016
12017SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12018 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012019 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012020 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12021 Op.getOperand(0), Op.getOperand(1));
12022}
12023
Craig Topper55b24052012-09-11 06:15:32 +000012024static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000012025 return Op.getOperand(0);
12026}
12027
12028SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12029 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012030 SDValue Root = Op.getOperand(0);
12031 SDValue Trmp = Op.getOperand(1); // trampoline
12032 SDValue FPtr = Op.getOperand(2); // nested function
12033 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012034 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012035
Dan Gohman69de1932008-02-06 22:27:42 +000012036 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012037 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012038
12039 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012040 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012041
12042 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012043 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12044 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012045
Michael Liao7abf67a2012-10-04 19:50:43 +000012046 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12047 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012048
12049 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12050
12051 // Load the pointer to the nested function into R11.
12052 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012053 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012054 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012055 Addr, MachinePointerInfo(TrmpAddr),
12056 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012057
Owen Anderson825b72b2009-08-11 20:47:22 +000012058 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12059 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012060 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12061 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012062 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012063
12064 // Load the 'nest' parameter value into R10.
12065 // R10 is specified in X86CallingConv.td
12066 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012067 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12068 DAG.getConstant(10, MVT::i64));
12069 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012070 Addr, MachinePointerInfo(TrmpAddr, 10),
12071 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012072
Owen Anderson825b72b2009-08-11 20:47:22 +000012073 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12074 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012075 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12076 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012077 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012078
12079 // Jump to the nested function.
12080 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012081 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12082 DAG.getConstant(20, MVT::i64));
12083 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012084 Addr, MachinePointerInfo(TrmpAddr, 20),
12085 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012086
12087 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012088 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12089 DAG.getConstant(22, MVT::i64));
12090 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012091 MachinePointerInfo(TrmpAddr, 22),
12092 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012093
Duncan Sands4a544a72011-09-06 13:37:06 +000012094 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012095 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012096 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012097 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012098 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012099 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012100
12101 switch (CC) {
12102 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012103 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012104 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012105 case CallingConv::X86_StdCall: {
12106 // Pass 'nest' parameter in ECX.
12107 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012108 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012109
12110 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012111 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012112 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012113
Chris Lattner58d74912008-03-12 17:45:29 +000012114 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012115 unsigned InRegCount = 0;
12116 unsigned Idx = 1;
12117
12118 for (FunctionType::param_iterator I = FTy->param_begin(),
12119 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012120 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012121 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012122 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012123
12124 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012125 report_fatal_error("Nest register in use - reduce number of inreg"
12126 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012127 }
12128 }
12129 break;
12130 }
12131 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012132 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012133 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012134 // Pass 'nest' parameter in EAX.
12135 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012136 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012137 break;
12138 }
12139
Dan Gohman475871a2008-07-27 21:46:04 +000012140 SDValue OutChains[4];
12141 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012142
Owen Anderson825b72b2009-08-11 20:47:22 +000012143 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12144 DAG.getConstant(10, MVT::i32));
12145 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012146
Chris Lattnera62fe662010-02-05 19:20:30 +000012147 // This is storing the opcode for MOV32ri.
12148 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012149 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012150 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012151 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012152 Trmp, MachinePointerInfo(TrmpAddr),
12153 false, false, 0);
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(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012157 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12158 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012159 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012160
Chris Lattnera62fe662010-02-05 19:20:30 +000012161 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012162 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12163 DAG.getConstant(5, MVT::i32));
12164 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012165 MachinePointerInfo(TrmpAddr, 5),
12166 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012167
Owen Anderson825b72b2009-08-11 20:47:22 +000012168 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12169 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012170 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12171 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012172 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012173
Duncan Sands4a544a72011-09-06 13:37:06 +000012174 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012175 }
12176}
12177
Dan Gohmand858e902010-04-17 15:26:15 +000012178SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12179 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012180 /*
12181 The rounding mode is in bits 11:10 of FPSR, and has the following
12182 settings:
12183 00 Round to nearest
12184 01 Round to -inf
12185 10 Round to +inf
12186 11 Round to 0
12187
12188 FLT_ROUNDS, on the other hand, expects the following:
12189 -1 Undefined
12190 0 Round to 0
12191 1 Round to nearest
12192 2 Round to +inf
12193 3 Round to -inf
12194
12195 To perform the conversion, we do:
12196 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12197 */
12198
12199 MachineFunction &MF = DAG.getMachineFunction();
12200 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012201 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012202 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012203 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012204 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012205
12206 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012207 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012208 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012209
Chris Lattner2156b792010-09-22 01:11:26 +000012210 MachineMemOperand *MMO =
12211 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12212 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012213
Chris Lattner2156b792010-09-22 01:11:26 +000012214 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12215 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12216 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012217 Ops, array_lengthof(Ops), MVT::i16,
12218 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012219
12220 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012221 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012222 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012223
12224 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012225 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012226 DAG.getNode(ISD::SRL, DL, MVT::i16,
12227 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012228 CWD, DAG.getConstant(0x800, MVT::i16)),
12229 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012230 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012231 DAG.getNode(ISD::SRL, DL, MVT::i16,
12232 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012233 CWD, DAG.getConstant(0x400, MVT::i16)),
12234 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012235
Dan Gohman475871a2008-07-27 21:46:04 +000012236 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012237 DAG.getNode(ISD::AND, DL, MVT::i16,
12238 DAG.getNode(ISD::ADD, DL, MVT::i16,
12239 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012240 DAG.getConstant(1, MVT::i16)),
12241 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012242
Duncan Sands83ec4b62008-06-06 12:08:01 +000012243 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012244 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012245}
12246
Craig Topper55b24052012-09-11 06:15:32 +000012247static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012248 EVT VT = Op.getValueType();
12249 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012250 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012251 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012252
12253 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012254 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012255 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012256 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012257 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012258 }
Evan Cheng18efe262007-12-14 02:13:44 +000012259
Evan Cheng152804e2007-12-14 08:30:15 +000012260 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012261 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012262 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012263
12264 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012265 SDValue Ops[] = {
12266 Op,
12267 DAG.getConstant(NumBits+NumBits-1, OpVT),
12268 DAG.getConstant(X86::COND_E, MVT::i8),
12269 Op.getValue(1)
12270 };
12271 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012272
12273 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012274 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012275
Owen Anderson825b72b2009-08-11 20:47:22 +000012276 if (VT == MVT::i8)
12277 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012278 return Op;
12279}
12280
Craig Topper55b24052012-09-11 06:15:32 +000012281static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012282 EVT VT = Op.getValueType();
12283 EVT OpVT = VT;
12284 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012285 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012286
12287 Op = Op.getOperand(0);
12288 if (VT == MVT::i8) {
12289 // Zero extend to i32 since there is not an i8 bsr.
12290 OpVT = MVT::i32;
12291 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12292 }
12293
12294 // Issue a bsr (scan bits in reverse).
12295 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12296 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12297
12298 // And xor with NumBits-1.
12299 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12300
12301 if (VT == MVT::i8)
12302 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12303 return Op;
12304}
12305
Craig Topper55b24052012-09-11 06:15:32 +000012306static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012307 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012308 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012309 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012310 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012311
12312 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012313 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012314 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012315
12316 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012317 SDValue Ops[] = {
12318 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012319 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012320 DAG.getConstant(X86::COND_E, MVT::i8),
12321 Op.getValue(1)
12322 };
Chandler Carruth77821022011-12-24 12:12:34 +000012323 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012324}
12325
Craig Topper13894fa2011-08-24 06:14:18 +000012326// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12327// ones, and then concatenate the result back.
12328static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012329 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012330
Craig Topper7a9a28b2012-08-12 02:23:29 +000012331 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012332 "Unsupported value type for operation");
12333
Craig Topper66ddd152012-04-27 22:54:43 +000012334 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012335 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012336
12337 // Extract the LHS vectors
12338 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012339 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12340 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012341
12342 // Extract the RHS vectors
12343 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012344 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12345 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012346
12347 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12348 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12349
12350 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12351 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12352 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12353}
12354
Craig Topper55b24052012-09-11 06:15:32 +000012355static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012356 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012357 Op.getValueType().isInteger() &&
12358 "Only handle AVX 256-bit vector integer operation");
12359 return Lower256IntArith(Op, DAG);
12360}
12361
Craig Topper55b24052012-09-11 06:15:32 +000012362static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012363 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012364 Op.getValueType().isInteger() &&
12365 "Only handle AVX 256-bit vector integer operation");
12366 return Lower256IntArith(Op, DAG);
12367}
12368
Craig Topper55b24052012-09-11 06:15:32 +000012369static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12370 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012371 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012372 EVT VT = Op.getValueType();
12373
12374 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012375 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012376 return Lower256IntArith(Op, DAG);
12377
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012378 SDValue A = Op.getOperand(0);
12379 SDValue B = Op.getOperand(1);
12380
12381 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12382 if (VT == MVT::v4i32) {
12383 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12384 "Should not custom lower when pmuldq is available!");
12385
12386 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012387 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012388 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12389 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12390
12391 // Multiply the even parts.
12392 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12393 // Now multiply odd parts.
12394 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12395
12396 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12397 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12398
12399 // Merge the two vectors back together with a shuffle. This expands into 2
12400 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012401 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012402 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12403 }
12404
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012405 assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12406 "Only know how to lower V2I64/V4I64/V8I64 multiply");
Craig Topper5b209e82012-02-05 03:14:49 +000012407
Craig Topper5b209e82012-02-05 03:14:49 +000012408 // Ahi = psrlqi(a, 32);
12409 // Bhi = psrlqi(b, 32);
12410 //
12411 // AloBlo = pmuludq(a, b);
12412 // AloBhi = pmuludq(a, Bhi);
12413 // AhiBlo = pmuludq(Ahi, b);
12414
12415 // AloBhi = psllqi(AloBhi, 32);
12416 // AhiBlo = psllqi(AhiBlo, 32);
12417 // return AloBlo + AloBhi + AhiBlo;
12418
Lang Hames1d825372013-10-21 17:51:24 +000012419 SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12420 SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
Craig Topperaaa643c2011-11-09 07:28:55 +000012421
Craig Topper5b209e82012-02-05 03:14:49 +000012422 // Bit cast to 32-bit vectors for MULUDQ
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012423 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12424 (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
Craig Topper5b209e82012-02-05 03:14:49 +000012425 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12426 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12427 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12428 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012429
Craig Topper5b209e82012-02-05 03:14:49 +000012430 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12431 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12432 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012433
Lang Hames1d825372013-10-21 17:51:24 +000012434 AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12435 AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012436
Dale Johannesene4d209d2009-02-03 20:21:25 +000012437 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012438 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012439}
12440
Craig Topper35e194f2013-08-14 07:53:41 +000012441static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012442 EVT VT = Op.getValueType();
12443 EVT EltTy = VT.getVectorElementType();
12444 unsigned NumElts = VT.getVectorNumElements();
12445 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012446 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012447
12448 // Lower sdiv X, pow2-const.
12449 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12450 if (!C)
12451 return SDValue();
12452
12453 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012454 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012455 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012456 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12457 HasAnyUndefs) ||
12458 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012459 return SDValue();
12460
12461 if ((SplatValue != 0) &&
12462 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
Lang Hames1d825372013-10-21 17:51:24 +000012463 unsigned Lg2 = SplatValue.countTrailingZeros();
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012464 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012465 SmallVector<SDValue, 16> Sz(NumElts,
12466 DAG.getConstant(EltTy.getSizeInBits() - 1,
12467 EltTy));
12468 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12469 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12470 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012471 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012472 SmallVector<SDValue, 16> Amt(NumElts,
Lang Hames1d825372013-10-21 17:51:24 +000012473 DAG.getConstant(EltTy.getSizeInBits() - Lg2,
Michael Liaodc8c0442013-10-15 17:51:02 +000012474 EltTy));
12475 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12476 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12477 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012478 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Lang Hames1d825372013-10-21 17:51:24 +000012479 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
Michael Liaodc8c0442013-10-15 17:51:02 +000012480 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12481 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12482 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012483
12484 // If we're dividing by a positive value, we're done. Otherwise, we must
12485 // negate the result.
12486 if (SplatValue.isNonNegative())
12487 return SRA;
12488
12489 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12490 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12491 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12492 }
12493 return SDValue();
12494}
12495
Michael Liao4b7ab122013-03-20 02:20:36 +000012496static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12497 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012498 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012499 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012500 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012501 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012502
Nadav Rotem43012222011-05-11 08:12:09 +000012503 // Optimize shl/srl/sra with constant shift amount.
12504 if (isSplatVector(Amt.getNode())) {
12505 SDValue SclrAmt = Amt->getOperand(0);
12506 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12507 uint64_t ShiftAmt = C->getZExtValue();
12508
Craig Toppered2e13d2012-01-22 19:15:14 +000012509 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012510 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012511 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12512 (Subtarget->hasAVX512() &&
12513 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012514 if (Op.getOpcode() == ISD::SHL)
Lang Hames1d825372013-10-21 17:51:24 +000012515 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12516 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012517 if (Op.getOpcode() == ISD::SRL)
Lang Hames1d825372013-10-21 17:51:24 +000012518 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12519 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012520 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
Lang Hames1d825372013-10-21 17:51:24 +000012521 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12522 DAG);
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012523 }
12524
Craig Toppered2e13d2012-01-22 19:15:14 +000012525 if (VT == MVT::v16i8) {
12526 if (Op.getOpcode() == ISD::SHL) {
12527 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012528 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12529 MVT::v8i16, R, ShiftAmt,
12530 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012531 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12532 // Zero out the rightmost bits.
12533 SmallVector<SDValue, 16> V(16,
12534 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12535 MVT::i8));
12536 return DAG.getNode(ISD::AND, dl, VT, SHL,
12537 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012538 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012539 if (Op.getOpcode() == ISD::SRL) {
12540 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012541 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12542 MVT::v8i16, R, ShiftAmt,
12543 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012544 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12545 // Zero out the leftmost bits.
12546 SmallVector<SDValue, 16> V(16,
12547 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12548 MVT::i8));
12549 return DAG.getNode(ISD::AND, dl, VT, SRL,
12550 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12551 }
12552 if (Op.getOpcode() == ISD::SRA) {
12553 if (ShiftAmt == 7) {
12554 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012555 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012556 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012557 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012558
Craig Toppered2e13d2012-01-22 19:15:14 +000012559 // R s>> a === ((R u>> a) ^ m) - m
12560 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12561 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12562 MVT::i8));
12563 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12564 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12565 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12566 return Res;
12567 }
Craig Topper731dfd02012-04-23 03:42:40 +000012568 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012569 }
Craig Topper46154eb2011-11-11 07:39:23 +000012570
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012571 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012572 if (Op.getOpcode() == ISD::SHL) {
12573 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012574 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12575 MVT::v16i16, R, ShiftAmt,
12576 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012577 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012578 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012579 SmallVector<SDValue, 32> V(32,
12580 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12581 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012582 return DAG.getNode(ISD::AND, dl, VT, SHL,
12583 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012584 }
Craig Topper0d86d462011-11-20 00:12:05 +000012585 if (Op.getOpcode() == ISD::SRL) {
12586 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012587 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12588 MVT::v16i16, R, ShiftAmt,
12589 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012590 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012591 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012592 SmallVector<SDValue, 32> V(32,
12593 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12594 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012595 return DAG.getNode(ISD::AND, dl, VT, SRL,
12596 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12597 }
12598 if (Op.getOpcode() == ISD::SRA) {
12599 if (ShiftAmt == 7) {
12600 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012601 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012602 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012603 }
12604
12605 // R s>> a === ((R u>> a) ^ m) - m
12606 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12607 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12608 MVT::i8));
12609 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12610 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12611 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12612 return Res;
12613 }
Craig Topper731dfd02012-04-23 03:42:40 +000012614 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012615 }
Nadav Rotem43012222011-05-11 08:12:09 +000012616 }
12617 }
12618
Michael Liao42317cc2013-03-20 02:33:21 +000012619 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12620 if (!Subtarget->is64Bit() &&
12621 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12622 Amt.getOpcode() == ISD::BITCAST &&
12623 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12624 Amt = Amt.getOperand(0);
12625 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12626 VT.getVectorNumElements();
12627 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12628 uint64_t ShiftAmt = 0;
12629 for (unsigned i = 0; i != Ratio; ++i) {
12630 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12631 if (C == 0)
12632 return SDValue();
12633 // 6 == Log2(64)
12634 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12635 }
12636 // Check remaining shift amounts.
12637 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12638 uint64_t ShAmt = 0;
12639 for (unsigned j = 0; j != Ratio; ++j) {
12640 ConstantSDNode *C =
12641 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12642 if (C == 0)
12643 return SDValue();
12644 // 6 == Log2(64)
12645 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12646 }
12647 if (ShAmt != ShiftAmt)
12648 return SDValue();
12649 }
12650 switch (Op.getOpcode()) {
12651 default:
12652 llvm_unreachable("Unknown shift opcode!");
12653 case ISD::SHL:
Lang Hames1d825372013-10-21 17:51:24 +000012654 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12655 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012656 case ISD::SRL:
Lang Hames1d825372013-10-21 17:51:24 +000012657 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12658 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012659 case ISD::SRA:
Lang Hames1d825372013-10-21 17:51:24 +000012660 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12661 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012662 }
12663 }
12664
12665 return SDValue();
12666}
12667
12668static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12669 const X86Subtarget* Subtarget) {
12670 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012671 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012672 SDValue R = Op.getOperand(0);
12673 SDValue Amt = Op.getOperand(1);
12674
12675 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12676 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12677 (Subtarget->hasInt256() &&
12678 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012679 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12680 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012681 SDValue BaseShAmt;
12682 EVT EltVT = VT.getVectorElementType();
12683
12684 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12685 unsigned NumElts = VT.getVectorNumElements();
12686 unsigned i, j;
12687 for (i = 0; i != NumElts; ++i) {
12688 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12689 continue;
12690 break;
12691 }
12692 for (j = i; j != NumElts; ++j) {
12693 SDValue Arg = Amt.getOperand(j);
12694 if (Arg.getOpcode() == ISD::UNDEF) continue;
12695 if (Arg != Amt.getOperand(i))
12696 break;
12697 }
12698 if (i != NumElts && j == NumElts)
12699 BaseShAmt = Amt.getOperand(i);
12700 } else {
12701 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12702 Amt = Amt.getOperand(0);
12703 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12704 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12705 SDValue InVec = Amt.getOperand(0);
12706 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12707 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12708 unsigned i = 0;
12709 for (; i != NumElts; ++i) {
12710 SDValue Arg = InVec.getOperand(i);
12711 if (Arg.getOpcode() == ISD::UNDEF) continue;
12712 BaseShAmt = Arg;
12713 break;
12714 }
12715 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12716 if (ConstantSDNode *C =
12717 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12718 unsigned SplatIdx =
12719 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12720 if (C->getZExtValue() == SplatIdx)
12721 BaseShAmt = InVec.getOperand(1);
12722 }
12723 }
12724 if (BaseShAmt.getNode() == 0)
12725 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12726 DAG.getIntPtrConstant(0));
12727 }
12728 }
12729
12730 if (BaseShAmt.getNode()) {
12731 if (EltVT.bitsGT(MVT::i32))
12732 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12733 else if (EltVT.bitsLT(MVT::i32))
12734 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12735
12736 switch (Op.getOpcode()) {
12737 default:
12738 llvm_unreachable("Unknown shift opcode!");
12739 case ISD::SHL:
12740 switch (VT.getSimpleVT().SimpleTy) {
12741 default: return SDValue();
12742 case MVT::v2i64:
12743 case MVT::v4i32:
12744 case MVT::v8i16:
12745 case MVT::v4i64:
12746 case MVT::v8i32:
12747 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012748 case MVT::v16i32:
12749 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012750 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12751 }
12752 case ISD::SRA:
12753 switch (VT.getSimpleVT().SimpleTy) {
12754 default: return SDValue();
12755 case MVT::v4i32:
12756 case MVT::v8i16:
12757 case MVT::v8i32:
12758 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012759 case MVT::v16i32:
12760 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012761 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12762 }
12763 case ISD::SRL:
12764 switch (VT.getSimpleVT().SimpleTy) {
12765 default: return SDValue();
12766 case MVT::v2i64:
12767 case MVT::v4i32:
12768 case MVT::v8i16:
12769 case MVT::v4i64:
12770 case MVT::v8i32:
12771 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012772 case MVT::v16i32:
12773 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012774 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12775 }
12776 }
12777 }
12778 }
12779
12780 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12781 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012782 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12783 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012784 Amt.getOpcode() == ISD::BITCAST &&
12785 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12786 Amt = Amt.getOperand(0);
12787 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12788 VT.getVectorNumElements();
12789 std::vector<SDValue> Vals(Ratio);
12790 for (unsigned i = 0; i != Ratio; ++i)
12791 Vals[i] = Amt.getOperand(i);
12792 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12793 for (unsigned j = 0; j != Ratio; ++j)
12794 if (Vals[j] != Amt.getOperand(i + j))
12795 return SDValue();
12796 }
12797 switch (Op.getOpcode()) {
12798 default:
12799 llvm_unreachable("Unknown shift opcode!");
12800 case ISD::SHL:
12801 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12802 case ISD::SRL:
12803 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12804 case ISD::SRA:
12805 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12806 }
12807 }
12808
Michael Liao4b7ab122013-03-20 02:20:36 +000012809 return SDValue();
12810}
12811
Craig Topper35e194f2013-08-14 07:53:41 +000012812static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12813 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012814
12815 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012816 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012817 SDValue R = Op.getOperand(0);
12818 SDValue Amt = Op.getOperand(1);
12819 SDValue V;
12820
12821 if (!Subtarget->hasSSE2())
12822 return SDValue();
12823
12824 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12825 if (V.getNode())
12826 return V;
12827
Michael Liao42317cc2013-03-20 02:33:21 +000012828 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12829 if (V.getNode())
12830 return V;
12831
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012832 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12833 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012834 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12835 if (Subtarget->hasInt256()) {
12836 if (Op.getOpcode() == ISD::SRL &&
12837 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12838 VT == MVT::v4i64 || VT == MVT::v8i32))
12839 return Op;
12840 if (Op.getOpcode() == ISD::SHL &&
12841 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12842 VT == MVT::v4i64 || VT == MVT::v8i32))
12843 return Op;
12844 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12845 return Op;
12846 }
12847
Nadav Rotem43012222011-05-11 08:12:09 +000012848 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012849 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012850 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012851
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012852 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012853 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012854 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12855 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12856 }
Nadav Rotem43012222011-05-11 08:12:09 +000012857 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012858 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012859
Nate Begeman51409212010-07-28 00:21:48 +000012860 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012861 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012862 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012863
Lang Hames8b99c1e2011-12-17 01:08:46 +000012864 // Turn 'a' into a mask suitable for VSELECT
12865 SDValue VSelM = DAG.getConstant(0x80, VT);
12866 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012867 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012868
Lang Hames8b99c1e2011-12-17 01:08:46 +000012869 SDValue CM1 = DAG.getConstant(0x0f, VT);
12870 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012871
Lang Hames8b99c1e2011-12-17 01:08:46 +000012872 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12873 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Lang Hames1d825372013-10-21 17:51:24 +000012874 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012875 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012876 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12877
Nate Begeman51409212010-07-28 00:21:48 +000012878 // a += a
12879 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012880 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012881 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012882
Lang Hames8b99c1e2011-12-17 01:08:46 +000012883 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12884 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Lang Hames1d825372013-10-21 17:51:24 +000012885 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012886 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012887 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12888
Nate Begeman51409212010-07-28 00:21:48 +000012889 // a += a
12890 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012891 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012892 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012893
Lang Hames8b99c1e2011-12-17 01:08:46 +000012894 // return VSELECT(r, r+r, a);
12895 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012896 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012897 return R;
12898 }
Craig Topper46154eb2011-11-11 07:39:23 +000012899
12900 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012901 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012902 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012903 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12904 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12905
12906 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012907 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12908 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012909
12910 // Recreate the shift amount vectors
12911 SDValue Amt1, Amt2;
12912 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12913 // Constant shift amount
12914 SmallVector<SDValue, 4> Amt1Csts;
12915 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012916 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012917 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012918 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012919 Amt2Csts.push_back(Amt->getOperand(i));
12920
12921 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12922 &Amt1Csts[0], NumElems/2);
12923 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12924 &Amt2Csts[0], NumElems/2);
12925 } else {
12926 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012927 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12928 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012929 }
12930
12931 // Issue new vector shifts for the smaller types
12932 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12933 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12934
12935 // Concatenate the result back
12936 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12937 }
12938
Nate Begeman51409212010-07-28 00:21:48 +000012939 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012940}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012941
Craig Topper55b24052012-09-11 06:15:32 +000012942static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012943 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12944 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012945 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12946 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012947 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012948 SDValue LHS = N->getOperand(0);
12949 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012950 unsigned BaseOp = 0;
12951 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012952 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012953 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012954 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012955 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012956 // A subtract of one will be selected as a INC. Note that INC doesn't
12957 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012958 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12959 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012960 BaseOp = X86ISD::INC;
12961 Cond = X86::COND_O;
12962 break;
12963 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012964 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012965 Cond = X86::COND_O;
12966 break;
12967 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012968 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012969 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012970 break;
12971 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012972 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12973 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012974 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12975 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012976 BaseOp = X86ISD::DEC;
12977 Cond = X86::COND_O;
12978 break;
12979 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012980 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012981 Cond = X86::COND_O;
12982 break;
12983 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012984 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012985 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012986 break;
12987 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000012988 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000012989 Cond = X86::COND_O;
12990 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012991 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12992 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12993 MVT::i32);
12994 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012995
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012996 SDValue SetCC =
12997 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12998 DAG.getConstant(X86::COND_O, MVT::i32),
12999 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013000
Dan Gohman6e5fda22011-07-22 18:45:15 +000013001 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013002 }
Bill Wendling74c37652008-12-09 22:08:41 +000013003 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013004
Bill Wendling61edeb52008-12-02 01:06:39 +000013005 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013006 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013007 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013008
Bill Wendling61edeb52008-12-02 01:06:39 +000013009 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013010 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13011 DAG.getConstant(Cond, MVT::i32),
13012 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013013
Dan Gohman6e5fda22011-07-22 18:45:15 +000013014 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013015}
13016
Chad Rosier30450e82011-12-22 22:35:21 +000013017SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13018 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013019 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013020 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13021 EVT VT = Op.getValueType();
13022
Craig Toppered2e13d2012-01-22 19:15:14 +000013023 if (!Subtarget->hasSSE2() || !VT.isVector())
13024 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013025
Craig Toppered2e13d2012-01-22 19:15:14 +000013026 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13027 ExtraVT.getScalarType().getSizeInBits();
Craig Toppered2e13d2012-01-22 19:15:14 +000013028
13029 switch (VT.getSimpleVT().SimpleTy) {
13030 default: return SDValue();
13031 case MVT::v8i32:
13032 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013033 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013034 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013035 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000013036 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000013037 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000013038
Craig Toppered2e13d2012-01-22 19:15:14 +000013039 // Extract the LHS vectors
13040 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000013041 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13042 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000013043
Craig Toppered2e13d2012-01-22 19:15:14 +000013044 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13045 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013046
Craig Toppered2e13d2012-01-22 19:15:14 +000013047 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013048 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013049 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13050 ExtraNumElems/2);
13051 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013052
Craig Toppered2e13d2012-01-22 19:15:14 +000013053 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13054 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013055
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013056 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013057 }
13058 // fall through
13059 case MVT::v4i32:
13060 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013061 // (sext (vzext x)) -> (vsext x)
13062 SDValue Op0 = Op.getOperand(0);
13063 SDValue Op00 = Op0.getOperand(0);
13064 SDValue Tmp1;
13065 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13066 if (Op0.getOpcode() == ISD::BITCAST &&
13067 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
Craig Topper158ec072013-08-14 07:34:43 +000013068 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Nadav Rotemb05130e2013-03-19 18:38:27 +000013069 if (Tmp1.getNode()) {
13070 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13071 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13072 "This optimization is invalid without a VZEXT.");
13073 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13074 }
13075
13076 // If the above didn't work, then just use Shift-Left + Shift-Right.
Lang Hames1d825372013-10-21 17:51:24 +000013077 Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13078 DAG);
13079 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13080 DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013081 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013082 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013083}
13084
Craig Topper55b24052012-09-11 06:15:32 +000013085static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13086 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013087 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013088 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13089 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13090 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13091 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13092
13093 // The only fence that needs an instruction is a sequentially-consistent
13094 // cross-thread fence.
13095 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13096 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13097 // no-sse2). There isn't any reason to disable it if the target processor
13098 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013099 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013100 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13101
13102 SDValue Chain = Op.getOperand(0);
13103 SDValue Zero = DAG.getConstant(0, MVT::i32);
13104 SDValue Ops[] = {
13105 DAG.getRegister(X86::ESP, MVT::i32), // Base
13106 DAG.getTargetConstant(1, MVT::i8), // Scale
13107 DAG.getRegister(0, MVT::i32), // Index
13108 DAG.getTargetConstant(0, MVT::i32), // Disp
13109 DAG.getRegister(0, MVT::i32), // Segment.
13110 Zero,
13111 Chain
13112 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013113 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013114 return SDValue(Res, 0);
13115 }
13116
13117 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13118 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13119}
13120
Craig Topper55b24052012-09-11 06:15:32 +000013121static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13122 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013123 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013124 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013125 unsigned Reg = 0;
13126 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013127 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013128 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013129 case MVT::i8: Reg = X86::AL; size = 1; break;
13130 case MVT::i16: Reg = X86::AX; size = 2; break;
13131 case MVT::i32: Reg = X86::EAX; size = 4; break;
13132 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013133 assert(Subtarget->is64Bit() && "Node not type legal!");
13134 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013135 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013136 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013137 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013138 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013139 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013140 Op.getOperand(1),
13141 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013142 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013143 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013144 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013145 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13146 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013147 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013148 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013149 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013150 return cpOut;
13151}
13152
Craig Topper55b24052012-09-11 06:15:32 +000013153static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13154 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013155 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013156 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013157 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013158 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013159 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013160 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13161 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013162 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013163 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13164 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013165 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013166 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013167 rdx.getValue(1)
13168 };
Michael Liao0ee17002013-04-19 04:03:37 +000013169 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013170}
13171
Craig Topper35e194f2013-08-14 07:53:41 +000013172static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13173 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013174 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13175 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013176 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013177 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013178 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013179 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013180 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013181 // i64 <=> MMX conversions are Legal.
13182 if (SrcVT==MVT::i64 && DstVT.isVector())
13183 return Op;
13184 if (DstVT==MVT::i64 && SrcVT.isVector())
13185 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013186 // MMX <=> MMX conversions are Legal.
13187 if (SrcVT.isVector() && DstVT.isVector())
13188 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013189 // All other conversions need to be expanded.
13190 return SDValue();
13191}
Chris Lattner5b856542010-12-20 00:59:46 +000013192
Craig Topper55b24052012-09-11 06:15:32 +000013193static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013194 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013195 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013196 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013197 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013198 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013199 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013200 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013201 Node->getOperand(0),
13202 Node->getOperand(1), negOp,
13203 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013204 cast<AtomicSDNode>(Node)->getAlignment(),
13205 cast<AtomicSDNode>(Node)->getOrdering(),
13206 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013207}
13208
Eli Friedman327236c2011-08-24 20:50:09 +000013209static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13210 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013211 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013212 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013213
13214 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013215 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13216 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13217 // (The only way to get a 16-byte store is cmpxchg16b)
13218 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13219 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13220 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013221 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13222 cast<AtomicSDNode>(Node)->getMemoryVT(),
13223 Node->getOperand(0),
13224 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013225 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013226 cast<AtomicSDNode>(Node)->getOrdering(),
13227 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013228 return Swap.getValue(1);
13229 }
13230 // Other atomic stores have a simple pattern.
13231 return Op;
13232}
13233
Chris Lattner5b856542010-12-20 00:59:46 +000013234static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13235 EVT VT = Op.getNode()->getValueType(0);
13236
13237 // Let legalize expand this if it isn't a legal type yet.
13238 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13239 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013240
Chris Lattner5b856542010-12-20 00:59:46 +000013241 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013242
Chris Lattner5b856542010-12-20 00:59:46 +000013243 unsigned Opc;
13244 bool ExtraOp = false;
13245 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013246 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013247 case ISD::ADDC: Opc = X86ISD::ADD; break;
13248 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13249 case ISD::SUBC: Opc = X86ISD::SUB; break;
13250 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13251 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013252
Chris Lattner5b856542010-12-20 00:59:46 +000013253 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013254 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013255 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013256 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013257 Op.getOperand(1), Op.getOperand(2));
13258}
13259
Craig Topper35e194f2013-08-14 07:53:41 +000013260static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13261 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013262 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013263
Evan Cheng8688a582013-01-29 02:32:37 +000013264 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013265 // which returns the values as { float, float } (in XMM0) or
13266 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013267 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013268 SDValue Arg = Op.getOperand(0);
13269 EVT ArgVT = Arg.getValueType();
13270 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013271
Craig Topper35e194f2013-08-14 07:53:41 +000013272 TargetLowering::ArgListTy Args;
13273 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013274
Evan Cheng8688a582013-01-29 02:32:37 +000013275 Entry.Node = Arg;
13276 Entry.Ty = ArgTy;
13277 Entry.isSExt = false;
13278 Entry.isZExt = false;
13279 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013280
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013281 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013282 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13283 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13284 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013285 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013286 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13287 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013288
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013289 Type *RetTy = isF64
13290 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13291 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013292 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013293 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13294 false, false, false, false, 0,
13295 CallingConv::C, /*isTaillCall=*/false,
13296 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13297 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013298 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013299
13300 if (isF64)
13301 // Returned in xmm0 and xmm1.
13302 return CallResult.first;
13303
13304 // Returned in bits 0:31 and 32:64 xmm0.
13305 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13306 CallResult.first, DAG.getIntPtrConstant(0));
13307 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13308 CallResult.first, DAG.getIntPtrConstant(1));
13309 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13310 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013311}
13312
Evan Cheng0db9fe62006-04-25 20:13:52 +000013313/// LowerOperation - Provide custom lowering hooks for some operations.
13314///
Dan Gohmand858e902010-04-17 15:26:15 +000013315SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013316 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013317 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013318 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013319 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13320 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013321 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013322 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013323 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013324 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013325 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13326 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13327 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013328 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13329 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013330 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13331 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13332 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013333 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013334 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013335 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013336 case ISD::SHL_PARTS:
13337 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013338 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013339 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013340 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013341 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013342 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13343 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13344 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013345 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013346 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013347 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013348 case ISD::FABS: return LowerFABS(Op, DAG);
13349 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013350 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013351 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013352 case ISD::SETCC: return LowerSETCC(Op, DAG);
13353 case ISD::SELECT: return LowerSELECT(Op, DAG);
13354 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013355 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013356 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013357 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013358 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013359 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013360 case ISD::INTRINSIC_VOID:
13361 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013362 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13363 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013364 case ISD::FRAME_TO_ARGS_OFFSET:
13365 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013366 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013367 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013368 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13369 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013370 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13371 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013372 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013373 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013374 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013375 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013376 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013377 case ISD::SRA:
13378 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013379 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013380 case ISD::SADDO:
13381 case ISD::UADDO:
13382 case ISD::SSUBO:
13383 case ISD::USUBO:
13384 case ISD::SMULO:
13385 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013386 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013387 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013388 case ISD::ADDC:
13389 case ISD::ADDE:
13390 case ISD::SUBC:
13391 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013392 case ISD::ADD: return LowerADD(Op, DAG);
13393 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013394 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013395 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013396 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013397}
13398
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013399static void ReplaceATOMIC_LOAD(SDNode *Node,
13400 SmallVectorImpl<SDValue> &Results,
13401 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013402 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013403 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13404
13405 // Convert wide load -> cmpxchg8b/cmpxchg16b
13406 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13407 // (The only way to get a 16-byte load is cmpxchg16b)
13408 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013409 SDValue Zero = DAG.getConstant(0, VT);
13410 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013411 Node->getOperand(0),
13412 Node->getOperand(1), Zero, Zero,
13413 cast<AtomicSDNode>(Node)->getMemOperand(),
13414 cast<AtomicSDNode>(Node)->getOrdering(),
13415 cast<AtomicSDNode>(Node)->getSynchScope());
13416 Results.push_back(Swap.getValue(0));
13417 Results.push_back(Swap.getValue(1));
13418}
13419
Craig Topperc0878702012-08-17 06:55:11 +000013420static void
Duncan Sands1607f052008-12-01 11:39:25 +000013421ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013422 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013423 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013424 assert (Node->getValueType(0) == MVT::i64 &&
13425 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013426
13427 SDValue Chain = Node->getOperand(0);
13428 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013429 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013430 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013431 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013432 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013433 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013434 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013435 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013436 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013437 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013438 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013439 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013440 Results.push_back(Result.getValue(2));
13441}
13442
Duncan Sands126d9072008-07-04 11:47:58 +000013443/// ReplaceNodeResults - Replace a node with an illegal result type
13444/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013445void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13446 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013447 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013448 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013449 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013450 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013451 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013452 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013453 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013454 case ISD::ADDC:
13455 case ISD::ADDE:
13456 case ISD::SUBC:
13457 case ISD::SUBE:
13458 // We don't want to expand or promote these.
13459 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013460 case ISD::FP_TO_SINT:
13461 case ISD::FP_TO_UINT: {
13462 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13463
13464 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13465 return;
13466
Eli Friedman948e95a2009-05-23 09:59:16 +000013467 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013468 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013469 SDValue FIST = Vals.first, StackSlot = Vals.second;
13470 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013471 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013472 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013473 if (StackSlot.getNode() != 0)
13474 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13475 MachinePointerInfo(),
13476 false, false, false, 0));
13477 else
13478 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013479 }
13480 return;
13481 }
Michael Liao991b6a22012-10-24 04:09:32 +000013482 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013483 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13484 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013485 N->getValueType(0) != MVT::v2f32)
13486 return;
13487 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13488 N->getOperand(0));
13489 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13490 MVT::f64);
13491 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13492 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13493 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13494 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13495 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13496 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13497 return;
13498 }
Michael Liao44c2d612012-10-10 16:53:28 +000013499 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013500 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13501 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013502 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13503 Results.push_back(V);
13504 return;
13505 }
Duncan Sands1607f052008-12-01 11:39:25 +000013506 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013507 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013508 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013509 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013510 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013511 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013512 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013513 eax.getValue(2));
13514 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13515 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013516 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13517 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013518 Results.push_back(edx.getValue(1));
13519 return;
13520 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013521 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013522 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013523 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013524 bool Regs64bit = T == MVT::i128;
13525 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013526 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013527 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13528 DAG.getConstant(0, HalfT));
13529 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13530 DAG.getConstant(1, HalfT));
13531 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13532 Regs64bit ? X86::RAX : X86::EAX,
13533 cpInL, SDValue());
13534 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13535 Regs64bit ? X86::RDX : X86::EDX,
13536 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013537 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013538 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13539 DAG.getConstant(0, HalfT));
13540 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13541 DAG.getConstant(1, HalfT));
13542 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13543 Regs64bit ? X86::RBX : X86::EBX,
13544 swapInL, cpInH.getValue(1));
13545 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013546 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013547 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013548 SDValue Ops[] = { swapInH.getValue(0),
13549 N->getOperand(1),
13550 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013551 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013552 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013553 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13554 X86ISD::LCMPXCHG8_DAG;
13555 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013556 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013557 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13558 Regs64bit ? X86::RAX : X86::EAX,
13559 HalfT, Result.getValue(1));
13560 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13561 Regs64bit ? X86::RDX : X86::EDX,
13562 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013563 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013564 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013565 Results.push_back(cpOutH.getValue(1));
13566 return;
13567 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013568 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013569 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013570 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013571 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013572 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013573 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013574 case ISD::ATOMIC_LOAD_MAX:
13575 case ISD::ATOMIC_LOAD_MIN:
13576 case ISD::ATOMIC_LOAD_UMAX:
13577 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013578 case ISD::ATOMIC_SWAP: {
13579 unsigned Opc;
13580 switch (N->getOpcode()) {
13581 default: llvm_unreachable("Unexpected opcode");
13582 case ISD::ATOMIC_LOAD_ADD:
13583 Opc = X86ISD::ATOMADD64_DAG;
13584 break;
13585 case ISD::ATOMIC_LOAD_AND:
13586 Opc = X86ISD::ATOMAND64_DAG;
13587 break;
13588 case ISD::ATOMIC_LOAD_NAND:
13589 Opc = X86ISD::ATOMNAND64_DAG;
13590 break;
13591 case ISD::ATOMIC_LOAD_OR:
13592 Opc = X86ISD::ATOMOR64_DAG;
13593 break;
13594 case ISD::ATOMIC_LOAD_SUB:
13595 Opc = X86ISD::ATOMSUB64_DAG;
13596 break;
13597 case ISD::ATOMIC_LOAD_XOR:
13598 Opc = X86ISD::ATOMXOR64_DAG;
13599 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013600 case ISD::ATOMIC_LOAD_MAX:
13601 Opc = X86ISD::ATOMMAX64_DAG;
13602 break;
13603 case ISD::ATOMIC_LOAD_MIN:
13604 Opc = X86ISD::ATOMMIN64_DAG;
13605 break;
13606 case ISD::ATOMIC_LOAD_UMAX:
13607 Opc = X86ISD::ATOMUMAX64_DAG;
13608 break;
13609 case ISD::ATOMIC_LOAD_UMIN:
13610 Opc = X86ISD::ATOMUMIN64_DAG;
13611 break;
Craig Topperc0878702012-08-17 06:55:11 +000013612 case ISD::ATOMIC_SWAP:
13613 Opc = X86ISD::ATOMSWAP64_DAG;
13614 break;
13615 }
13616 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013617 return;
Craig Topperc0878702012-08-17 06:55:11 +000013618 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013619 case ISD::ATOMIC_LOAD:
13620 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013621 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013622}
13623
Evan Cheng72261582005-12-20 06:22:03 +000013624const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13625 switch (Opcode) {
13626 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013627 case X86ISD::BSF: return "X86ISD::BSF";
13628 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013629 case X86ISD::SHLD: return "X86ISD::SHLD";
13630 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013631 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013632 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013633 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013634 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013635 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013636 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013637 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013638 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13639 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13640 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013641 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013642 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013643 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013644 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013645 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013646 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013647 case X86ISD::COMI: return "X86ISD::COMI";
13648 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013649 case X86ISD::CMPM: return "X86ISD::CMPM";
13650 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013651 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013652 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013653 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13654 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013655 case X86ISD::CMOV: return "X86ISD::CMOV";
13656 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013657 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013658 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13659 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013660 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013661 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013662 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013663 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013664 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013665 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13666 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013667 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013668 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013669 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013670 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013671 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013672 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013673 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013674 case X86ISD::HADD: return "X86ISD::HADD";
13675 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013676 case X86ISD::FHADD: return "X86ISD::FHADD";
13677 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013678 case X86ISD::UMAX: return "X86ISD::UMAX";
13679 case X86ISD::UMIN: return "X86ISD::UMIN";
13680 case X86ISD::SMAX: return "X86ISD::SMAX";
13681 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013682 case X86ISD::FMAX: return "X86ISD::FMAX";
13683 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013684 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13685 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013686 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13687 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013688 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013689 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013690 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013691 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13692 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013693 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013694 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013695 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013696 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013697 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13698 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013699 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13700 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13701 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13702 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13703 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13704 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013705 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013706 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013707 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013708 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13709 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013710 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13711 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013712 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013713 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013714 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013715 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13716 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013717 case X86ISD::VSHL: return "X86ISD::VSHL";
13718 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013719 case X86ISD::VSRA: return "X86ISD::VSRA";
13720 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13721 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13722 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013723 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013724 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13725 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013726 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13727 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013728 case X86ISD::ADD: return "X86ISD::ADD";
13729 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013730 case X86ISD::ADC: return "X86ISD::ADC";
13731 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013732 case X86ISD::SMUL: return "X86ISD::SMUL";
13733 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013734 case X86ISD::INC: return "X86ISD::INC";
13735 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013736 case X86ISD::OR: return "X86ISD::OR";
13737 case X86ISD::XOR: return "X86ISD::XOR";
13738 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013739 case X86ISD::BLSI: return "X86ISD::BLSI";
13740 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13741 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013742 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013743 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013744 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013745 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013746 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013747 case X86ISD::TESTM: return "X86ISD::TESTM";
13748 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13749 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013750 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013751 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13752 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013753 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013754 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013755 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013756 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013757 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013758 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13759 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013760 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13761 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13762 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013763 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13764 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013765 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13766 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013767 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013768 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013769 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013770 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013771 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013772 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013773 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013774 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013775 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013776 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013777 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013778 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013779 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013780 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013781 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013782 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013783 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013784 case X86ISD::FMADD: return "X86ISD::FMADD";
13785 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13786 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13787 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13788 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13789 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013790 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13791 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013792 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013793 }
13794}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013795
Chris Lattnerc9addb72007-03-30 23:15:24 +000013796// isLegalAddressingMode - Return true if the addressing mode represented
13797// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013798bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013799 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013800 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013801 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013802 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013803
Chris Lattnerc9addb72007-03-30 23:15:24 +000013804 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013805 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013806 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013807
Chris Lattnerc9addb72007-03-30 23:15:24 +000013808 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013809 unsigned GVFlags =
13810 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013811
Chris Lattnerdfed4132009-07-10 07:38:24 +000013812 // If a reference to this global requires an extra load, we can't fold it.
13813 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013814 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013815
Chris Lattnerdfed4132009-07-10 07:38:24 +000013816 // If BaseGV requires a register for the PIC base, we cannot also have a
13817 // BaseReg specified.
13818 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013819 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013820
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013821 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013822 if ((M != CodeModel::Small || R != Reloc::Static) &&
13823 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013824 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013825 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013826
Chris Lattnerc9addb72007-03-30 23:15:24 +000013827 switch (AM.Scale) {
13828 case 0:
13829 case 1:
13830 case 2:
13831 case 4:
13832 case 8:
13833 // These scales always work.
13834 break;
13835 case 3:
13836 case 5:
13837 case 9:
13838 // These scales are formed with basereg+scalereg. Only accept if there is
13839 // no basereg yet.
13840 if (AM.HasBaseReg)
13841 return false;
13842 break;
13843 default: // Other stuff never works.
13844 return false;
13845 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013846
Chris Lattnerc9addb72007-03-30 23:15:24 +000013847 return true;
13848}
13849
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013850bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013851 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013852 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013853 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13854 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013855 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013856}
13857
Tim Northoverd1134482013-08-06 09:12:35 +000013858bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13859 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13860 return false;
13861
13862 if (!isTypeLegal(EVT::getEVT(Ty1)))
13863 return false;
13864
13865 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13866
13867 // Assuming the caller doesn't have a zeroext or signext return parameter,
13868 // truncation all the way down to i1 is valid.
13869 return true;
13870}
13871
Evan Cheng70e10d32012-07-17 06:53:39 +000013872bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013873 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013874}
13875
13876bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013877 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013878 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013879}
13880
Owen Andersone50ed302009-08-10 22:56:29 +000013881bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013882 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013883 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013884 unsigned NumBits1 = VT1.getSizeInBits();
13885 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013886 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013887}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013888
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013889bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013890 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013891 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013892}
13893
Owen Andersone50ed302009-08-10 22:56:29 +000013894bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013895 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013896 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013897}
13898
Evan Cheng2766a472012-12-06 19:13:27 +000013899bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13900 EVT VT1 = Val.getValueType();
13901 if (isZExtFree(VT1, VT2))
13902 return true;
13903
13904 if (Val.getOpcode() != ISD::LOAD)
13905 return false;
13906
13907 if (!VT1.isSimple() || !VT1.isInteger() ||
13908 !VT2.isSimple() || !VT2.isInteger())
13909 return false;
13910
13911 switch (VT1.getSimpleVT().SimpleTy) {
13912 default: break;
13913 case MVT::i8:
13914 case MVT::i16:
13915 case MVT::i32:
13916 // X86 has 8, 16, and 32-bit zero-extending loads.
13917 return true;
13918 }
13919
13920 return false;
13921}
13922
Stephen Line54885a2013-07-09 18:16:56 +000013923bool
13924X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13925 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13926 return false;
13927
13928 VT = VT.getScalarType();
13929
13930 if (!VT.isSimple())
13931 return false;
13932
13933 switch (VT.getSimpleVT().SimpleTy) {
13934 case MVT::f32:
13935 case MVT::f64:
13936 return true;
13937 default:
13938 break;
13939 }
13940
13941 return false;
13942}
13943
Owen Andersone50ed302009-08-10 22:56:29 +000013944bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013945 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013946 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013947}
13948
Evan Cheng60c07e12006-07-05 22:17:51 +000013949/// isShuffleMaskLegal - Targets can use this to indicate that they only
13950/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13951/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13952/// are assumed to be legal.
13953bool
Eric Christopherfd179292009-08-27 18:07:15 +000013954X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013955 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013956 if (!VT.isSimple())
13957 return false;
13958
13959 MVT SVT = VT.getSimpleVT();
13960
Eric Christophercff6f852010-04-15 01:40:20 +000013961 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013962 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013963 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013964
Nate Begemana09008b2009-10-19 02:17:23 +000013965 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013966 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013967 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013968 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013969 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013970 isPSHUFDMask(M, SVT) ||
13971 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13972 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13973 isPALIGNRMask(M, SVT, Subtarget) ||
13974 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13975 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13976 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13977 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013978}
13979
Dan Gohman7d8143f2008-04-09 20:09:42 +000013980bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013981X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013982 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013983 if (!VT.isSimple())
13984 return false;
13985
13986 MVT SVT = VT.getSimpleVT();
13987 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000013988 // FIXME: This collection of masks seems suspect.
13989 if (NumElts == 2)
13990 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000013991 if (NumElts == 4 && SVT.is128BitVector()) {
13992 return (isMOVLMask(Mask, SVT) ||
13993 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013994 isSHUFPMask(Mask, SVT) ||
13995 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000013996 }
13997 return false;
13998}
13999
14000//===----------------------------------------------------------------------===//
14001// X86 Scheduler Hooks
14002//===----------------------------------------------------------------------===//
14003
Michael Liaobe02a902012-11-08 07:28:54 +000014004/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014005static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14006 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014007 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014008
14009 const BasicBlock *BB = MBB->getBasicBlock();
14010 MachineFunction::iterator I = MBB;
14011 ++I;
14012
14013 // For the v = xbegin(), we generate
14014 //
14015 // thisMBB:
14016 // xbegin sinkMBB
14017 //
14018 // mainMBB:
14019 // eax = -1
14020 //
14021 // sinkMBB:
14022 // v = eax
14023
14024 MachineBasicBlock *thisMBB = MBB;
14025 MachineFunction *MF = MBB->getParent();
14026 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14027 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14028 MF->insert(I, mainMBB);
14029 MF->insert(I, sinkMBB);
14030
14031 // Transfer the remainder of BB and its successor edges to sinkMBB.
14032 sinkMBB->splice(sinkMBB->begin(), MBB,
14033 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14034 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14035
14036 // thisMBB:
14037 // xbegin sinkMBB
14038 // # fallthrough to mainMBB
14039 // # abortion to sinkMBB
14040 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14041 thisMBB->addSuccessor(mainMBB);
14042 thisMBB->addSuccessor(sinkMBB);
14043
14044 // mainMBB:
14045 // EAX = -1
14046 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14047 mainMBB->addSuccessor(sinkMBB);
14048
14049 // sinkMBB:
14050 // EAX is live into the sinkMBB
14051 sinkMBB->addLiveIn(X86::EAX);
14052 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14053 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14054 .addReg(X86::EAX);
14055
14056 MI->eraseFromParent();
14057 return sinkMBB;
14058}
14059
Michael Liaob118a072012-09-20 03:06:15 +000014060// Get CMPXCHG opcode for the specified data type.
14061static unsigned getCmpXChgOpcode(EVT VT) {
14062 switch (VT.getSimpleVT().SimpleTy) {
14063 case MVT::i8: return X86::LCMPXCHG8;
14064 case MVT::i16: return X86::LCMPXCHG16;
14065 case MVT::i32: return X86::LCMPXCHG32;
14066 case MVT::i64: return X86::LCMPXCHG64;
14067 default:
14068 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014069 }
Michael Liaob118a072012-09-20 03:06:15 +000014070 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014071}
14072
Michael Liaob118a072012-09-20 03:06:15 +000014073// Get LOAD opcode for the specified data type.
14074static unsigned getLoadOpcode(EVT VT) {
14075 switch (VT.getSimpleVT().SimpleTy) {
14076 case MVT::i8: return X86::MOV8rm;
14077 case MVT::i16: return X86::MOV16rm;
14078 case MVT::i32: return X86::MOV32rm;
14079 case MVT::i64: return X86::MOV64rm;
14080 default:
14081 break;
14082 }
14083 llvm_unreachable("Invalid operand size!");
14084}
14085
14086// Get opcode of the non-atomic one from the specified atomic instruction.
14087static unsigned getNonAtomicOpcode(unsigned Opc) {
14088 switch (Opc) {
14089 case X86::ATOMAND8: return X86::AND8rr;
14090 case X86::ATOMAND16: return X86::AND16rr;
14091 case X86::ATOMAND32: return X86::AND32rr;
14092 case X86::ATOMAND64: return X86::AND64rr;
14093 case X86::ATOMOR8: return X86::OR8rr;
14094 case X86::ATOMOR16: return X86::OR16rr;
14095 case X86::ATOMOR32: return X86::OR32rr;
14096 case X86::ATOMOR64: return X86::OR64rr;
14097 case X86::ATOMXOR8: return X86::XOR8rr;
14098 case X86::ATOMXOR16: return X86::XOR16rr;
14099 case X86::ATOMXOR32: return X86::XOR32rr;
14100 case X86::ATOMXOR64: return X86::XOR64rr;
14101 }
14102 llvm_unreachable("Unhandled atomic-load-op opcode!");
14103}
14104
14105// Get opcode of the non-atomic one from the specified atomic instruction with
14106// extra opcode.
14107static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14108 unsigned &ExtraOpc) {
14109 switch (Opc) {
14110 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14111 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14112 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14113 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014114 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014115 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14116 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14117 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014118 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014119 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14120 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14121 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014122 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014123 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14124 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14125 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014126 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014127 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14128 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14129 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14130 }
14131 llvm_unreachable("Unhandled atomic-load-op opcode!");
14132}
14133
14134// Get opcode of the non-atomic one from the specified atomic instruction for
14135// 64-bit data type on 32-bit target.
14136static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14137 switch (Opc) {
14138 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14139 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14140 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14141 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14142 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14143 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014144 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14145 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14146 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14147 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014148 }
14149 llvm_unreachable("Unhandled atomic-load-op opcode!");
14150}
14151
14152// Get opcode of the non-atomic one from the specified atomic instruction for
14153// 64-bit data type on 32-bit target with extra opcode.
14154static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14155 unsigned &HiOpc,
14156 unsigned &ExtraOpc) {
14157 switch (Opc) {
14158 case X86::ATOMNAND6432:
14159 ExtraOpc = X86::NOT32r;
14160 HiOpc = X86::AND32rr;
14161 return X86::AND32rr;
14162 }
14163 llvm_unreachable("Unhandled atomic-load-op opcode!");
14164}
14165
14166// Get pseudo CMOV opcode from the specified data type.
14167static unsigned getPseudoCMOVOpc(EVT VT) {
14168 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014169 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014170 case MVT::i16: return X86::CMOV_GR16;
14171 case MVT::i32: return X86::CMOV_GR32;
14172 default:
14173 break;
14174 }
14175 llvm_unreachable("Unknown CMOV opcode!");
14176}
14177
14178// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14179// They will be translated into a spin-loop or compare-exchange loop from
14180//
14181// ...
14182// dst = atomic-fetch-op MI.addr, MI.val
14183// ...
14184//
14185// to
14186//
14187// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014188// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014189// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014190// t4 = phi(t1, t3 / loop)
14191// t2 = OP MI.val, t4
14192// EAX = t4
14193// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14194// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014195// JNE loop
14196// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014197// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014198// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014199MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014200X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14201 MachineBasicBlock *MBB) const {
14202 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14203 DebugLoc DL = MI->getDebugLoc();
14204
14205 MachineFunction *MF = MBB->getParent();
14206 MachineRegisterInfo &MRI = MF->getRegInfo();
14207
14208 const BasicBlock *BB = MBB->getBasicBlock();
14209 MachineFunction::iterator I = MBB;
14210 ++I;
14211
Michael Liao13d08bf2013-01-22 21:47:38 +000014212 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014213 "Unexpected number of operands");
14214
14215 assert(MI->hasOneMemOperand() &&
14216 "Expected atomic-load-op to have one memoperand");
14217
14218 // Memory Reference
14219 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14220 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14221
14222 unsigned DstReg, SrcReg;
14223 unsigned MemOpndSlot;
14224
14225 unsigned CurOp = 0;
14226
14227 DstReg = MI->getOperand(CurOp++).getReg();
14228 MemOpndSlot = CurOp;
14229 CurOp += X86::AddrNumOperands;
14230 SrcReg = MI->getOperand(CurOp++).getReg();
14231
14232 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014233 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014234 unsigned t1 = MRI.createVirtualRegister(RC);
14235 unsigned t2 = MRI.createVirtualRegister(RC);
14236 unsigned t3 = MRI.createVirtualRegister(RC);
14237 unsigned t4 = MRI.createVirtualRegister(RC);
14238 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014239
14240 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14241 unsigned LOADOpc = getLoadOpcode(VT);
14242
14243 // For the atomic load-arith operator, we generate
14244 //
14245 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014246 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014247 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014248 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014249 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014250 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014251 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014252 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014253 // JNE mainMBB
14254 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014255 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014256
14257 MachineBasicBlock *thisMBB = MBB;
14258 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14259 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14260 MF->insert(I, mainMBB);
14261 MF->insert(I, sinkMBB);
14262
14263 MachineInstrBuilder MIB;
14264
14265 // Transfer the remainder of BB and its successor edges to sinkMBB.
14266 sinkMBB->splice(sinkMBB->begin(), MBB,
14267 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14268 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14269
14270 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014271 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14272 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14273 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14274 if (NewMO.isReg())
14275 NewMO.setIsKill(false);
14276 MIB.addOperand(NewMO);
14277 }
14278 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14279 unsigned flags = (*MMOI)->getFlags();
14280 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14281 MachineMemOperand *MMO =
14282 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14283 (*MMOI)->getSize(),
14284 (*MMOI)->getBaseAlignment(),
14285 (*MMOI)->getTBAAInfo(),
14286 (*MMOI)->getRanges());
14287 MIB.addMemOperand(MMO);
14288 }
Michael Liaob118a072012-09-20 03:06:15 +000014289
14290 thisMBB->addSuccessor(mainMBB);
14291
14292 // mainMBB:
14293 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014294
Michael Liaoc537f792013-03-06 00:17:04 +000014295 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014296 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14297 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014298
Michael Liaob118a072012-09-20 03:06:15 +000014299 unsigned Opc = MI->getOpcode();
14300 switch (Opc) {
14301 default:
14302 llvm_unreachable("Unhandled atomic-load-op opcode!");
14303 case X86::ATOMAND8:
14304 case X86::ATOMAND16:
14305 case X86::ATOMAND32:
14306 case X86::ATOMAND64:
14307 case X86::ATOMOR8:
14308 case X86::ATOMOR16:
14309 case X86::ATOMOR32:
14310 case X86::ATOMOR64:
14311 case X86::ATOMXOR8:
14312 case X86::ATOMXOR16:
14313 case X86::ATOMXOR32:
14314 case X86::ATOMXOR64: {
14315 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014316 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14317 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014318 break;
14319 }
14320 case X86::ATOMNAND8:
14321 case X86::ATOMNAND16:
14322 case X86::ATOMNAND32:
14323 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014324 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014325 unsigned NOTOpc;
14326 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014327 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14328 .addReg(t4);
14329 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014330 break;
14331 }
Michael Liao08382492012-09-21 03:00:17 +000014332 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014333 case X86::ATOMMAX16:
14334 case X86::ATOMMAX32:
14335 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014336 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014337 case X86::ATOMMIN16:
14338 case X86::ATOMMIN32:
14339 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014340 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014341 case X86::ATOMUMAX16:
14342 case X86::ATOMUMAX32:
14343 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014344 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014345 case X86::ATOMUMIN16:
14346 case X86::ATOMUMIN32:
14347 case X86::ATOMUMIN64: {
14348 unsigned CMPOpc;
14349 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14350
14351 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14352 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014353 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014354
14355 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014356 if (VT != MVT::i8) {
14357 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014358 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014359 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014360 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014361 } else {
14362 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014363 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14364 const TargetRegisterClass *RC32 =
14365 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014366 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14367 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014368 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014369
14370 unsigned Undef = MRI.createVirtualRegister(RC32);
14371 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14372
14373 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14374 .addReg(Undef)
14375 .addReg(SrcReg)
14376 .addImm(X86::sub_8bit);
14377 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14378 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014379 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014380 .addImm(X86::sub_8bit);
14381
Michael Liaoc537f792013-03-06 00:17:04 +000014382 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014383 .addReg(SrcReg32)
14384 .addReg(AccReg32);
14385
Michael Liaoc537f792013-03-06 00:17:04 +000014386 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14387 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014388 }
Michael Liaob118a072012-09-20 03:06:15 +000014389 } else {
14390 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014391 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014392 "Invalid atomic-load-op transformation!");
14393 unsigned SelOpc = getPseudoCMOVOpc(VT);
14394 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14395 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014396 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14397 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014398 .addImm(CC);
14399 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014400 // Replace the original PHI node as mainMBB is changed after CMOV
14401 // lowering.
14402 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14403 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14404 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014405 }
14406 break;
14407 }
14408 }
14409
Michael Liaoc537f792013-03-06 00:17:04 +000014410 // Copy PhyReg back from virtual register.
14411 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14412 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014413
14414 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014415 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14416 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14417 if (NewMO.isReg())
14418 NewMO.setIsKill(false);
14419 MIB.addOperand(NewMO);
14420 }
14421 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014422 MIB.setMemRefs(MMOBegin, MMOEnd);
14423
Michael Liaoc537f792013-03-06 00:17:04 +000014424 // Copy PhyReg back to virtual register.
14425 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14426 .addReg(PhyReg);
14427
Michael Liaob118a072012-09-20 03:06:15 +000014428 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14429
14430 mainMBB->addSuccessor(origMainMBB);
14431 mainMBB->addSuccessor(sinkMBB);
14432
14433 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014434 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14435 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014436 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014437
14438 MI->eraseFromParent();
14439 return sinkMBB;
14440}
14441
14442// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14443// instructions. They will be translated into a spin-loop or compare-exchange
14444// loop from
14445//
14446// ...
14447// dst = atomic-fetch-op MI.addr, MI.val
14448// ...
14449//
14450// to
14451//
14452// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014453// t1L = LOAD [MI.addr + 0]
14454// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014455// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014456// t4L = phi(t1L, t3L / loop)
14457// t4H = phi(t1H, t3H / loop)
14458// t2L = OP MI.val.lo, t4L
14459// t2H = OP MI.val.hi, t4H
14460// EAX = t4L
14461// EDX = t4H
14462// EBX = t2L
14463// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014464// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014465// t3L = EAX
14466// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014467// JNE loop
14468// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014469// dstL = t3L
14470// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014471// ...
14472MachineBasicBlock *
14473X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14474 MachineBasicBlock *MBB) const {
14475 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14476 DebugLoc DL = MI->getDebugLoc();
14477
14478 MachineFunction *MF = MBB->getParent();
14479 MachineRegisterInfo &MRI = MF->getRegInfo();
14480
14481 const BasicBlock *BB = MBB->getBasicBlock();
14482 MachineFunction::iterator I = MBB;
14483 ++I;
14484
Michael Liao13d08bf2013-01-22 21:47:38 +000014485 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014486 "Unexpected number of operands");
14487
14488 assert(MI->hasOneMemOperand() &&
14489 "Expected atomic-load-op32 to have one memoperand");
14490
14491 // Memory Reference
14492 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14493 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14494
14495 unsigned DstLoReg, DstHiReg;
14496 unsigned SrcLoReg, SrcHiReg;
14497 unsigned MemOpndSlot;
14498
14499 unsigned CurOp = 0;
14500
14501 DstLoReg = MI->getOperand(CurOp++).getReg();
14502 DstHiReg = MI->getOperand(CurOp++).getReg();
14503 MemOpndSlot = CurOp;
14504 CurOp += X86::AddrNumOperands;
14505 SrcLoReg = MI->getOperand(CurOp++).getReg();
14506 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014507
Craig Topperc9099502012-04-20 06:31:50 +000014508 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014509 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014510
Michael Liaoc537f792013-03-06 00:17:04 +000014511 unsigned t1L = MRI.createVirtualRegister(RC);
14512 unsigned t1H = MRI.createVirtualRegister(RC);
14513 unsigned t2L = MRI.createVirtualRegister(RC);
14514 unsigned t2H = MRI.createVirtualRegister(RC);
14515 unsigned t3L = MRI.createVirtualRegister(RC);
14516 unsigned t3H = MRI.createVirtualRegister(RC);
14517 unsigned t4L = MRI.createVirtualRegister(RC);
14518 unsigned t4H = MRI.createVirtualRegister(RC);
14519
Michael Liaob118a072012-09-20 03:06:15 +000014520 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14521 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014522
Michael Liaob118a072012-09-20 03:06:15 +000014523 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014524 //
Michael Liaob118a072012-09-20 03:06:15 +000014525 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014526 // t1L = LOAD [MI.addr + 0]
14527 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014528 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014529 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14530 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14531 // t2L = OP MI.val.lo, t4L
14532 // t2H = OP MI.val.hi, t4H
14533 // EBX = t2L
14534 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014535 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014536 // t3L = EAX
14537 // t3H = EDX
14538 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014539 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014540 // dstL = t3L
14541 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014542
Mon P Wang63307c32008-05-05 19:05:59 +000014543 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014544 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14545 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14546 MF->insert(I, mainMBB);
14547 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014548
Michael Liaob118a072012-09-20 03:06:15 +000014549 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014550
Michael Liaob118a072012-09-20 03:06:15 +000014551 // Transfer the remainder of BB and its successor edges to sinkMBB.
14552 sinkMBB->splice(sinkMBB->begin(), MBB,
14553 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14554 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014555
Michael Liaob118a072012-09-20 03:06:15 +000014556 // thisMBB:
14557 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014558 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014559 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014560 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14561 if (NewMO.isReg())
14562 NewMO.setIsKill(false);
14563 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014564 }
Michael Liaoc537f792013-03-06 00:17:04 +000014565 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14566 unsigned flags = (*MMOI)->getFlags();
14567 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14568 MachineMemOperand *MMO =
14569 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14570 (*MMOI)->getSize(),
14571 (*MMOI)->getBaseAlignment(),
14572 (*MMOI)->getTBAAInfo(),
14573 (*MMOI)->getRanges());
14574 MIB.addMemOperand(MMO);
14575 };
14576 MachineInstr *LowMI = MIB;
14577
14578 // Hi
14579 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14580 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14581 if (i == X86::AddrDisp) {
14582 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14583 } else {
14584 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14585 if (NewMO.isReg())
14586 NewMO.setIsKill(false);
14587 MIB.addOperand(NewMO);
14588 }
14589 }
14590 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014591
Michael Liaob118a072012-09-20 03:06:15 +000014592 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014593
Michael Liaob118a072012-09-20 03:06:15 +000014594 // mainMBB:
14595 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014596
Michael Liaoc537f792013-03-06 00:17:04 +000014597 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014598 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14599 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14600 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14601 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014602
Michael Liaob118a072012-09-20 03:06:15 +000014603 unsigned Opc = MI->getOpcode();
14604 switch (Opc) {
14605 default:
14606 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14607 case X86::ATOMAND6432:
14608 case X86::ATOMOR6432:
14609 case X86::ATOMXOR6432:
14610 case X86::ATOMADD6432:
14611 case X86::ATOMSUB6432: {
14612 unsigned HiOpc;
14613 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014614 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14615 .addReg(SrcLoReg);
14616 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14617 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014618 break;
14619 }
14620 case X86::ATOMNAND6432: {
14621 unsigned HiOpc, NOTOpc;
14622 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014623 unsigned TmpL = MRI.createVirtualRegister(RC);
14624 unsigned TmpH = MRI.createVirtualRegister(RC);
14625 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14626 .addReg(t4L);
14627 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14628 .addReg(t4H);
14629 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14630 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014631 break;
14632 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014633 case X86::ATOMMAX6432:
14634 case X86::ATOMMIN6432:
14635 case X86::ATOMUMAX6432:
14636 case X86::ATOMUMIN6432: {
14637 unsigned HiOpc;
14638 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14639 unsigned cL = MRI.createVirtualRegister(RC8);
14640 unsigned cH = MRI.createVirtualRegister(RC8);
14641 unsigned cL32 = MRI.createVirtualRegister(RC);
14642 unsigned cH32 = MRI.createVirtualRegister(RC);
14643 unsigned cc = MRI.createVirtualRegister(RC);
14644 // cl := cmp src_lo, lo
14645 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014646 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014647 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14648 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14649 // ch := cmp src_hi, hi
14650 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014651 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014652 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14653 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14654 // cc := if (src_hi == hi) ? cl : ch;
14655 if (Subtarget->hasCMov()) {
14656 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14657 .addReg(cH32).addReg(cL32);
14658 } else {
14659 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14660 .addReg(cH32).addReg(cL32)
14661 .addImm(X86::COND_E);
14662 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14663 }
14664 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14665 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014666 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14667 .addReg(SrcLoReg).addReg(t4L);
14668 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14669 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014670 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014671 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14672 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014673 .addImm(X86::COND_NE);
14674 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014675 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14676 // 2nd CMOV lowering.
14677 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014678 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14679 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014680 .addImm(X86::COND_NE);
14681 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014682 // Replace the original PHI node as mainMBB is changed after CMOV
14683 // lowering.
14684 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14685 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14686 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14687 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14688 PhiL->eraseFromParent();
14689 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014690 }
14691 break;
14692 }
Michael Liaob118a072012-09-20 03:06:15 +000014693 case X86::ATOMSWAP6432: {
14694 unsigned HiOpc;
14695 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014696 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14697 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014698 break;
14699 }
14700 }
Mon P Wang63307c32008-05-05 19:05:59 +000014701
Michael Liaob118a072012-09-20 03:06:15 +000014702 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014703 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14704 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014705 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014706 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14707 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014708
Michael Liaob118a072012-09-20 03:06:15 +000014709 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014710 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14711 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14712 if (NewMO.isReg())
14713 NewMO.setIsKill(false);
14714 MIB.addOperand(NewMO);
14715 }
Michael Liaob118a072012-09-20 03:06:15 +000014716 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014717
Michael Liaoc537f792013-03-06 00:17:04 +000014718 // Copy EDX:EAX back to t3H:t3L
14719 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14720 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14721
Michael Liaob118a072012-09-20 03:06:15 +000014722 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014723
Michael Liaob118a072012-09-20 03:06:15 +000014724 mainMBB->addSuccessor(origMainMBB);
14725 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014726
Michael Liaob118a072012-09-20 03:06:15 +000014727 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014728 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14729 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014730 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014731 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14732 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014733 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014734
Michael Liaob118a072012-09-20 03:06:15 +000014735 MI->eraseFromParent();
14736 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014737}
14738
Eric Christopherf83a5de2009-08-27 18:08:16 +000014739// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014740// or XMM0_V32I8 in AVX all of this code can be replaced with that
14741// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014742static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14743 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014744 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014745 switch (MI->getOpcode()) {
14746 default: llvm_unreachable("illegal opcode!");
14747 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14748 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14749 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14750 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14751 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14752 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14753 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14754 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014755 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014756
Craig Topper8aae8dd2012-11-10 08:57:41 +000014757 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014758 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014759
Craig Topper52ea2452012-11-10 09:25:36 +000014760 unsigned NumArgs = MI->getNumOperands();
14761 for (unsigned i = 1; i < NumArgs; ++i) {
14762 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014763 if (!(Op.isReg() && Op.isImplicit()))
14764 MIB.addOperand(Op);
14765 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014766 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014767 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14768
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014769 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014770 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014771 .addReg(X86::XMM0);
14772
Dan Gohman14152b42010-07-06 20:24:04 +000014773 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014774 return BB;
14775}
14776
Craig Topper9c7ae012012-11-10 01:23:36 +000014777// FIXME: Custom handling because TableGen doesn't support multiple implicit
14778// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014779static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14780 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014781 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014782 switch (MI->getOpcode()) {
14783 default: llvm_unreachable("illegal opcode!");
14784 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14785 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14786 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14787 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14788 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14789 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14790 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14791 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014792 }
14793
Craig Topper8aae8dd2012-11-10 08:57:41 +000014794 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014795 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014796
Craig Topper52ea2452012-11-10 09:25:36 +000014797 unsigned NumArgs = MI->getNumOperands(); // remove the results
14798 for (unsigned i = 1; i < NumArgs; ++i) {
14799 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014800 if (!(Op.isReg() && Op.isImplicit()))
14801 MIB.addOperand(Op);
14802 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014803 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014804 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14805
14806 BuildMI(*BB, MI, dl,
14807 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14808 .addReg(X86::ECX);
14809
14810 MI->eraseFromParent();
14811 return BB;
14812}
14813
Craig Topper2da36912012-11-11 22:45:02 +000014814static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14815 const TargetInstrInfo *TII,
14816 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014817 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014818
Eric Christopher228232b2010-11-30 07:20:12 +000014819 // Address into RAX/EAX, other two args into ECX, EDX.
14820 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14821 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14822 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14823 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014824 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014825
Eric Christopher228232b2010-11-30 07:20:12 +000014826 unsigned ValOps = X86::AddrNumOperands;
14827 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14828 .addReg(MI->getOperand(ValOps).getReg());
14829 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14830 .addReg(MI->getOperand(ValOps+1).getReg());
14831
14832 // The instruction doesn't actually take any operands though.
14833 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014834
Eric Christopher228232b2010-11-30 07:20:12 +000014835 MI->eraseFromParent(); // The pseudo is gone now.
14836 return BB;
14837}
14838
14839MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014840X86TargetLowering::EmitVAARG64WithCustomInserter(
14841 MachineInstr *MI,
14842 MachineBasicBlock *MBB) const {
14843 // Emit va_arg instruction on X86-64.
14844
14845 // Operands to this pseudo-instruction:
14846 // 0 ) Output : destination address (reg)
14847 // 1-5) Input : va_list address (addr, i64mem)
14848 // 6 ) ArgSize : Size (in bytes) of vararg type
14849 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14850 // 8 ) Align : Alignment of type
14851 // 9 ) EFLAGS (implicit-def)
14852
14853 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14854 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14855
14856 unsigned DestReg = MI->getOperand(0).getReg();
14857 MachineOperand &Base = MI->getOperand(1);
14858 MachineOperand &Scale = MI->getOperand(2);
14859 MachineOperand &Index = MI->getOperand(3);
14860 MachineOperand &Disp = MI->getOperand(4);
14861 MachineOperand &Segment = MI->getOperand(5);
14862 unsigned ArgSize = MI->getOperand(6).getImm();
14863 unsigned ArgMode = MI->getOperand(7).getImm();
14864 unsigned Align = MI->getOperand(8).getImm();
14865
14866 // Memory Reference
14867 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14868 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14869 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14870
14871 // Machine Information
14872 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14873 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14874 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14875 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14876 DebugLoc DL = MI->getDebugLoc();
14877
14878 // struct va_list {
14879 // i32 gp_offset
14880 // i32 fp_offset
14881 // i64 overflow_area (address)
14882 // i64 reg_save_area (address)
14883 // }
14884 // sizeof(va_list) = 24
14885 // alignment(va_list) = 8
14886
14887 unsigned TotalNumIntRegs = 6;
14888 unsigned TotalNumXMMRegs = 8;
14889 bool UseGPOffset = (ArgMode == 1);
14890 bool UseFPOffset = (ArgMode == 2);
14891 unsigned MaxOffset = TotalNumIntRegs * 8 +
14892 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14893
14894 /* Align ArgSize to a multiple of 8 */
14895 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14896 bool NeedsAlign = (Align > 8);
14897
14898 MachineBasicBlock *thisMBB = MBB;
14899 MachineBasicBlock *overflowMBB;
14900 MachineBasicBlock *offsetMBB;
14901 MachineBasicBlock *endMBB;
14902
14903 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14904 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14905 unsigned OffsetReg = 0;
14906
14907 if (!UseGPOffset && !UseFPOffset) {
14908 // If we only pull from the overflow region, we don't create a branch.
14909 // We don't need to alter control flow.
14910 OffsetDestReg = 0; // unused
14911 OverflowDestReg = DestReg;
14912
14913 offsetMBB = NULL;
14914 overflowMBB = thisMBB;
14915 endMBB = thisMBB;
14916 } else {
14917 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14918 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14919 // If not, pull from overflow_area. (branch to overflowMBB)
14920 //
14921 // thisMBB
14922 // | .
14923 // | .
14924 // offsetMBB overflowMBB
14925 // | .
14926 // | .
14927 // endMBB
14928
14929 // Registers for the PHI in endMBB
14930 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14931 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14932
14933 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14934 MachineFunction *MF = MBB->getParent();
14935 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14936 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14937 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14938
14939 MachineFunction::iterator MBBIter = MBB;
14940 ++MBBIter;
14941
14942 // Insert the new basic blocks
14943 MF->insert(MBBIter, offsetMBB);
14944 MF->insert(MBBIter, overflowMBB);
14945 MF->insert(MBBIter, endMBB);
14946
14947 // Transfer the remainder of MBB and its successor edges to endMBB.
14948 endMBB->splice(endMBB->begin(), thisMBB,
14949 llvm::next(MachineBasicBlock::iterator(MI)),
14950 thisMBB->end());
14951 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14952
14953 // Make offsetMBB and overflowMBB successors of thisMBB
14954 thisMBB->addSuccessor(offsetMBB);
14955 thisMBB->addSuccessor(overflowMBB);
14956
14957 // endMBB is a successor of both offsetMBB and overflowMBB
14958 offsetMBB->addSuccessor(endMBB);
14959 overflowMBB->addSuccessor(endMBB);
14960
14961 // Load the offset value into a register
14962 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14963 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14964 .addOperand(Base)
14965 .addOperand(Scale)
14966 .addOperand(Index)
14967 .addDisp(Disp, UseFPOffset ? 4 : 0)
14968 .addOperand(Segment)
14969 .setMemRefs(MMOBegin, MMOEnd);
14970
14971 // Check if there is enough room left to pull this argument.
14972 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14973 .addReg(OffsetReg)
14974 .addImm(MaxOffset + 8 - ArgSizeA8);
14975
14976 // Branch to "overflowMBB" if offset >= max
14977 // Fall through to "offsetMBB" otherwise
14978 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14979 .addMBB(overflowMBB);
14980 }
14981
14982 // In offsetMBB, emit code to use the reg_save_area.
14983 if (offsetMBB) {
14984 assert(OffsetReg != 0);
14985
14986 // Read the reg_save_area address.
14987 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14988 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14989 .addOperand(Base)
14990 .addOperand(Scale)
14991 .addOperand(Index)
14992 .addDisp(Disp, 16)
14993 .addOperand(Segment)
14994 .setMemRefs(MMOBegin, MMOEnd);
14995
14996 // Zero-extend the offset
14997 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14998 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14999 .addImm(0)
15000 .addReg(OffsetReg)
15001 .addImm(X86::sub_32bit);
15002
15003 // Add the offset to the reg_save_area to get the final address.
15004 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15005 .addReg(OffsetReg64)
15006 .addReg(RegSaveReg);
15007
15008 // Compute the offset for the next argument
15009 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15010 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15011 .addReg(OffsetReg)
15012 .addImm(UseFPOffset ? 16 : 8);
15013
15014 // Store it back into the va_list.
15015 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15016 .addOperand(Base)
15017 .addOperand(Scale)
15018 .addOperand(Index)
15019 .addDisp(Disp, UseFPOffset ? 4 : 0)
15020 .addOperand(Segment)
15021 .addReg(NextOffsetReg)
15022 .setMemRefs(MMOBegin, MMOEnd);
15023
15024 // Jump to endMBB
15025 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15026 .addMBB(endMBB);
15027 }
15028
15029 //
15030 // Emit code to use overflow area
15031 //
15032
15033 // Load the overflow_area address into a register.
15034 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15035 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15036 .addOperand(Base)
15037 .addOperand(Scale)
15038 .addOperand(Index)
15039 .addDisp(Disp, 8)
15040 .addOperand(Segment)
15041 .setMemRefs(MMOBegin, MMOEnd);
15042
15043 // If we need to align it, do so. Otherwise, just copy the address
15044 // to OverflowDestReg.
15045 if (NeedsAlign) {
15046 // Align the overflow address
15047 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15048 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15049
15050 // aligned_addr = (addr + (align-1)) & ~(align-1)
15051 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15052 .addReg(OverflowAddrReg)
15053 .addImm(Align-1);
15054
15055 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15056 .addReg(TmpReg)
15057 .addImm(~(uint64_t)(Align-1));
15058 } else {
15059 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15060 .addReg(OverflowAddrReg);
15061 }
15062
15063 // Compute the next overflow address after this argument.
15064 // (the overflow address should be kept 8-byte aligned)
15065 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15066 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15067 .addReg(OverflowDestReg)
15068 .addImm(ArgSizeA8);
15069
15070 // Store the new overflow address.
15071 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15072 .addOperand(Base)
15073 .addOperand(Scale)
15074 .addOperand(Index)
15075 .addDisp(Disp, 8)
15076 .addOperand(Segment)
15077 .addReg(NextAddrReg)
15078 .setMemRefs(MMOBegin, MMOEnd);
15079
15080 // If we branched, emit the PHI to the front of endMBB.
15081 if (offsetMBB) {
15082 BuildMI(*endMBB, endMBB->begin(), DL,
15083 TII->get(X86::PHI), DestReg)
15084 .addReg(OffsetDestReg).addMBB(offsetMBB)
15085 .addReg(OverflowDestReg).addMBB(overflowMBB);
15086 }
15087
15088 // Erase the pseudo instruction
15089 MI->eraseFromParent();
15090
15091 return endMBB;
15092}
15093
15094MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015095X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15096 MachineInstr *MI,
15097 MachineBasicBlock *MBB) const {
15098 // Emit code to save XMM registers to the stack. The ABI says that the
15099 // number of registers to save is given in %al, so it's theoretically
15100 // possible to do an indirect jump trick to avoid saving all of them,
15101 // however this code takes a simpler approach and just executes all
15102 // of the stores if %al is non-zero. It's less code, and it's probably
15103 // easier on the hardware branch predictor, and stores aren't all that
15104 // expensive anyway.
15105
15106 // Create the new basic blocks. One block contains all the XMM stores,
15107 // and one block is the final destination regardless of whether any
15108 // stores were performed.
15109 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15110 MachineFunction *F = MBB->getParent();
15111 MachineFunction::iterator MBBIter = MBB;
15112 ++MBBIter;
15113 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15114 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15115 F->insert(MBBIter, XMMSaveMBB);
15116 F->insert(MBBIter, EndMBB);
15117
Dan Gohman14152b42010-07-06 20:24:04 +000015118 // Transfer the remainder of MBB and its successor edges to EndMBB.
15119 EndMBB->splice(EndMBB->begin(), MBB,
15120 llvm::next(MachineBasicBlock::iterator(MI)),
15121 MBB->end());
15122 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15123
Dan Gohmand6708ea2009-08-15 01:38:56 +000015124 // The original block will now fall through to the XMM save block.
15125 MBB->addSuccessor(XMMSaveMBB);
15126 // The XMMSaveMBB will fall through to the end block.
15127 XMMSaveMBB->addSuccessor(EndMBB);
15128
15129 // Now add the instructions.
15130 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15131 DebugLoc DL = MI->getDebugLoc();
15132
15133 unsigned CountReg = MI->getOperand(0).getReg();
15134 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15135 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15136
15137 if (!Subtarget->isTargetWin64()) {
15138 // If %al is 0, branch around the XMM save block.
15139 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015140 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015141 MBB->addSuccessor(EndMBB);
15142 }
15143
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015144 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015145 // In the XMM save block, save all the XMM argument registers.
15146 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15147 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015148 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015149 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015150 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015151 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015152 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015153 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015154 .addFrameIndex(RegSaveFrameIndex)
15155 .addImm(/*Scale=*/1)
15156 .addReg(/*IndexReg=*/0)
15157 .addImm(/*Disp=*/Offset)
15158 .addReg(/*Segment=*/0)
15159 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015160 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015161 }
15162
Dan Gohman14152b42010-07-06 20:24:04 +000015163 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015164
15165 return EndMBB;
15166}
Mon P Wang63307c32008-05-05 19:05:59 +000015167
Lang Hames6e3f7e42012-02-03 01:13:49 +000015168// The EFLAGS operand of SelectItr might be missing a kill marker
15169// because there were multiple uses of EFLAGS, and ISel didn't know
15170// which to mark. Figure out whether SelectItr should have had a
15171// kill marker, and set it if it should. Returns the correct kill
15172// marker value.
15173static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15174 MachineBasicBlock* BB,
15175 const TargetRegisterInfo* TRI) {
15176 // Scan forward through BB for a use/def of EFLAGS.
15177 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15178 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015179 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015180 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015181 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015182 if (mi.definesRegister(X86::EFLAGS))
15183 break; // Should have kill-flag - update below.
15184 }
15185
15186 // If we hit the end of the block, check whether EFLAGS is live into a
15187 // successor.
15188 if (miI == BB->end()) {
15189 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15190 sEnd = BB->succ_end();
15191 sItr != sEnd; ++sItr) {
15192 MachineBasicBlock* succ = *sItr;
15193 if (succ->isLiveIn(X86::EFLAGS))
15194 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015195 }
15196 }
15197
Lang Hames6e3f7e42012-02-03 01:13:49 +000015198 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15199 // out. SelectMI should have a kill flag on EFLAGS.
15200 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015201 return true;
15202}
15203
Evan Cheng60c07e12006-07-05 22:17:51 +000015204MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015205X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015206 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015207 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15208 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015209
Chris Lattner52600972009-09-02 05:57:00 +000015210 // To "insert" a SELECT_CC instruction, we actually have to insert the
15211 // diamond control-flow pattern. The incoming instruction knows the
15212 // destination vreg to set, the condition code register to branch on, the
15213 // true/false values to select between, and a branch opcode to use.
15214 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15215 MachineFunction::iterator It = BB;
15216 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015217
Chris Lattner52600972009-09-02 05:57:00 +000015218 // thisMBB:
15219 // ...
15220 // TrueVal = ...
15221 // cmpTY ccX, r1, r2
15222 // bCC copy1MBB
15223 // fallthrough --> copy0MBB
15224 MachineBasicBlock *thisMBB = BB;
15225 MachineFunction *F = BB->getParent();
15226 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15227 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015228 F->insert(It, copy0MBB);
15229 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015230
Bill Wendling730c07e2010-06-25 20:48:10 +000015231 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15232 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015233 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15234 if (!MI->killsRegister(X86::EFLAGS) &&
15235 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15236 copy0MBB->addLiveIn(X86::EFLAGS);
15237 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015238 }
15239
Dan Gohman14152b42010-07-06 20:24:04 +000015240 // Transfer the remainder of BB and its successor edges to sinkMBB.
15241 sinkMBB->splice(sinkMBB->begin(), BB,
15242 llvm::next(MachineBasicBlock::iterator(MI)),
15243 BB->end());
15244 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15245
15246 // Add the true and fallthrough blocks as its successors.
15247 BB->addSuccessor(copy0MBB);
15248 BB->addSuccessor(sinkMBB);
15249
15250 // Create the conditional branch instruction.
15251 unsigned Opc =
15252 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15253 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15254
Chris Lattner52600972009-09-02 05:57:00 +000015255 // copy0MBB:
15256 // %FalseValue = ...
15257 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015258 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015259
Chris Lattner52600972009-09-02 05:57:00 +000015260 // sinkMBB:
15261 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15262 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015263 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15264 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015265 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15266 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15267
Dan Gohman14152b42010-07-06 20:24:04 +000015268 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015269 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015270}
15271
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015272MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015273X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15274 bool Is64Bit) const {
15275 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15276 DebugLoc DL = MI->getDebugLoc();
15277 MachineFunction *MF = BB->getParent();
15278 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15279
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015280 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015281
15282 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15283 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15284
15285 // BB:
15286 // ... [Till the alloca]
15287 // If stacklet is not large enough, jump to mallocMBB
15288 //
15289 // bumpMBB:
15290 // Allocate by subtracting from RSP
15291 // Jump to continueMBB
15292 //
15293 // mallocMBB:
15294 // Allocate by call to runtime
15295 //
15296 // continueMBB:
15297 // ...
15298 // [rest of original BB]
15299 //
15300
15301 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15302 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15303 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15304
15305 MachineRegisterInfo &MRI = MF->getRegInfo();
15306 const TargetRegisterClass *AddrRegClass =
15307 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15308
15309 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15310 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15311 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015312 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015313 sizeVReg = MI->getOperand(1).getReg(),
15314 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15315
15316 MachineFunction::iterator MBBIter = BB;
15317 ++MBBIter;
15318
15319 MF->insert(MBBIter, bumpMBB);
15320 MF->insert(MBBIter, mallocMBB);
15321 MF->insert(MBBIter, continueMBB);
15322
15323 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15324 (MachineBasicBlock::iterator(MI)), BB->end());
15325 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15326
15327 // Add code to the main basic block to check if the stack limit has been hit,
15328 // and if so, jump to mallocMBB otherwise to bumpMBB.
15329 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015330 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015331 .addReg(tmpSPVReg).addReg(sizeVReg);
15332 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015333 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015334 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015335 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15336
15337 // bumpMBB simply decreases the stack pointer, since we know the current
15338 // stacklet has enough space.
15339 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015340 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015341 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015342 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015343 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15344
15345 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015346 const uint32_t *RegMask =
15347 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015348 if (Is64Bit) {
15349 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15350 .addReg(sizeVReg);
15351 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015352 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015353 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015354 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015355 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015356 } else {
15357 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15358 .addImm(12);
15359 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15360 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015361 .addExternalSymbol("__morestack_allocate_stack_space")
15362 .addRegMask(RegMask)
15363 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015364 }
15365
15366 if (!Is64Bit)
15367 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15368 .addImm(16);
15369
15370 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15371 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15372 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15373
15374 // Set up the CFG correctly.
15375 BB->addSuccessor(bumpMBB);
15376 BB->addSuccessor(mallocMBB);
15377 mallocMBB->addSuccessor(continueMBB);
15378 bumpMBB->addSuccessor(continueMBB);
15379
15380 // Take care of the PHI nodes.
15381 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15382 MI->getOperand(0).getReg())
15383 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15384 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15385
15386 // Delete the original pseudo instruction.
15387 MI->eraseFromParent();
15388
15389 // And we're done.
15390 return continueMBB;
15391}
15392
15393MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015394X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015395 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015396 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15397 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015398
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015399 assert(!Subtarget->isTargetEnvMacho());
15400
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015401 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15402 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015403
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015404 if (Subtarget->isTargetWin64()) {
15405 if (Subtarget->isTargetCygMing()) {
15406 // ___chkstk(Mingw64):
15407 // Clobbers R10, R11, RAX and EFLAGS.
15408 // Updates RSP.
15409 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15410 .addExternalSymbol("___chkstk")
15411 .addReg(X86::RAX, RegState::Implicit)
15412 .addReg(X86::RSP, RegState::Implicit)
15413 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15414 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15415 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15416 } else {
15417 // __chkstk(MSVCRT): does not update stack pointer.
15418 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015419 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15420 .addExternalSymbol("__chkstk")
15421 .addReg(X86::RAX, RegState::Implicit)
15422 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015423 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015424 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15425 .addReg(X86::RSP)
15426 .addReg(X86::RAX);
15427 }
15428 } else {
15429 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015430 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15431
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015432 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15433 .addExternalSymbol(StackProbeSymbol)
15434 .addReg(X86::EAX, RegState::Implicit)
15435 .addReg(X86::ESP, RegState::Implicit)
15436 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15437 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15438 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15439 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015440
Dan Gohman14152b42010-07-06 20:24:04 +000015441 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015442 return BB;
15443}
Chris Lattner52600972009-09-02 05:57:00 +000015444
15445MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015446X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15447 MachineBasicBlock *BB) const {
15448 // This is pretty easy. We're taking the value that we received from
15449 // our load from the relocation, sticking it in either RDI (x86-64)
15450 // or EAX and doing an indirect call. The return value will then
15451 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015452 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015453 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015454 DebugLoc DL = MI->getDebugLoc();
15455 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015456
15457 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015458 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015459
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015460 // Get a register mask for the lowered call.
15461 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15462 // proper register mask.
15463 const uint32_t *RegMask =
15464 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015465 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015466 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15467 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015468 .addReg(X86::RIP)
15469 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015470 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015471 MI->getOperand(3).getTargetFlags())
15472 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015473 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015474 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015475 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015476 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015477 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15478 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015479 .addReg(0)
15480 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015481 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015482 MI->getOperand(3).getTargetFlags())
15483 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015484 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015485 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015486 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015487 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015488 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15489 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015490 .addReg(TII->getGlobalBaseReg(F))
15491 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015492 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015493 MI->getOperand(3).getTargetFlags())
15494 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015495 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015496 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015497 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015498 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015499
Dan Gohman14152b42010-07-06 20:24:04 +000015500 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015501 return BB;
15502}
15503
15504MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015505X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15506 MachineBasicBlock *MBB) const {
15507 DebugLoc DL = MI->getDebugLoc();
15508 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15509
15510 MachineFunction *MF = MBB->getParent();
15511 MachineRegisterInfo &MRI = MF->getRegInfo();
15512
15513 const BasicBlock *BB = MBB->getBasicBlock();
15514 MachineFunction::iterator I = MBB;
15515 ++I;
15516
15517 // Memory Reference
15518 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15519 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15520
15521 unsigned DstReg;
15522 unsigned MemOpndSlot = 0;
15523
15524 unsigned CurOp = 0;
15525
15526 DstReg = MI->getOperand(CurOp++).getReg();
15527 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15528 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15529 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15530 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15531
15532 MemOpndSlot = CurOp;
15533
15534 MVT PVT = getPointerTy();
15535 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15536 "Invalid Pointer Size!");
15537
15538 // For v = setjmp(buf), we generate
15539 //
15540 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015541 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015542 // SjLjSetup restoreMBB
15543 //
15544 // mainMBB:
15545 // v_main = 0
15546 //
15547 // sinkMBB:
15548 // v = phi(main, restore)
15549 //
15550 // restoreMBB:
15551 // v_restore = 1
15552
15553 MachineBasicBlock *thisMBB = MBB;
15554 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15555 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15556 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15557 MF->insert(I, mainMBB);
15558 MF->insert(I, sinkMBB);
15559 MF->push_back(restoreMBB);
15560
15561 MachineInstrBuilder MIB;
15562
15563 // Transfer the remainder of BB and its successor edges to sinkMBB.
15564 sinkMBB->splice(sinkMBB->begin(), MBB,
15565 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15566 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15567
15568 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015569 unsigned PtrStoreOpc = 0;
15570 unsigned LabelReg = 0;
15571 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15572 Reloc::Model RM = getTargetMachine().getRelocationModel();
15573 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15574 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015575
Michael Liao281ae5a2012-10-17 02:22:27 +000015576 // Prepare IP either in reg or imm.
15577 if (!UseImmLabel) {
15578 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15579 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15580 LabelReg = MRI.createVirtualRegister(PtrRC);
15581 if (Subtarget->is64Bit()) {
15582 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15583 .addReg(X86::RIP)
15584 .addImm(0)
15585 .addReg(0)
15586 .addMBB(restoreMBB)
15587 .addReg(0);
15588 } else {
15589 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15590 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15591 .addReg(XII->getGlobalBaseReg(MF))
15592 .addImm(0)
15593 .addReg(0)
15594 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15595 .addReg(0);
15596 }
15597 } else
15598 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015599 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015600 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015601 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15602 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015603 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015604 else
15605 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15606 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015607 if (!UseImmLabel)
15608 MIB.addReg(LabelReg);
15609 else
15610 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015611 MIB.setMemRefs(MMOBegin, MMOEnd);
15612 // Setup
15613 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15614 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015615
15616 const X86RegisterInfo *RegInfo =
15617 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015618 MIB.addRegMask(RegInfo->getNoPreservedMask());
15619 thisMBB->addSuccessor(mainMBB);
15620 thisMBB->addSuccessor(restoreMBB);
15621
15622 // mainMBB:
15623 // EAX = 0
15624 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15625 mainMBB->addSuccessor(sinkMBB);
15626
15627 // sinkMBB:
15628 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15629 TII->get(X86::PHI), DstReg)
15630 .addReg(mainDstReg).addMBB(mainMBB)
15631 .addReg(restoreDstReg).addMBB(restoreMBB);
15632
15633 // restoreMBB:
15634 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15635 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15636 restoreMBB->addSuccessor(sinkMBB);
15637
15638 MI->eraseFromParent();
15639 return sinkMBB;
15640}
15641
15642MachineBasicBlock *
15643X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15644 MachineBasicBlock *MBB) const {
15645 DebugLoc DL = MI->getDebugLoc();
15646 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15647
15648 MachineFunction *MF = MBB->getParent();
15649 MachineRegisterInfo &MRI = MF->getRegInfo();
15650
15651 // Memory Reference
15652 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15653 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15654
15655 MVT PVT = getPointerTy();
15656 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15657 "Invalid Pointer Size!");
15658
15659 const TargetRegisterClass *RC =
15660 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15661 unsigned Tmp = MRI.createVirtualRegister(RC);
15662 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015663 const X86RegisterInfo *RegInfo =
15664 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015665 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15666 unsigned SP = RegInfo->getStackRegister();
15667
15668 MachineInstrBuilder MIB;
15669
Michael Liao281ae5a2012-10-17 02:22:27 +000015670 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15671 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015672
15673 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15674 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15675
15676 // Reload FP
15677 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15678 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15679 MIB.addOperand(MI->getOperand(i));
15680 MIB.setMemRefs(MMOBegin, MMOEnd);
15681 // Reload IP
15682 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15683 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15684 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015685 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015686 else
15687 MIB.addOperand(MI->getOperand(i));
15688 }
15689 MIB.setMemRefs(MMOBegin, MMOEnd);
15690 // Reload SP
15691 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15692 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15693 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015694 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015695 else
15696 MIB.addOperand(MI->getOperand(i));
15697 }
15698 MIB.setMemRefs(MMOBegin, MMOEnd);
15699 // Jump
15700 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15701
15702 MI->eraseFromParent();
15703 return MBB;
15704}
15705
15706MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015707X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015708 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015709 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015710 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015711 case X86::TAILJMPd64:
15712 case X86::TAILJMPr64:
15713 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015714 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015715 case X86::TCRETURNdi64:
15716 case X86::TCRETURNri64:
15717 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015718 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015719 case X86::WIN_ALLOCA:
15720 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015721 case X86::SEG_ALLOCA_32:
15722 return EmitLoweredSegAlloca(MI, BB, false);
15723 case X86::SEG_ALLOCA_64:
15724 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015725 case X86::TLSCall_32:
15726 case X86::TLSCall_64:
15727 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015728 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015729 case X86::CMOV_FR32:
15730 case X86::CMOV_FR64:
15731 case X86::CMOV_V4F32:
15732 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015733 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015734 case X86::CMOV_V8F32:
15735 case X86::CMOV_V4F64:
15736 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015737 case X86::CMOV_GR16:
15738 case X86::CMOV_GR32:
15739 case X86::CMOV_RFP32:
15740 case X86::CMOV_RFP64:
15741 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015742 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015743
Dale Johannesen849f2142007-07-03 00:53:03 +000015744 case X86::FP32_TO_INT16_IN_MEM:
15745 case X86::FP32_TO_INT32_IN_MEM:
15746 case X86::FP32_TO_INT64_IN_MEM:
15747 case X86::FP64_TO_INT16_IN_MEM:
15748 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015749 case X86::FP64_TO_INT64_IN_MEM:
15750 case X86::FP80_TO_INT16_IN_MEM:
15751 case X86::FP80_TO_INT32_IN_MEM:
15752 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015753 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15754 DebugLoc DL = MI->getDebugLoc();
15755
Evan Cheng60c07e12006-07-05 22:17:51 +000015756 // Change the floating point control register to use "round towards zero"
15757 // mode when truncating to an integer value.
15758 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015759 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015760 addFrameReference(BuildMI(*BB, MI, DL,
15761 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015762
15763 // Load the old value of the high byte of the control word...
15764 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015765 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015766 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015767 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015768
15769 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015770 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015771 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015772
15773 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015774 addFrameReference(BuildMI(*BB, MI, DL,
15775 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015776
15777 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015778 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015779 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015780
15781 // Get the X86 opcode to use.
15782 unsigned Opc;
15783 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015784 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015785 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15786 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15787 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15788 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15789 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15790 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015791 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15792 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15793 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015794 }
15795
15796 X86AddressMode AM;
15797 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015798 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015799 AM.BaseType = X86AddressMode::RegBase;
15800 AM.Base.Reg = Op.getReg();
15801 } else {
15802 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015803 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015804 }
15805 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015806 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015807 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015808 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015809 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015810 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015811 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015812 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015813 AM.GV = Op.getGlobal();
15814 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015815 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015816 }
Dan Gohman14152b42010-07-06 20:24:04 +000015817 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015818 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015819
15820 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015821 addFrameReference(BuildMI(*BB, MI, DL,
15822 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015823
Dan Gohman14152b42010-07-06 20:24:04 +000015824 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015825 return BB;
15826 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015827 // String/text processing lowering.
15828 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015829 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015830 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015831 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015832 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015833 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015834 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015835 case X86::VPCMPESTRM128MEM:
15836 assert(Subtarget->hasSSE42() &&
15837 "Target must have SSE4.2 or AVX features enabled");
15838 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015839
15840 // String/text processing lowering.
15841 case X86::PCMPISTRIREG:
15842 case X86::VPCMPISTRIREG:
15843 case X86::PCMPISTRIMEM:
15844 case X86::VPCMPISTRIMEM:
15845 case X86::PCMPESTRIREG:
15846 case X86::VPCMPESTRIREG:
15847 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015848 case X86::VPCMPESTRIMEM:
15849 assert(Subtarget->hasSSE42() &&
15850 "Target must have SSE4.2 or AVX features enabled");
15851 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015852
Craig Topper8aae8dd2012-11-10 08:57:41 +000015853 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015854 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015855 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015856
Michael Liaobe02a902012-11-08 07:28:54 +000015857 // xbegin
15858 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015859 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015860
Craig Topper8aae8dd2012-11-10 08:57:41 +000015861 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015862 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015863 case X86::ATOMAND16:
15864 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015865 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015866 // Fall through
15867 case X86::ATOMOR8:
15868 case X86::ATOMOR16:
15869 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015870 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015871 // Fall through
15872 case X86::ATOMXOR16:
15873 case X86::ATOMXOR8:
15874 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015875 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015876 // Fall through
15877 case X86::ATOMNAND8:
15878 case X86::ATOMNAND16:
15879 case X86::ATOMNAND32:
15880 case X86::ATOMNAND64:
15881 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015882 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015883 case X86::ATOMMAX16:
15884 case X86::ATOMMAX32:
15885 case X86::ATOMMAX64:
15886 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015887 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015888 case X86::ATOMMIN16:
15889 case X86::ATOMMIN32:
15890 case X86::ATOMMIN64:
15891 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015892 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015893 case X86::ATOMUMAX16:
15894 case X86::ATOMUMAX32:
15895 case X86::ATOMUMAX64:
15896 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015897 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015898 case X86::ATOMUMIN16:
15899 case X86::ATOMUMIN32:
15900 case X86::ATOMUMIN64:
15901 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015902
15903 // This group does 64-bit operations on a 32-bit host.
15904 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015905 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015906 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015907 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015908 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015909 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015910 case X86::ATOMMAX6432:
15911 case X86::ATOMMIN6432:
15912 case X86::ATOMUMAX6432:
15913 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015914 case X86::ATOMSWAP6432:
15915 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015916
Dan Gohmand6708ea2009-08-15 01:38:56 +000015917 case X86::VASTART_SAVE_XMM_REGS:
15918 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015919
15920 case X86::VAARG_64:
15921 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015922
15923 case X86::EH_SjLj_SetJmp32:
15924 case X86::EH_SjLj_SetJmp64:
15925 return emitEHSjLjSetJmp(MI, BB);
15926
15927 case X86::EH_SjLj_LongJmp32:
15928 case X86::EH_SjLj_LongJmp64:
15929 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015930 }
15931}
15932
15933//===----------------------------------------------------------------------===//
15934// X86 Optimization Hooks
15935//===----------------------------------------------------------------------===//
15936
Dan Gohman475871a2008-07-27 21:46:04 +000015937void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015938 APInt &KnownZero,
15939 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015940 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015941 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015942 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015943 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015944 assert((Opc >= ISD::BUILTIN_OP_END ||
15945 Opc == ISD::INTRINSIC_WO_CHAIN ||
15946 Opc == ISD::INTRINSIC_W_CHAIN ||
15947 Opc == ISD::INTRINSIC_VOID) &&
15948 "Should use MaskedValueIsZero if you don't know whether Op"
15949 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015950
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015951 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015952 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015953 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015954 case X86ISD::ADD:
15955 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015956 case X86ISD::ADC:
15957 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015958 case X86ISD::SMUL:
15959 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015960 case X86ISD::INC:
15961 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015962 case X86ISD::OR:
15963 case X86ISD::XOR:
15964 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015965 // These nodes' second result is a boolean.
15966 if (Op.getResNo() == 0)
15967 break;
15968 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015969 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015970 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015971 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015972 case ISD::INTRINSIC_WO_CHAIN: {
15973 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15974 unsigned NumLoBits = 0;
15975 switch (IntId) {
15976 default: break;
15977 case Intrinsic::x86_sse_movmsk_ps:
15978 case Intrinsic::x86_avx_movmsk_ps_256:
15979 case Intrinsic::x86_sse2_movmsk_pd:
15980 case Intrinsic::x86_avx_movmsk_pd_256:
15981 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015982 case Intrinsic::x86_sse2_pmovmskb_128:
15983 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015984 // High bits of movmskp{s|d}, pmovmskb are known zero.
15985 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015986 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015987 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
15988 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
15989 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
15990 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
15991 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
15992 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000015993 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015994 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015995 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000015996 break;
15997 }
15998 }
15999 break;
16000 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016001 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016002}
Chris Lattner259e97c2006-01-31 19:43:35 +000016003
Owen Andersonbc146b02010-09-21 20:42:50 +000016004unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16005 unsigned Depth) const {
16006 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16007 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16008 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016009
Owen Andersonbc146b02010-09-21 20:42:50 +000016010 // Fallback case.
16011 return 1;
16012}
16013
Evan Cheng206ee9d2006-07-07 08:33:52 +000016014/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016015/// node is a GlobalAddress + offset.
16016bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016017 const GlobalValue* &GA,
16018 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016019 if (N->getOpcode() == X86ISD::Wrapper) {
16020 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016021 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016022 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016023 return true;
16024 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016025 }
Evan Chengad4196b2008-05-12 19:56:52 +000016026 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016027}
16028
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016029/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16030/// same as extracting the high 128-bit part of 256-bit vector and then
16031/// inserting the result into the low part of a new 256-bit vector
16032static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16033 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016034 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016035
16036 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016037 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016038 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16039 SVOp->getMaskElt(j) >= 0)
16040 return false;
16041
16042 return true;
16043}
16044
16045/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16046/// same as extracting the low 128-bit part of 256-bit vector and then
16047/// inserting the result into the high part of a new 256-bit vector
16048static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16049 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016050 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016051
16052 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016053 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016054 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16055 SVOp->getMaskElt(j) >= 0)
16056 return false;
16057
16058 return true;
16059}
16060
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016061/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16062static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016063 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016064 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016065 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016066 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16067 SDValue V1 = SVOp->getOperand(0);
16068 SDValue V2 = SVOp->getOperand(1);
16069 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016070 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016071
16072 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16073 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16074 //
16075 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016076 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016077 // V UNDEF BUILD_VECTOR UNDEF
16078 // \ / \ /
16079 // CONCAT_VECTOR CONCAT_VECTOR
16080 // \ /
16081 // \ /
16082 // RESULT: V + zero extended
16083 //
16084 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16085 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16086 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16087 return SDValue();
16088
16089 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16090 return SDValue();
16091
16092 // To match the shuffle mask, the first half of the mask should
16093 // be exactly the first vector, and all the rest a splat with the
16094 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016095 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016096 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16097 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16098 return SDValue();
16099
Chad Rosier3d1161e2012-01-03 21:05:52 +000016100 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16101 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016102 if (Ld->hasNUsesOfValue(1, 0)) {
16103 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16104 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16105 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016106 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16107 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016108 Ld->getMemoryVT(),
16109 Ld->getPointerInfo(),
16110 Ld->getAlignment(),
16111 false/*isVolatile*/, true/*ReadMem*/,
16112 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016113
16114 // Make sure the newly-created LOAD is in the same position as Ld in
16115 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16116 // and update uses of Ld's output chain to use the TokenFactor.
16117 if (Ld->hasAnyUseOfValue(1)) {
16118 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16119 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16120 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16121 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16122 SDValue(ResNode.getNode(), 1));
16123 }
16124
Chad Rosier42726832012-05-07 18:47:44 +000016125 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16126 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016127 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016128
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016129 // Emit a zeroed vector and insert the desired subvector on its
16130 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016131 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016132 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016133 return DCI.CombineTo(N, InsV);
16134 }
16135
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016136 //===--------------------------------------------------------------------===//
16137 // Combine some shuffles into subvector extracts and inserts:
16138 //
16139
16140 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16141 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016142 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16143 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016144 return DCI.CombineTo(N, InsV);
16145 }
16146
16147 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16148 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016149 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16150 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016151 return DCI.CombineTo(N, InsV);
16152 }
16153
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016154 return SDValue();
16155}
16156
16157/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016158static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016159 TargetLowering::DAGCombinerInfo &DCI,
16160 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016161 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016162 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016163
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016164 // Don't create instructions with illegal types after legalize types has run.
16165 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16166 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16167 return SDValue();
16168
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016169 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016170 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016171 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016172 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016173
16174 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016175 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016176 return SDValue();
16177
16178 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16179 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16180 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016181 SmallVector<SDValue, 16> Elts;
16182 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016183 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016184
Nate Begemanfdea31a2010-03-24 20:49:50 +000016185 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016186}
Evan Chengd880b972008-05-09 21:53:03 +000016187
Nadav Roteme12bf182013-01-04 17:35:21 +000016188/// PerformTruncateCombine - Converts truncate operation to
16189/// a sequence of vector shuffle operations.
16190/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016191static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16192 TargetLowering::DAGCombinerInfo &DCI,
16193 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016194 return SDValue();
16195}
16196
Craig Topper89f4e662012-03-20 07:17:59 +000016197/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16198/// specific shuffle of a load can be folded into a single element load.
16199/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16200/// shuffles have been customed lowered so we need to handle those here.
16201static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16202 TargetLowering::DAGCombinerInfo &DCI) {
16203 if (DCI.isBeforeLegalizeOps())
16204 return SDValue();
16205
16206 SDValue InVec = N->getOperand(0);
16207 SDValue EltNo = N->getOperand(1);
16208
16209 if (!isa<ConstantSDNode>(EltNo))
16210 return SDValue();
16211
16212 EVT VT = InVec.getValueType();
16213
16214 bool HasShuffleIntoBitcast = false;
16215 if (InVec.getOpcode() == ISD::BITCAST) {
16216 // Don't duplicate a load with other uses.
16217 if (!InVec.hasOneUse())
16218 return SDValue();
16219 EVT BCVT = InVec.getOperand(0).getValueType();
16220 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16221 return SDValue();
16222 InVec = InVec.getOperand(0);
16223 HasShuffleIntoBitcast = true;
16224 }
16225
16226 if (!isTargetShuffle(InVec.getOpcode()))
16227 return SDValue();
16228
16229 // Don't duplicate a load with other uses.
16230 if (!InVec.hasOneUse())
16231 return SDValue();
16232
16233 SmallVector<int, 16> ShuffleMask;
16234 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016235 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16236 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016237 return SDValue();
16238
16239 // Select the input vector, guarding against out of range extract vector.
16240 unsigned NumElems = VT.getVectorNumElements();
16241 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16242 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16243 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16244 : InVec.getOperand(1);
16245
16246 // If inputs to shuffle are the same for both ops, then allow 2 uses
16247 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16248
16249 if (LdNode.getOpcode() == ISD::BITCAST) {
16250 // Don't duplicate a load with other uses.
16251 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16252 return SDValue();
16253
16254 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16255 LdNode = LdNode.getOperand(0);
16256 }
16257
16258 if (!ISD::isNormalLoad(LdNode.getNode()))
16259 return SDValue();
16260
16261 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16262
16263 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16264 return SDValue();
16265
16266 if (HasShuffleIntoBitcast) {
16267 // If there's a bitcast before the shuffle, check if the load type and
16268 // alignment is valid.
16269 unsigned Align = LN0->getAlignment();
16270 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016271 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016272 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16273
16274 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16275 return SDValue();
16276 }
16277
16278 // All checks match so transform back to vector_shuffle so that DAG combiner
16279 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016280 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016281
16282 // Create shuffle node taking into account the case that its a unary shuffle
16283 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16284 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16285 InVec.getOperand(0), Shuffle,
16286 &ShuffleMask[0]);
16287 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16288 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16289 EltNo);
16290}
16291
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016292/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16293/// generation and convert it from being a bunch of shuffles and extracts
16294/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016295static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016296 TargetLowering::DAGCombinerInfo &DCI) {
16297 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16298 if (NewOp.getNode())
16299 return NewOp;
16300
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016301 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016302 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16303 // from mmx to v2i32 has a single usage.
16304 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16305 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16306 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016307 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016308 N->getValueType(0),
16309 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016310
16311 // Only operate on vectors of 4 elements, where the alternative shuffling
16312 // gets to be more expensive.
16313 if (InputVector.getValueType() != MVT::v4i32)
16314 return SDValue();
16315
16316 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16317 // single use which is a sign-extend or zero-extend, and all elements are
16318 // used.
16319 SmallVector<SDNode *, 4> Uses;
16320 unsigned ExtractedElements = 0;
16321 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16322 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16323 if (UI.getUse().getResNo() != InputVector.getResNo())
16324 return SDValue();
16325
16326 SDNode *Extract = *UI;
16327 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16328 return SDValue();
16329
16330 if (Extract->getValueType(0) != MVT::i32)
16331 return SDValue();
16332 if (!Extract->hasOneUse())
16333 return SDValue();
16334 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16335 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16336 return SDValue();
16337 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16338 return SDValue();
16339
16340 // Record which element was extracted.
16341 ExtractedElements |=
16342 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16343
16344 Uses.push_back(Extract);
16345 }
16346
16347 // If not all the elements were used, this may not be worthwhile.
16348 if (ExtractedElements != 15)
16349 return SDValue();
16350
16351 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016352 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016353
16354 // Store the value to a temporary stack slot.
16355 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016356 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16357 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016358
16359 // Replace each use (extract) with a load of the appropriate element.
16360 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16361 UE = Uses.end(); UI != UE; ++UI) {
16362 SDNode *Extract = *UI;
16363
Nadav Rotem86694292011-05-17 08:31:57 +000016364 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016365 SDValue Idx = Extract->getOperand(1);
16366 unsigned EltSize =
16367 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16368 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016369 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016370 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16371
Nadav Rotem86694292011-05-17 08:31:57 +000016372 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016373 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016374
16375 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016376 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016377 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016378 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016379
16380 // Replace the exact with the load.
16381 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16382 }
16383
16384 // The replacement was made in place; don't return anything.
16385 return SDValue();
16386}
16387
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016388/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016389static std::pair<unsigned, bool>
16390matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16391 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016392 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016393 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016394
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016395 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016396 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016397 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016398 case MVT::v32i8:
16399 case MVT::v16i16:
16400 case MVT::v8i32:
16401 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016402 NeedSplit = true;
16403 if (!Subtarget->hasAVX())
16404 return std::make_pair(0, false);
16405 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016406 case MVT::v16i8:
16407 case MVT::v8i16:
16408 case MVT::v4i32:
16409 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016410 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016411 }
16412
16413 // SSE2 has only a small subset of the operations.
16414 bool hasUnsigned = Subtarget->hasSSE41() ||
16415 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16416 bool hasSigned = Subtarget->hasSSE41() ||
16417 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16418
16419 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16420
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016421 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016422 // Check for x CC y ? x : y.
16423 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16424 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16425 switch (CC) {
16426 default: break;
16427 case ISD::SETULT:
16428 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016429 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016430 case ISD::SETUGT:
16431 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016432 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016433 case ISD::SETLT:
16434 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016435 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016436 case ISD::SETGT:
16437 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016438 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016439 }
16440 // Check for x CC y ? y : x -- a min/max with reversed arms.
16441 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16442 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16443 switch (CC) {
16444 default: break;
16445 case ISD::SETULT:
16446 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016447 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016448 case ISD::SETUGT:
16449 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016450 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016451 case ISD::SETLT:
16452 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016453 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016454 case ISD::SETGT:
16455 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016456 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016457 }
16458 }
16459
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016460 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016461}
16462
Duncan Sands6bcd2192011-09-17 16:49:39 +000016463/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16464/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016465static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016466 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016467 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016468 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016469 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016470 // Get the LHS/RHS of the select.
16471 SDValue LHS = N->getOperand(1);
16472 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016473 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016474 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016475
Dan Gohman670e5392009-09-21 18:03:22 +000016476 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016477 // instructions match the semantics of the common C idiom x<y?x:y but not
16478 // x<=y?x:y, because of how they handle negative zero (which can be
16479 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016480 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016481 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016482 (Subtarget->hasSSE2() ||
16483 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016484 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016485
Chris Lattner47b4ce82009-03-11 05:48:52 +000016486 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016487 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016488 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16489 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016490 switch (CC) {
16491 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016492 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016493 // Converting this to a min would handle NaNs incorrectly, and swapping
16494 // the operands would cause it to handle comparisons between positive
16495 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016496 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016497 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016498 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16499 break;
16500 std::swap(LHS, RHS);
16501 }
Dan Gohman670e5392009-09-21 18:03:22 +000016502 Opcode = X86ISD::FMIN;
16503 break;
16504 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016505 // Converting this to a min would handle comparisons between positive
16506 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016507 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016508 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16509 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016510 Opcode = X86ISD::FMIN;
16511 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016512 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016513 // Converting this to a min would handle both negative zeros and NaNs
16514 // incorrectly, but we can swap the operands to fix both.
16515 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016516 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016517 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016518 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016519 Opcode = X86ISD::FMIN;
16520 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016521
Dan Gohman670e5392009-09-21 18:03:22 +000016522 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016523 // Converting this to a max would handle comparisons between positive
16524 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016525 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016526 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016527 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016528 Opcode = X86ISD::FMAX;
16529 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016530 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016531 // Converting this to a max would handle NaNs incorrectly, and swapping
16532 // the operands would cause it to handle comparisons between positive
16533 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016534 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016535 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016536 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16537 break;
16538 std::swap(LHS, RHS);
16539 }
Dan Gohman670e5392009-09-21 18:03:22 +000016540 Opcode = X86ISD::FMAX;
16541 break;
16542 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016543 // Converting this to a max would handle both negative zeros and NaNs
16544 // incorrectly, but we can swap the operands to fix both.
16545 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016546 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016547 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016548 case ISD::SETGE:
16549 Opcode = X86ISD::FMAX;
16550 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016551 }
Dan Gohman670e5392009-09-21 18:03:22 +000016552 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016553 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16554 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016555 switch (CC) {
16556 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016557 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016558 // Converting this to a min would handle comparisons between positive
16559 // and negative zero incorrectly, and swapping the operands would
16560 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016561 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016562 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016563 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016564 break;
16565 std::swap(LHS, RHS);
16566 }
Dan Gohman670e5392009-09-21 18:03:22 +000016567 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016568 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016569 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016570 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016571 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016572 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16573 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016574 Opcode = X86ISD::FMIN;
16575 break;
16576 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016577 // Converting this to a min would handle both negative zeros and NaNs
16578 // incorrectly, but we can swap the operands to fix both.
16579 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016580 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016581 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016582 case ISD::SETGE:
16583 Opcode = X86ISD::FMIN;
16584 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016585
Dan Gohman670e5392009-09-21 18:03:22 +000016586 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016587 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016588 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016589 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016590 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016591 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016592 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016593 // Converting this to a max would handle comparisons between positive
16594 // and negative zero incorrectly, and swapping the operands would
16595 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016596 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016597 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016598 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016599 break;
16600 std::swap(LHS, RHS);
16601 }
Dan Gohman670e5392009-09-21 18:03:22 +000016602 Opcode = X86ISD::FMAX;
16603 break;
16604 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016605 // Converting this to a max would handle both negative zeros and NaNs
16606 // incorrectly, but we can swap the operands to fix both.
16607 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016608 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016609 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016610 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016611 Opcode = X86ISD::FMAX;
16612 break;
16613 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016614 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016615
Chris Lattner47b4ce82009-03-11 05:48:52 +000016616 if (Opcode)
16617 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016618 }
Eric Christopherfd179292009-08-27 18:07:15 +000016619
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016620 if (Subtarget->hasAVX512() && VT.isVector() &&
16621 Cond.getValueType().getVectorElementType() == MVT::i1) {
16622 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16623 // lowering on AVX-512. In this case we convert it to
16624 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16625 // The same situation for all 128 and 256-bit vectors of i8 and i16
16626 EVT OpVT = LHS.getValueType();
16627 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16628 (OpVT.getVectorElementType() == MVT::i8 ||
16629 OpVT.getVectorElementType() == MVT::i16)) {
16630 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16631 DCI.AddToWorklist(Cond.getNode());
16632 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16633 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016634 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016635 // If this is a select between two integer constants, try to do some
16636 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016637 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16638 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016639 // Don't do this for crazy integer types.
16640 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16641 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016642 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016643 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016644
Chris Lattnercee56e72009-03-13 05:53:31 +000016645 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016646 // Efficiently invertible.
16647 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16648 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16649 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16650 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016651 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016652 }
Eric Christopherfd179292009-08-27 18:07:15 +000016653
Chris Lattnerd1980a52009-03-12 06:52:53 +000016654 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016655 if (FalseC->getAPIntValue() == 0 &&
16656 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016657 if (NeedsCondInvert) // Invert the condition if needed.
16658 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16659 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016660
Chris Lattnerd1980a52009-03-12 06:52:53 +000016661 // Zero extend the condition if needed.
16662 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016663
Chris Lattnercee56e72009-03-13 05:53:31 +000016664 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016665 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016666 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016667 }
Eric Christopherfd179292009-08-27 18:07:15 +000016668
Chris Lattner97a29a52009-03-13 05:22:11 +000016669 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016670 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016671 if (NeedsCondInvert) // Invert the condition if needed.
16672 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16673 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016674
Chris Lattner97a29a52009-03-13 05:22:11 +000016675 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016676 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16677 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016678 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016679 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016680 }
Eric Christopherfd179292009-08-27 18:07:15 +000016681
Chris Lattnercee56e72009-03-13 05:53:31 +000016682 // Optimize cases that will turn into an LEA instruction. This requires
16683 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016684 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016685 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016686 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016687
Chris Lattnercee56e72009-03-13 05:53:31 +000016688 bool isFastMultiplier = false;
16689 if (Diff < 10) {
16690 switch ((unsigned char)Diff) {
16691 default: break;
16692 case 1: // result = add base, cond
16693 case 2: // result = lea base( , cond*2)
16694 case 3: // result = lea base(cond, cond*2)
16695 case 4: // result = lea base( , cond*4)
16696 case 5: // result = lea base(cond, cond*4)
16697 case 8: // result = lea base( , cond*8)
16698 case 9: // result = lea base(cond, cond*8)
16699 isFastMultiplier = true;
16700 break;
16701 }
16702 }
Eric Christopherfd179292009-08-27 18:07:15 +000016703
Chris Lattnercee56e72009-03-13 05:53:31 +000016704 if (isFastMultiplier) {
16705 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16706 if (NeedsCondInvert) // Invert the condition if needed.
16707 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16708 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016709
Chris Lattnercee56e72009-03-13 05:53:31 +000016710 // Zero extend the condition if needed.
16711 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16712 Cond);
16713 // Scale the condition by the difference.
16714 if (Diff != 1)
16715 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16716 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016717
Chris Lattnercee56e72009-03-13 05:53:31 +000016718 // Add the base if non-zero.
16719 if (FalseC->getAPIntValue() != 0)
16720 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16721 SDValue(FalseC, 0));
16722 return Cond;
16723 }
Eric Christopherfd179292009-08-27 18:07:15 +000016724 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016725 }
16726 }
Eric Christopherfd179292009-08-27 18:07:15 +000016727
Evan Cheng56f582d2012-01-04 01:41:39 +000016728 // Canonicalize max and min:
16729 // (x > y) ? x : y -> (x >= y) ? x : y
16730 // (x < y) ? x : y -> (x <= y) ? x : y
16731 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16732 // the need for an extra compare
16733 // against zero. e.g.
16734 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16735 // subl %esi, %edi
16736 // testl %edi, %edi
16737 // movl $0, %eax
16738 // cmovgl %edi, %eax
16739 // =>
16740 // xorl %eax, %eax
16741 // subl %esi, $edi
16742 // cmovsl %eax, %edi
16743 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16744 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16745 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16746 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16747 switch (CC) {
16748 default: break;
16749 case ISD::SETLT:
16750 case ISD::SETGT: {
16751 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016752 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016753 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16754 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16755 }
16756 }
16757 }
16758
Juergen Ributzkad7174712013-09-05 23:02:56 +000016759 // Early exit check
16760 if (!TLI.isTypeLegal(VT))
16761 return SDValue();
16762
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016763 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016764 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016765 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16766 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16767 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16768 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16769
16770 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16771 // left side invert the predicate to simplify logic below.
16772 SDValue Other;
16773 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16774 Other = RHS;
16775 CC = ISD::getSetCCInverse(CC, true);
16776 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16777 Other = LHS;
16778 }
16779
16780 if (Other.getNode() && Other->getNumOperands() == 2 &&
16781 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16782 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16783 SDValue CondRHS = Cond->getOperand(1);
16784
16785 // Look for a general sub with unsigned saturation first.
16786 // x >= y ? x-y : 0 --> subus x, y
16787 // x > y ? x-y : 0 --> subus x, y
16788 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16789 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16790 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16791
16792 // If the RHS is a constant we have to reverse the const canonicalization.
16793 // x > C-1 ? x+-C : 0 --> subus x, C
16794 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16795 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16796 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016797 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016798 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016799 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016800 }
16801
16802 // Another special case: If C was a sign bit, the sub has been
16803 // canonicalized into a xor.
16804 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16805 // it's safe to decanonicalize the xor?
16806 // x s< 0 ? x^C : 0 --> subus x, C
16807 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16808 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16809 isSplatVector(OpRHS.getNode())) {
16810 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16811 if (A.isSignBit())
16812 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16813 }
16814 }
16815 }
16816
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016817 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016818 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016819 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16820 unsigned Opc = ret.first;
16821 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016822
16823 if (Opc && NeedSplit) {
16824 unsigned NumElems = VT.getVectorNumElements();
16825 // Extract the LHS vectors
16826 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16827 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16828
16829 // Extract the RHS vectors
16830 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16831 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16832
16833 // Create min/max for each subvector
16834 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16835 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16836
16837 // Merge the result
16838 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16839 } else if (Opc)
16840 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16841 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016842
Michael Liaobf538412013-04-11 05:15:54 +000016843 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016844 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16845 // Check if SETCC has already been promoted
16846 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016847
16848 assert(Cond.getValueType().isVector() &&
16849 "vector select expects a vector selector!");
16850
16851 EVT IntVT = Cond.getValueType();
16852 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16853 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16854
16855 if (!TValIsAllOnes && !FValIsAllZeros) {
16856 // Try invert the condition if true value is not all 1s and false value
16857 // is not all 0s.
16858 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16859 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16860
16861 if (TValIsAllZeros || FValIsAllOnes) {
16862 SDValue CC = Cond.getOperand(2);
16863 ISD::CondCode NewCC =
16864 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16865 Cond.getOperand(0).getValueType().isInteger());
16866 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16867 std::swap(LHS, RHS);
16868 TValIsAllOnes = FValIsAllOnes;
16869 FValIsAllZeros = TValIsAllZeros;
16870 }
16871 }
16872
16873 if (TValIsAllOnes || FValIsAllZeros) {
16874 SDValue Ret;
16875
16876 if (TValIsAllOnes && FValIsAllZeros)
16877 Ret = Cond;
16878 else if (TValIsAllOnes)
16879 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16880 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16881 else if (FValIsAllZeros)
16882 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16883 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16884
16885 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16886 }
16887 }
16888
Nadav Rotemcc616562012-01-15 19:27:55 +000016889 // If we know that this node is legal then we know that it is going to be
16890 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16891 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16892 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000016893 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016894 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016895 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016896
16897 // Don't optimize vector selects that map to mask-registers.
16898 if (BitWidth == 1)
16899 return SDValue();
16900
Nadav Rotemcc616562012-01-15 19:27:55 +000016901 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16902 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16903
16904 APInt KnownZero, KnownOne;
16905 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16906 DCI.isBeforeLegalizeOps());
16907 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16908 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16909 DCI.CommitTargetLoweringOpt(TLO);
16910 }
16911
Dan Gohman475871a2008-07-27 21:46:04 +000016912 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016913}
16914
Michael Liao2a33cec2012-08-10 19:58:13 +000016915// Check whether a boolean test is testing a boolean value generated by
16916// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16917// code.
16918//
16919// Simplify the following patterns:
16920// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16921// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16922// to (Op EFLAGS Cond)
16923//
16924// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16925// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16926// to (Op EFLAGS !Cond)
16927//
16928// where Op could be BRCOND or CMOV.
16929//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016930static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016931 // Quit if not CMP and SUB with its value result used.
16932 if (Cmp.getOpcode() != X86ISD::CMP &&
16933 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16934 return SDValue();
16935
16936 // Quit if not used as a boolean value.
16937 if (CC != X86::COND_E && CC != X86::COND_NE)
16938 return SDValue();
16939
16940 // Check CMP operands. One of them should be 0 or 1 and the other should be
16941 // an SetCC or extended from it.
16942 SDValue Op1 = Cmp.getOperand(0);
16943 SDValue Op2 = Cmp.getOperand(1);
16944
16945 SDValue SetCC;
16946 const ConstantSDNode* C = 0;
16947 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016948 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016949
16950 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16951 SetCC = Op2;
16952 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16953 SetCC = Op1;
16954 else // Quit if all operands are not constants.
16955 return SDValue();
16956
Michael Liao959ddbb2013-04-11 04:43:09 +000016957 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016958 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000016959 checkAgainstTrue = true;
16960 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000016961 // Quit if the constant is neither 0 or 1.
16962 return SDValue();
16963
Michael Liao959ddbb2013-04-11 04:43:09 +000016964 bool truncatedToBoolWithAnd = false;
16965 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16966 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16967 SetCC.getOpcode() == ISD::TRUNCATE ||
16968 SetCC.getOpcode() == ISD::AND) {
16969 if (SetCC.getOpcode() == ISD::AND) {
16970 int OpIdx = -1;
16971 ConstantSDNode *CS;
16972 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16973 CS->getZExtValue() == 1)
16974 OpIdx = 1;
16975 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16976 CS->getZExtValue() == 1)
16977 OpIdx = 0;
16978 if (OpIdx == -1)
16979 break;
16980 SetCC = SetCC.getOperand(OpIdx);
16981 truncatedToBoolWithAnd = true;
16982 } else
16983 SetCC = SetCC.getOperand(0);
16984 }
Michael Liao2a33cec2012-08-10 19:58:13 +000016985
Michael Liao7fdc66b2012-09-10 16:36:16 +000016986 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000016987 case X86ISD::SETCC_CARRY:
16988 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16989 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16990 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16991 // truncated to i1 using 'and'.
16992 if (checkAgainstTrue && !truncatedToBoolWithAnd)
16993 break;
16994 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16995 "Invalid use of SETCC_CARRY!");
16996 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000016997 case X86ISD::SETCC:
16998 // Set the condition code or opposite one if necessary.
16999 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17000 if (needOppositeCond)
17001 CC = X86::GetOppositeBranchCondition(CC);
17002 return SetCC.getOperand(1);
17003 case X86ISD::CMOV: {
17004 // Check whether false/true value has canonical one, i.e. 0 or 1.
17005 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17006 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17007 // Quit if true value is not a constant.
17008 if (!TVal)
17009 return SDValue();
17010 // Quit if false value is not a constant.
17011 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017012 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017013 // Skip 'zext' or 'trunc' node.
17014 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17015 Op.getOpcode() == ISD::TRUNCATE)
17016 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017017 // A special case for rdrand/rdseed, where 0 is set if false cond is
17018 // found.
17019 if ((Op.getOpcode() != X86ISD::RDRAND &&
17020 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017021 return SDValue();
17022 }
17023 // Quit if false value is not the constant 0 or 1.
17024 bool FValIsFalse = true;
17025 if (FVal && FVal->getZExtValue() != 0) {
17026 if (FVal->getZExtValue() != 1)
17027 return SDValue();
17028 // If FVal is 1, opposite cond is needed.
17029 needOppositeCond = !needOppositeCond;
17030 FValIsFalse = false;
17031 }
17032 // Quit if TVal is not the constant opposite of FVal.
17033 if (FValIsFalse && TVal->getZExtValue() != 1)
17034 return SDValue();
17035 if (!FValIsFalse && TVal->getZExtValue() != 0)
17036 return SDValue();
17037 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17038 if (needOppositeCond)
17039 CC = X86::GetOppositeBranchCondition(CC);
17040 return SetCC.getOperand(3);
17041 }
17042 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017043
Michael Liao7fdc66b2012-09-10 16:36:16 +000017044 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017045}
17046
Chris Lattnerd1980a52009-03-12 06:52:53 +000017047/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17048static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017049 TargetLowering::DAGCombinerInfo &DCI,
17050 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017051 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017052
Chris Lattnerd1980a52009-03-12 06:52:53 +000017053 // If the flag operand isn't dead, don't touch this CMOV.
17054 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17055 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017056
Evan Chengb5a55d92011-05-24 01:48:22 +000017057 SDValue FalseOp = N->getOperand(0);
17058 SDValue TrueOp = N->getOperand(1);
17059 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17060 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017061
Evan Chengb5a55d92011-05-24 01:48:22 +000017062 if (CC == X86::COND_E || CC == X86::COND_NE) {
17063 switch (Cond.getOpcode()) {
17064 default: break;
17065 case X86ISD::BSR:
17066 case X86ISD::BSF:
17067 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17068 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17069 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17070 }
17071 }
17072
Michael Liao2a33cec2012-08-10 19:58:13 +000017073 SDValue Flags;
17074
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017075 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017076 if (Flags.getNode() &&
17077 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017078 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017079 SDValue Ops[] = { FalseOp, TrueOp,
17080 DAG.getConstant(CC, MVT::i8), Flags };
17081 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17082 Ops, array_lengthof(Ops));
17083 }
17084
Chris Lattnerd1980a52009-03-12 06:52:53 +000017085 // If this is a select between two integer constants, try to do some
17086 // optimizations. Note that the operands are ordered the opposite of SELECT
17087 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017088 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17089 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017090 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17091 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017092 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17093 CC = X86::GetOppositeBranchCondition(CC);
17094 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017095 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017096 }
Eric Christopherfd179292009-08-27 18:07:15 +000017097
Chris Lattnerd1980a52009-03-12 06:52:53 +000017098 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017099 // This is efficient for any integer data type (including i8/i16) and
17100 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017101 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017102 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17103 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017104
Chris Lattnerd1980a52009-03-12 06:52:53 +000017105 // Zero extend the condition if needed.
17106 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017107
Chris Lattnerd1980a52009-03-12 06:52:53 +000017108 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17109 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017110 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017111 if (N->getNumValues() == 2) // Dead flag value?
17112 return DCI.CombineTo(N, Cond, SDValue());
17113 return Cond;
17114 }
Eric Christopherfd179292009-08-27 18:07:15 +000017115
Chris Lattnercee56e72009-03-13 05:53:31 +000017116 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17117 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017118 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017119 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17120 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017121
Chris Lattner97a29a52009-03-13 05:22:11 +000017122 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017123 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17124 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017125 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17126 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017127
Chris Lattner97a29a52009-03-13 05:22:11 +000017128 if (N->getNumValues() == 2) // Dead flag value?
17129 return DCI.CombineTo(N, Cond, SDValue());
17130 return Cond;
17131 }
Eric Christopherfd179292009-08-27 18:07:15 +000017132
Chris Lattnercee56e72009-03-13 05:53:31 +000017133 // Optimize cases that will turn into an LEA instruction. This requires
17134 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017135 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017136 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017137 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017138
Chris Lattnercee56e72009-03-13 05:53:31 +000017139 bool isFastMultiplier = false;
17140 if (Diff < 10) {
17141 switch ((unsigned char)Diff) {
17142 default: break;
17143 case 1: // result = add base, cond
17144 case 2: // result = lea base( , cond*2)
17145 case 3: // result = lea base(cond, cond*2)
17146 case 4: // result = lea base( , cond*4)
17147 case 5: // result = lea base(cond, cond*4)
17148 case 8: // result = lea base( , cond*8)
17149 case 9: // result = lea base(cond, cond*8)
17150 isFastMultiplier = true;
17151 break;
17152 }
17153 }
Eric Christopherfd179292009-08-27 18:07:15 +000017154
Chris Lattnercee56e72009-03-13 05:53:31 +000017155 if (isFastMultiplier) {
17156 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017157 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17158 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017159 // Zero extend the condition if needed.
17160 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17161 Cond);
17162 // Scale the condition by the difference.
17163 if (Diff != 1)
17164 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17165 DAG.getConstant(Diff, Cond.getValueType()));
17166
17167 // Add the base if non-zero.
17168 if (FalseC->getAPIntValue() != 0)
17169 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17170 SDValue(FalseC, 0));
17171 if (N->getNumValues() == 2) // Dead flag value?
17172 return DCI.CombineTo(N, Cond, SDValue());
17173 return Cond;
17174 }
Eric Christopherfd179292009-08-27 18:07:15 +000017175 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017176 }
17177 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017178
17179 // Handle these cases:
17180 // (select (x != c), e, c) -> select (x != c), e, x),
17181 // (select (x == c), c, e) -> select (x == c), x, e)
17182 // where the c is an integer constant, and the "select" is the combination
17183 // of CMOV and CMP.
17184 //
17185 // The rationale for this change is that the conditional-move from a constant
17186 // needs two instructions, however, conditional-move from a register needs
17187 // only one instruction.
17188 //
17189 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17190 // some instruction-combining opportunities. This opt needs to be
17191 // postponed as late as possible.
17192 //
17193 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17194 // the DCI.xxxx conditions are provided to postpone the optimization as
17195 // late as possible.
17196
17197 ConstantSDNode *CmpAgainst = 0;
17198 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17199 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017200 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017201
17202 if (CC == X86::COND_NE &&
17203 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17204 CC = X86::GetOppositeBranchCondition(CC);
17205 std::swap(TrueOp, FalseOp);
17206 }
17207
17208 if (CC == X86::COND_E &&
17209 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17210 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17211 DAG.getConstant(CC, MVT::i8), Cond };
17212 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17213 array_lengthof(Ops));
17214 }
17215 }
17216 }
17217
Chris Lattnerd1980a52009-03-12 06:52:53 +000017218 return SDValue();
17219}
17220
Evan Cheng0b0cd912009-03-28 05:57:29 +000017221/// PerformMulCombine - Optimize a single multiply with constant into two
17222/// in order to implement it with two cheaper instructions, e.g.
17223/// LEA + SHL, LEA + LEA.
17224static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17225 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017226 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17227 return SDValue();
17228
Owen Andersone50ed302009-08-10 22:56:29 +000017229 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017230 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017231 return SDValue();
17232
17233 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17234 if (!C)
17235 return SDValue();
17236 uint64_t MulAmt = C->getZExtValue();
17237 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17238 return SDValue();
17239
17240 uint64_t MulAmt1 = 0;
17241 uint64_t MulAmt2 = 0;
17242 if ((MulAmt % 9) == 0) {
17243 MulAmt1 = 9;
17244 MulAmt2 = MulAmt / 9;
17245 } else if ((MulAmt % 5) == 0) {
17246 MulAmt1 = 5;
17247 MulAmt2 = MulAmt / 5;
17248 } else if ((MulAmt % 3) == 0) {
17249 MulAmt1 = 3;
17250 MulAmt2 = MulAmt / 3;
17251 }
17252 if (MulAmt2 &&
17253 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017254 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017255
17256 if (isPowerOf2_64(MulAmt2) &&
17257 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17258 // If second multiplifer is pow2, issue it first. We want the multiply by
17259 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17260 // is an add.
17261 std::swap(MulAmt1, MulAmt2);
17262
17263 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017264 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017265 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017266 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017267 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017268 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017269 DAG.getConstant(MulAmt1, VT));
17270
Eric Christopherfd179292009-08-27 18:07:15 +000017271 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017272 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017273 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017274 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017275 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017276 DAG.getConstant(MulAmt2, VT));
17277
17278 // Do not add new nodes to DAG combiner worklist.
17279 DCI.CombineTo(N, NewMul, false);
17280 }
17281 return SDValue();
17282}
17283
Evan Chengad9c0a32009-12-15 00:53:42 +000017284static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17285 SDValue N0 = N->getOperand(0);
17286 SDValue N1 = N->getOperand(1);
17287 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17288 EVT VT = N0.getValueType();
17289
17290 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17291 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017292 if (VT.isInteger() && !VT.isVector() &&
17293 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017294 N0.getOperand(1).getOpcode() == ISD::Constant) {
17295 SDValue N00 = N0.getOperand(0);
17296 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17297 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17298 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17299 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17300 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17301 APInt ShAmt = N1C->getAPIntValue();
17302 Mask = Mask.shl(ShAmt);
17303 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017304 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017305 N00, DAG.getConstant(Mask, VT));
17306 }
17307 }
17308
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017309 // Hardware support for vector shifts is sparse which makes us scalarize the
17310 // vector operations in many cases. Also, on sandybridge ADD is faster than
17311 // shl.
17312 // (shl V, 1) -> add V,V
17313 if (isSplatVector(N1.getNode())) {
17314 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17315 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17316 // We shift all of the values by one. In many cases we do not have
17317 // hardware support for this operation. This is better expressed as an ADD
17318 // of two values.
17319 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017320 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017321 }
17322 }
17323
Evan Chengad9c0a32009-12-15 00:53:42 +000017324 return SDValue();
17325}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017326
Stephen Linfff96732013-07-12 15:31:36 +000017327/// \brief Returns a vector of 0s if the node in input is a vector logical
17328/// shift by a constant amount which is known to be bigger than or equal
17329/// to the vector element size in bits.
17330static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17331 const X86Subtarget *Subtarget) {
17332 EVT VT = N->getValueType(0);
17333
17334 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17335 (!Subtarget->hasInt256() ||
17336 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17337 return SDValue();
17338
17339 SDValue Amt = N->getOperand(1);
17340 SDLoc DL(N);
17341 if (isSplatVector(Amt.getNode())) {
17342 SDValue SclrAmt = Amt->getOperand(0);
17343 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17344 APInt ShiftAmt = C->getAPIntValue();
17345 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17346
17347 // SSE2/AVX2 logical shifts always return a vector of 0s
17348 // if the shift amount is bigger than or equal to
17349 // the element size. The constant shift amount will be
17350 // encoded as a 8-bit immediate.
17351 if (ShiftAmt.trunc(8).uge(MaxAmount))
17352 return getZeroVector(VT, Subtarget, DAG, DL);
17353 }
17354 }
17355
17356 return SDValue();
17357}
17358
Nadav Rotem0fb65232013-05-04 23:24:56 +000017359/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017360static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017361 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017362 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017363 if (N->getOpcode() == ISD::SHL) {
17364 SDValue V = PerformSHLCombine(N, DAG);
17365 if (V.getNode()) return V;
17366 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017367
Stephen Linfff96732013-07-12 15:31:36 +000017368 if (N->getOpcode() != ISD::SRA) {
17369 // Try to fold this logical shift into a zero vector.
17370 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17371 if (V.getNode()) return V;
17372 }
17373
Michael Liao42317cc2013-03-20 02:33:21 +000017374 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017375}
17376
Stuart Hastings865f0932011-06-03 23:53:54 +000017377// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17378// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17379// and friends. Likewise for OR -> CMPNEQSS.
17380static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17381 TargetLowering::DAGCombinerInfo &DCI,
17382 const X86Subtarget *Subtarget) {
17383 unsigned opcode;
17384
17385 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17386 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017387 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017388 SDValue N0 = N->getOperand(0);
17389 SDValue N1 = N->getOperand(1);
17390 SDValue CMP0 = N0->getOperand(1);
17391 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017392 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017393
17394 // The SETCCs should both refer to the same CMP.
17395 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17396 return SDValue();
17397
17398 SDValue CMP00 = CMP0->getOperand(0);
17399 SDValue CMP01 = CMP0->getOperand(1);
17400 EVT VT = CMP00.getValueType();
17401
17402 if (VT == MVT::f32 || VT == MVT::f64) {
17403 bool ExpectingFlags = false;
17404 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017405 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017406 !ExpectingFlags && UI != UE; ++UI)
17407 switch (UI->getOpcode()) {
17408 default:
17409 case ISD::BR_CC:
17410 case ISD::BRCOND:
17411 case ISD::SELECT:
17412 ExpectingFlags = true;
17413 break;
17414 case ISD::CopyToReg:
17415 case ISD::SIGN_EXTEND:
17416 case ISD::ZERO_EXTEND:
17417 case ISD::ANY_EXTEND:
17418 break;
17419 }
17420
17421 if (!ExpectingFlags) {
17422 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17423 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17424
17425 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17426 X86::CondCode tmp = cc0;
17427 cc0 = cc1;
17428 cc1 = tmp;
17429 }
17430
17431 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17432 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17433 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17434 X86ISD::NodeType NTOperator = is64BitFP ?
17435 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17436 // FIXME: need symbolic constants for these magic numbers.
17437 // See X86ATTInstPrinter.cpp:printSSECC().
17438 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17439 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17440 DAG.getConstant(x86cc, MVT::i8));
17441 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17442 OnesOrZeroesF);
17443 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17444 DAG.getConstant(1, MVT::i32));
17445 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17446 return OneBitOfTruth;
17447 }
17448 }
17449 }
17450 }
17451 return SDValue();
17452}
17453
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017454/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17455/// so it can be folded inside ANDNP.
17456static bool CanFoldXORWithAllOnes(const SDNode *N) {
17457 EVT VT = N->getValueType(0);
17458
17459 // Match direct AllOnes for 128 and 256-bit vectors
17460 if (ISD::isBuildVectorAllOnes(N))
17461 return true;
17462
17463 // Look through a bit convert.
17464 if (N->getOpcode() == ISD::BITCAST)
17465 N = N->getOperand(0).getNode();
17466
17467 // Sometimes the operand may come from a insert_subvector building a 256-bit
17468 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017469 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017470 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17471 SDValue V1 = N->getOperand(0);
17472 SDValue V2 = N->getOperand(1);
17473
17474 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17475 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17476 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17477 ISD::isBuildVectorAllOnes(V2.getNode()))
17478 return true;
17479 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017480
17481 return false;
17482}
17483
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017484// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17485// register. In most cases we actually compare or select YMM-sized registers
17486// and mixing the two types creates horrible code. This method optimizes
17487// some of the transition sequences.
17488static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17489 TargetLowering::DAGCombinerInfo &DCI,
17490 const X86Subtarget *Subtarget) {
17491 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017492 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017493 return SDValue();
17494
17495 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17496 N->getOpcode() == ISD::ZERO_EXTEND ||
17497 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17498
17499 SDValue Narrow = N->getOperand(0);
17500 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017501 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017502 return SDValue();
17503
17504 if (Narrow->getOpcode() != ISD::XOR &&
17505 Narrow->getOpcode() != ISD::AND &&
17506 Narrow->getOpcode() != ISD::OR)
17507 return SDValue();
17508
17509 SDValue N0 = Narrow->getOperand(0);
17510 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017511 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017512
17513 // The Left side has to be a trunc.
17514 if (N0.getOpcode() != ISD::TRUNCATE)
17515 return SDValue();
17516
17517 // The type of the truncated inputs.
17518 EVT WideVT = N0->getOperand(0)->getValueType(0);
17519 if (WideVT != VT)
17520 return SDValue();
17521
17522 // The right side has to be a 'trunc' or a constant vector.
17523 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17524 bool RHSConst = (isSplatVector(N1.getNode()) &&
17525 isa<ConstantSDNode>(N1->getOperand(0)));
17526 if (!RHSTrunc && !RHSConst)
17527 return SDValue();
17528
17529 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17530
17531 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17532 return SDValue();
17533
17534 // Set N0 and N1 to hold the inputs to the new wide operation.
17535 N0 = N0->getOperand(0);
17536 if (RHSConst) {
17537 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17538 N1->getOperand(0));
17539 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17540 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17541 } else if (RHSTrunc) {
17542 N1 = N1->getOperand(0);
17543 }
17544
17545 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017546 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017547 unsigned Opcode = N->getOpcode();
17548 switch (Opcode) {
17549 case ISD::ANY_EXTEND:
17550 return Op;
17551 case ISD::ZERO_EXTEND: {
17552 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17553 APInt Mask = APInt::getAllOnesValue(InBits);
17554 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17555 return DAG.getNode(ISD::AND, DL, VT,
17556 Op, DAG.getConstant(Mask, VT));
17557 }
17558 case ISD::SIGN_EXTEND:
17559 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17560 Op, DAG.getValueType(NarrowVT));
17561 default:
17562 llvm_unreachable("Unexpected opcode");
17563 }
17564}
17565
Nate Begemanb65c1752010-12-17 22:55:37 +000017566static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17567 TargetLowering::DAGCombinerInfo &DCI,
17568 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017569 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017570 if (DCI.isBeforeLegalizeOps())
17571 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017572
Stuart Hastings865f0932011-06-03 23:53:54 +000017573 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17574 if (R.getNode())
17575 return R;
17576
Craig Topperb6ac30a2013-08-30 06:52:21 +000017577 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017578 // BLSI is X & (-X)
17579 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017580 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017581 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017582 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017583 SDValue N0 = N->getOperand(0);
17584 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017585 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017586
Craig Topperb6ac30a2013-08-30 06:52:21 +000017587 if (Subtarget->hasBMI()) {
17588 // Check LHS for neg
17589 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17590 isZero(N0.getOperand(0)))
17591 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017592
Craig Topperb6ac30a2013-08-30 06:52:21 +000017593 // Check RHS for neg
17594 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17595 isZero(N1.getOperand(0)))
17596 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017597
Craig Topperb6ac30a2013-08-30 06:52:21 +000017598 // Check LHS for X-1
17599 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17600 isAllOnes(N0.getOperand(1)))
17601 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017602
Craig Topperb6ac30a2013-08-30 06:52:21 +000017603 // Check RHS for X-1
17604 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17605 isAllOnes(N1.getOperand(1)))
17606 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17607 }
17608
17609 if (Subtarget->hasBMI2()) {
17610 // Check for (and (add (shl 1, Y), -1), X)
17611 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17612 SDValue N00 = N0.getOperand(0);
17613 if (N00.getOpcode() == ISD::SHL) {
17614 SDValue N001 = N00.getOperand(1);
17615 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17616 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17617 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017618 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017619 }
17620 }
17621
17622 // Check for (and X, (add (shl 1, Y), -1))
17623 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17624 SDValue N10 = N1.getOperand(0);
17625 if (N10.getOpcode() == ISD::SHL) {
17626 SDValue N101 = N10.getOperand(1);
17627 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17628 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17629 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017630 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017631 }
17632 }
17633 }
Craig Topperb4c94572011-10-21 06:55:01 +000017634
Craig Topperfafe4bb2013-10-03 04:16:45 +000017635 // Check for BEXTR.
17636 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17637 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17638 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17639 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17640 if (MaskNode && ShiftNode) {
17641 uint64_t Mask = MaskNode->getZExtValue();
17642 uint64_t Shift = ShiftNode->getZExtValue();
17643 if (isMask_64(Mask)) {
17644 uint64_t MaskSize = CountPopulation_64(Mask);
17645 if (Shift + MaskSize <= VT.getSizeInBits())
17646 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17647 DAG.getConstant(Shift | (MaskSize << 8), VT));
17648 }
17649 }
17650 } // BEXTR
17651
Craig Topper54a11172011-10-14 07:06:56 +000017652 return SDValue();
17653 }
17654
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017655 // Want to form ANDNP nodes:
17656 // 1) In the hopes of then easily combining them with OR and AND nodes
17657 // to form PBLEND/PSIGN.
17658 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017659 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017660 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017661
Nate Begemanb65c1752010-12-17 22:55:37 +000017662 SDValue N0 = N->getOperand(0);
17663 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017664 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017665
Nate Begemanb65c1752010-12-17 22:55:37 +000017666 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017667 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017668 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17669 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017670 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017671
17672 // Check RHS for vnot
17673 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017674 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17675 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017676 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017677
Nate Begemanb65c1752010-12-17 22:55:37 +000017678 return SDValue();
17679}
17680
Evan Cheng760d1942010-01-04 21:22:48 +000017681static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017682 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017683 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017684 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017685 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017686 return SDValue();
17687
Stuart Hastings865f0932011-06-03 23:53:54 +000017688 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17689 if (R.getNode())
17690 return R;
17691
Evan Cheng760d1942010-01-04 21:22:48 +000017692 SDValue N0 = N->getOperand(0);
17693 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017694
Nate Begemanb65c1752010-12-17 22:55:37 +000017695 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017696 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017697 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017698 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017699 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017700
Craig Topper1666cb62011-11-19 07:07:26 +000017701 // Canonicalize pandn to RHS
17702 if (N0.getOpcode() == X86ISD::ANDNP)
17703 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017704 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017705 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17706 SDValue Mask = N1.getOperand(0);
17707 SDValue X = N1.getOperand(1);
17708 SDValue Y;
17709 if (N0.getOperand(0) == Mask)
17710 Y = N0.getOperand(1);
17711 if (N0.getOperand(1) == Mask)
17712 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017713
Craig Topper1666cb62011-11-19 07:07:26 +000017714 // Check to see if the mask appeared in both the AND and ANDNP and
17715 if (!Y.getNode())
17716 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017717
Craig Topper1666cb62011-11-19 07:07:26 +000017718 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017719 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017720 if (Mask.getOpcode() == ISD::BITCAST)
17721 Mask = Mask.getOperand(0);
17722 if (X.getOpcode() == ISD::BITCAST)
17723 X = X.getOperand(0);
17724 if (Y.getOpcode() == ISD::BITCAST)
17725 Y = Y.getOperand(0);
17726
Craig Topper1666cb62011-11-19 07:07:26 +000017727 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017728
Craig Toppered2e13d2012-01-22 19:15:14 +000017729 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017730 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17731 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017732 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017733 unsigned SraAmt = ~0;
17734 if (Mask.getOpcode() == ISD::SRA) {
17735 SDValue Amt = Mask.getOperand(1);
17736 if (isSplatVector(Amt.getNode())) {
17737 SDValue SclrAmt = Amt->getOperand(0);
17738 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17739 SraAmt = C->getZExtValue();
17740 }
17741 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17742 SDValue SraC = Mask.getOperand(1);
17743 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17744 }
Craig Topper1666cb62011-11-19 07:07:26 +000017745 if ((SraAmt + 1) != EltBits)
17746 return SDValue();
17747
Andrew Trickac6d9be2013-05-25 02:42:55 +000017748 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017749
17750 // Now we know we at least have a plendvb with the mask val. See if
17751 // we can form a psignb/w/d.
17752 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017753 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17754 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017755 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17756 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17757 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017758 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017759 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017760 }
17761 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017762 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017763 return SDValue();
17764
17765 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17766
17767 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17768 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17769 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017770 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017771 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017772 }
17773 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017774
Craig Topper1666cb62011-11-19 07:07:26 +000017775 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17776 return SDValue();
17777
Nate Begemanb65c1752010-12-17 22:55:37 +000017778 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017779 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17780 std::swap(N0, N1);
17781 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17782 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017783 if (!N0.hasOneUse() || !N1.hasOneUse())
17784 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017785
17786 SDValue ShAmt0 = N0.getOperand(1);
17787 if (ShAmt0.getValueType() != MVT::i8)
17788 return SDValue();
17789 SDValue ShAmt1 = N1.getOperand(1);
17790 if (ShAmt1.getValueType() != MVT::i8)
17791 return SDValue();
17792 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17793 ShAmt0 = ShAmt0.getOperand(0);
17794 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17795 ShAmt1 = ShAmt1.getOperand(0);
17796
Andrew Trickac6d9be2013-05-25 02:42:55 +000017797 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017798 unsigned Opc = X86ISD::SHLD;
17799 SDValue Op0 = N0.getOperand(0);
17800 SDValue Op1 = N1.getOperand(0);
17801 if (ShAmt0.getOpcode() == ISD::SUB) {
17802 Opc = X86ISD::SHRD;
17803 std::swap(Op0, Op1);
17804 std::swap(ShAmt0, ShAmt1);
17805 }
17806
Evan Cheng8b1190a2010-04-28 01:18:01 +000017807 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017808 if (ShAmt1.getOpcode() == ISD::SUB) {
17809 SDValue Sum = ShAmt1.getOperand(0);
17810 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017811 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17812 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17813 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17814 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017815 return DAG.getNode(Opc, DL, VT,
17816 Op0, Op1,
17817 DAG.getNode(ISD::TRUNCATE, DL,
17818 MVT::i8, ShAmt0));
17819 }
17820 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17821 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17822 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017823 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017824 return DAG.getNode(Opc, DL, VT,
17825 N0.getOperand(0), N1.getOperand(0),
17826 DAG.getNode(ISD::TRUNCATE, DL,
17827 MVT::i8, ShAmt0));
17828 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017829
Evan Cheng760d1942010-01-04 21:22:48 +000017830 return SDValue();
17831}
17832
Manman Ren92363622012-06-07 22:39:10 +000017833// Generate NEG and CMOV for integer abs.
17834static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17835 EVT VT = N->getValueType(0);
17836
17837 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17838 // 8-bit integer abs to NEG and CMOV.
17839 if (VT.isInteger() && VT.getSizeInBits() == 8)
17840 return SDValue();
17841
17842 SDValue N0 = N->getOperand(0);
17843 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017844 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017845
17846 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17847 // and change it to SUB and CMOV.
17848 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17849 N0.getOpcode() == ISD::ADD &&
17850 N0.getOperand(1) == N1 &&
17851 N1.getOpcode() == ISD::SRA &&
17852 N1.getOperand(0) == N0.getOperand(0))
17853 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17854 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17855 // Generate SUB & CMOV.
17856 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17857 DAG.getConstant(0, VT), N0.getOperand(0));
17858
17859 SDValue Ops[] = { N0.getOperand(0), Neg,
17860 DAG.getConstant(X86::COND_GE, MVT::i8),
17861 SDValue(Neg.getNode(), 1) };
17862 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17863 Ops, array_lengthof(Ops));
17864 }
17865 return SDValue();
17866}
17867
Craig Topper3738ccd2011-12-27 06:27:23 +000017868// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017869static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17870 TargetLowering::DAGCombinerInfo &DCI,
17871 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017872 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017873 if (DCI.isBeforeLegalizeOps())
17874 return SDValue();
17875
Manman Ren45d53b82012-06-08 18:58:26 +000017876 if (Subtarget->hasCMov()) {
17877 SDValue RV = performIntegerAbsCombine(N, DAG);
17878 if (RV.getNode())
17879 return RV;
17880 }
Manman Ren92363622012-06-07 22:39:10 +000017881
17882 // Try forming BMI if it is available.
17883 if (!Subtarget->hasBMI())
17884 return SDValue();
17885
Craig Topperb4c94572011-10-21 06:55:01 +000017886 if (VT != MVT::i32 && VT != MVT::i64)
17887 return SDValue();
17888
Craig Topper3738ccd2011-12-27 06:27:23 +000017889 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17890
Craig Topperb4c94572011-10-21 06:55:01 +000017891 // Create BLSMSK instructions by finding X ^ (X-1)
17892 SDValue N0 = N->getOperand(0);
17893 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017894 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017895
17896 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17897 isAllOnes(N0.getOperand(1)))
17898 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17899
17900 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17901 isAllOnes(N1.getOperand(1)))
17902 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17903
17904 return SDValue();
17905}
17906
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017907/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17908static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017909 TargetLowering::DAGCombinerInfo &DCI,
17910 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017911 LoadSDNode *Ld = cast<LoadSDNode>(N);
17912 EVT RegVT = Ld->getValueType(0);
17913 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017914 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017915 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017916 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017917
Michael Liaod4584c92013-03-25 23:50:10 +000017918 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017919 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017920 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017921 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017922 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017923 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017924 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017925 if (NumElems < 2)
17926 return SDValue();
17927
Nadav Rotem48177ac2013-01-18 23:10:30 +000017928 SDValue Ptr = Ld->getBasePtr();
17929 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17930
17931 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17932 NumElems/2);
17933 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17934 Ld->getPointerInfo(), Ld->isVolatile(),
17935 Ld->isNonTemporal(), Ld->isInvariant(),
17936 Alignment);
17937 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17938 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17939 Ld->getPointerInfo(), Ld->isVolatile(),
17940 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017941 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017942 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17943 Load1.getValue(1),
17944 Load2.getValue(1));
17945
17946 SDValue NewVec = DAG.getUNDEF(RegVT);
17947 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17948 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17949 return DCI.CombineTo(N, NewVec, TF, true);
17950 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017951
Nadav Rotemca6f2962011-09-18 19:00:23 +000017952 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017953 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17954 // expansion is still better than scalar code.
17955 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17956 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017957 // TODO: It is possible to support ZExt by zeroing the undef values
17958 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000017959 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17960 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017961 assert(MemVT != RegVT && "Cannot extend to the same type");
17962 assert(MemVT.isVector() && "Must load a vector from memory");
17963
17964 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017965 unsigned MemSz = MemVT.getSizeInBits();
17966 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017967
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017968 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17969 return SDValue();
17970
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017971 // All sizes must be a power of two.
17972 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17973 return SDValue();
17974
17975 // Attempt to load the original value using scalar loads.
17976 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017977 MVT SclrLoadTy = MVT::i8;
17978 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17979 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17980 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017981 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017982 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017983 }
17984 }
17985
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017986 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17987 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17988 (64 <= MemSz))
17989 SclrLoadTy = MVT::f64;
17990
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017991 // Calculate the number of scalar loads that we need to perform
17992 // in order to load our vector from memory.
17993 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017994 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17995 return SDValue();
17996
17997 unsigned loadRegZize = RegSz;
17998 if (Ext == ISD::SEXTLOAD && RegSz == 256)
17999 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018000
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018001 // Represent our vector as a sequence of elements which are the
18002 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018003 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018004 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018005
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018006 // Represent the data using the same element type that is stored in
18007 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018008 EVT WideVecVT =
18009 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018010 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018011
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018012 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18013 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018014
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018015 // We can't shuffle using an illegal type.
18016 if (!TLI.isTypeLegal(WideVecVT))
18017 return SDValue();
18018
18019 SmallVector<SDValue, 8> Chains;
18020 SDValue Ptr = Ld->getBasePtr();
18021 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18022 TLI.getPointerTy());
18023 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18024
18025 for (unsigned i = 0; i < NumLoads; ++i) {
18026 // Perform a single load.
18027 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18028 Ptr, Ld->getPointerInfo(),
18029 Ld->isVolatile(), Ld->isNonTemporal(),
18030 Ld->isInvariant(), Ld->getAlignment());
18031 Chains.push_back(ScalarLoad.getValue(1));
18032 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18033 // another round of DAGCombining.
18034 if (i == 0)
18035 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18036 else
18037 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18038 ScalarLoad, DAG.getIntPtrConstant(i));
18039
18040 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18041 }
18042
18043 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18044 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018045
18046 // Bitcast the loaded value to a vector of the original element type, in
18047 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018048 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018049 unsigned SizeRatio = RegSz/MemSz;
18050
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018051 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018052 // If we have SSE4.1 we can directly emit a VSEXT node.
18053 if (Subtarget->hasSSE41()) {
18054 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18055 return DCI.CombineTo(N, Sext, TF, true);
18056 }
18057
18058 // Otherwise we'll shuffle the small elements in the high bits of the
18059 // larger type and perform an arithmetic shift. If the shift is not legal
18060 // it's better to scalarize.
18061 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18062 return SDValue();
18063
18064 // Redistribute the loaded elements into the different locations.
18065 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18066 for (unsigned i = 0; i != NumElems; ++i)
18067 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18068
18069 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18070 DAG.getUNDEF(WideVecVT),
18071 &ShuffleVec[0]);
18072
18073 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18074
18075 // Build the arithmetic shift.
18076 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18077 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018078 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18079 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018080
18081 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018082 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018083
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018084 // Redistribute the loaded elements into the different locations.
18085 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018086 for (unsigned i = 0; i != NumElems; ++i)
18087 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018088
18089 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018090 DAG.getUNDEF(WideVecVT),
18091 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018092
18093 // Bitcast to the requested type.
18094 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18095 // Replace the original load with the new sequence
18096 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018097 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018098 }
18099
18100 return SDValue();
18101}
18102
Chris Lattner149a4e52008-02-22 02:09:43 +000018103/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018104static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018105 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018106 StoreSDNode *St = cast<StoreSDNode>(N);
18107 EVT VT = St->getValue().getValueType();
18108 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018109 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018110 SDValue StoredVal = St->getOperand(1);
18111 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18112
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018113 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018114 // On Sandy Bridge, 256-bit memory operations are executed by two
18115 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18116 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018117 unsigned Alignment = St->getAlignment();
18118 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018119 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018120 StVT == VT && !IsAligned) {
18121 unsigned NumElems = VT.getVectorNumElements();
18122 if (NumElems < 2)
18123 return SDValue();
18124
18125 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18126 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018127
18128 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18129 SDValue Ptr0 = St->getBasePtr();
18130 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18131
18132 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18133 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018134 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018135 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18136 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018137 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018138 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018139 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18140 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018141
18142 // Optimize trunc store (of multiple scalars) to shuffle and store.
18143 // First, pack all of the elements in one place. Next, store to memory
18144 // in fewer chunks.
18145 if (St->isTruncatingStore() && VT.isVector()) {
18146 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18147 unsigned NumElems = VT.getVectorNumElements();
18148 assert(StVT != VT && "Cannot truncate to the same type");
18149 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18150 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18151
18152 // From, To sizes and ElemCount must be pow of two
18153 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018154 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018155 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018156 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018157
Nadav Rotem614061b2011-08-10 19:30:14 +000018158 unsigned SizeRatio = FromSz / ToSz;
18159
18160 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18161
18162 // Create a type on which we perform the shuffle
18163 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18164 StVT.getScalarType(), NumElems*SizeRatio);
18165
18166 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18167
18168 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18169 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018170 for (unsigned i = 0; i != NumElems; ++i)
18171 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018172
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018173 // Can't shuffle using an illegal type.
18174 if (!TLI.isTypeLegal(WideVecVT))
18175 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018176
18177 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018178 DAG.getUNDEF(WideVecVT),
18179 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018180 // At this point all of the data is stored at the bottom of the
18181 // register. We now need to save it to mem.
18182
18183 // Find the largest store unit
18184 MVT StoreType = MVT::i8;
18185 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18186 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18187 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018188 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018189 StoreType = Tp;
18190 }
18191
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018192 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18193 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18194 (64 <= NumElems * ToSz))
18195 StoreType = MVT::f64;
18196
Nadav Rotem614061b2011-08-10 19:30:14 +000018197 // Bitcast the original vector into a vector of store-size units
18198 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018199 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018200 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18201 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18202 SmallVector<SDValue, 8> Chains;
18203 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18204 TLI.getPointerTy());
18205 SDValue Ptr = St->getBasePtr();
18206
18207 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018208 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018209 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18210 StoreType, ShuffWide,
18211 DAG.getIntPtrConstant(i));
18212 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18213 St->getPointerInfo(), St->isVolatile(),
18214 St->isNonTemporal(), St->getAlignment());
18215 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18216 Chains.push_back(Ch);
18217 }
18218
18219 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18220 Chains.size());
18221 }
18222
Chris Lattner149a4e52008-02-22 02:09:43 +000018223 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18224 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018225 // A preferable solution to the general problem is to figure out the right
18226 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018227
18228 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018229 if (VT.getSizeInBits() != 64)
18230 return SDValue();
18231
Devang Patel578efa92009-06-05 21:57:13 +000018232 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018233 bool NoImplicitFloatOps = F->getAttributes().
18234 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018235 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018236 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018237 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018238 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018239 isa<LoadSDNode>(St->getValue()) &&
18240 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18241 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018242 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018243 LoadSDNode *Ld = 0;
18244 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018245 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018246 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018247 // Must be a store of a load. We currently handle two cases: the load
18248 // is a direct child, and it's under an intervening TokenFactor. It is
18249 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018250 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018251 Ld = cast<LoadSDNode>(St->getChain());
18252 else if (St->getValue().hasOneUse() &&
18253 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018254 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018255 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018256 TokenFactorIndex = i;
18257 Ld = cast<LoadSDNode>(St->getValue());
18258 } else
18259 Ops.push_back(ChainVal->getOperand(i));
18260 }
18261 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018262
Evan Cheng536e6672009-03-12 05:59:15 +000018263 if (!Ld || !ISD::isNormalLoad(Ld))
18264 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018265
Evan Cheng536e6672009-03-12 05:59:15 +000018266 // If this is not the MMX case, i.e. we are just turning i64 load/store
18267 // into f64 load/store, avoid the transformation if there are multiple
18268 // uses of the loaded value.
18269 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18270 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018271
Andrew Trickac6d9be2013-05-25 02:42:55 +000018272 SDLoc LdDL(Ld);
18273 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018274 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18275 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18276 // pair instead.
18277 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018278 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018279 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18280 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018281 Ld->isNonTemporal(), Ld->isInvariant(),
18282 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018283 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018284 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018285 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018286 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018287 Ops.size());
18288 }
Evan Cheng536e6672009-03-12 05:59:15 +000018289 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018290 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018291 St->isVolatile(), St->isNonTemporal(),
18292 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018293 }
Evan Cheng536e6672009-03-12 05:59:15 +000018294
18295 // Otherwise, lower to two pairs of 32-bit loads / stores.
18296 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018297 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18298 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018299
Owen Anderson825b72b2009-08-11 20:47:22 +000018300 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018301 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018302 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018303 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018304 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018305 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018306 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018307 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018308 MinAlign(Ld->getAlignment(), 4));
18309
18310 SDValue NewChain = LoLd.getValue(1);
18311 if (TokenFactorIndex != -1) {
18312 Ops.push_back(LoLd);
18313 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018314 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018315 Ops.size());
18316 }
18317
18318 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018319 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18320 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018321
18322 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018323 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018324 St->isVolatile(), St->isNonTemporal(),
18325 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018326 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018327 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018328 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018329 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018330 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018331 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018332 }
Dan Gohman475871a2008-07-27 21:46:04 +000018333 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018334}
18335
Duncan Sands17470be2011-09-22 20:15:48 +000018336/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18337/// and return the operands for the horizontal operation in LHS and RHS. A
18338/// horizontal operation performs the binary operation on successive elements
18339/// of its first operand, then on successive elements of its second operand,
18340/// returning the resulting values in a vector. For example, if
18341/// A = < float a0, float a1, float a2, float a3 >
18342/// and
18343/// B = < float b0, float b1, float b2, float b3 >
18344/// then the result of doing a horizontal operation on A and B is
18345/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18346/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18347/// A horizontal-op B, for some already available A and B, and if so then LHS is
18348/// set to A, RHS to B, and the routine returns 'true'.
18349/// Note that the binary operation should have the property that if one of the
18350/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018351static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018352 // Look for the following pattern: if
18353 // A = < float a0, float a1, float a2, float a3 >
18354 // B = < float b0, float b1, float b2, float b3 >
18355 // and
18356 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18357 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18358 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18359 // which is A horizontal-op B.
18360
18361 // At least one of the operands should be a vector shuffle.
18362 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18363 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18364 return false;
18365
Craig Topper5a0910b2013-08-15 02:33:50 +000018366 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018367
18368 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18369 "Unsupported vector type for horizontal add/sub");
18370
18371 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18372 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018373 unsigned NumElts = VT.getVectorNumElements();
18374 unsigned NumLanes = VT.getSizeInBits()/128;
18375 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018376 assert((NumLaneElts % 2 == 0) &&
18377 "Vector type should have an even number of elements in each lane");
18378 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018379
18380 // View LHS in the form
18381 // LHS = VECTOR_SHUFFLE A, B, LMask
18382 // If LHS is not a shuffle then pretend it is the shuffle
18383 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18384 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18385 // type VT.
18386 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018387 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018388 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18389 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18390 A = LHS.getOperand(0);
18391 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18392 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018393 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18394 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018395 } else {
18396 if (LHS.getOpcode() != ISD::UNDEF)
18397 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018398 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018399 LMask[i] = i;
18400 }
18401
18402 // Likewise, view RHS in the form
18403 // RHS = VECTOR_SHUFFLE C, D, RMask
18404 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018405 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018406 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18407 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18408 C = RHS.getOperand(0);
18409 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18410 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018411 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18412 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018413 } else {
18414 if (RHS.getOpcode() != ISD::UNDEF)
18415 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018416 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018417 RMask[i] = i;
18418 }
18419
18420 // Check that the shuffles are both shuffling the same vectors.
18421 if (!(A == C && B == D) && !(A == D && B == C))
18422 return false;
18423
18424 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18425 if (!A.getNode() && !B.getNode())
18426 return false;
18427
18428 // If A and B occur in reverse order in RHS, then "swap" them (which means
18429 // rewriting the mask).
18430 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018431 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018432
18433 // At this point LHS and RHS are equivalent to
18434 // LHS = VECTOR_SHUFFLE A, B, LMask
18435 // RHS = VECTOR_SHUFFLE A, B, RMask
18436 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018437 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18438 for (unsigned i = 0; i != NumLaneElts; ++i) {
18439 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018440
Craig Topper57bc5a02013-08-06 06:54:25 +000018441 // Ignore any UNDEF components.
18442 if (LIdx < 0 || RIdx < 0 ||
18443 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18444 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18445 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018446
Craig Topper57bc5a02013-08-06 06:54:25 +000018447 // Check that successive elements are being operated on. If not, this is
18448 // not a horizontal operation.
18449 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18450 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18451 if (!(LIdx == Index && RIdx == Index + 1) &&
18452 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18453 return false;
18454 }
Duncan Sands17470be2011-09-22 20:15:48 +000018455 }
18456
18457 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18458 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18459 return true;
18460}
18461
18462/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18463static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18464 const X86Subtarget *Subtarget) {
18465 EVT VT = N->getValueType(0);
18466 SDValue LHS = N->getOperand(0);
18467 SDValue RHS = N->getOperand(1);
18468
18469 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018470 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018471 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018472 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018473 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018474 return SDValue();
18475}
18476
18477/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18478static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18479 const X86Subtarget *Subtarget) {
18480 EVT VT = N->getValueType(0);
18481 SDValue LHS = N->getOperand(0);
18482 SDValue RHS = N->getOperand(1);
18483
18484 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018485 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018486 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018487 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018488 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018489 return SDValue();
18490}
18491
Chris Lattner6cf73262008-01-25 06:14:17 +000018492/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18493/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018494static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018495 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18496 // F[X]OR(0.0, x) -> x
18497 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018498 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18499 if (C->getValueAPF().isPosZero())
18500 return N->getOperand(1);
18501 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18502 if (C->getValueAPF().isPosZero())
18503 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018504 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018505}
18506
Nadav Rotemd60cb112012-08-19 13:06:16 +000018507/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18508/// X86ISD::FMAX nodes.
18509static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18510 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18511
18512 // Only perform optimizations if UnsafeMath is used.
18513 if (!DAG.getTarget().Options.UnsafeFPMath)
18514 return SDValue();
18515
18516 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018517 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018518 unsigned NewOp = 0;
18519 switch (N->getOpcode()) {
18520 default: llvm_unreachable("unknown opcode");
18521 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18522 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18523 }
18524
Andrew Trickac6d9be2013-05-25 02:42:55 +000018525 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018526 N->getOperand(0), N->getOperand(1));
18527}
18528
Chris Lattneraf723b92008-01-25 05:46:26 +000018529/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018530static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018531 // FAND(0.0, x) -> 0.0
18532 // FAND(x, 0.0) -> 0.0
18533 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18534 if (C->getValueAPF().isPosZero())
18535 return N->getOperand(0);
18536 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18537 if (C->getValueAPF().isPosZero())
18538 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018539 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018540}
18541
Benjamin Kramer75311b72013-08-04 12:05:16 +000018542/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18543static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18544 // FANDN(x, 0.0) -> 0.0
18545 // FANDN(0.0, x) -> x
18546 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18547 if (C->getValueAPF().isPosZero())
18548 return N->getOperand(1);
18549 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18550 if (C->getValueAPF().isPosZero())
18551 return N->getOperand(1);
18552 return SDValue();
18553}
18554
Dan Gohmane5af2d32009-01-29 01:59:02 +000018555static SDValue PerformBTCombine(SDNode *N,
18556 SelectionDAG &DAG,
18557 TargetLowering::DAGCombinerInfo &DCI) {
18558 // BT ignores high bits in the bit index operand.
18559 SDValue Op1 = N->getOperand(1);
18560 if (Op1.hasOneUse()) {
18561 unsigned BitWidth = Op1.getValueSizeInBits();
18562 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18563 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018564 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18565 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018566 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018567 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18568 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18569 DCI.CommitTargetLoweringOpt(TLO);
18570 }
18571 return SDValue();
18572}
Chris Lattner83e6c992006-10-04 06:57:07 +000018573
Eli Friedman7a5e5552009-06-07 06:52:44 +000018574static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18575 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018576 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018577 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018578 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018579 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018580 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018581 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018582 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018583 }
18584 return SDValue();
18585}
18586
Matt Arsenault225ed702013-05-18 00:21:46 +000018587static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018588 const X86Subtarget *Subtarget) {
18589 EVT VT = N->getValueType(0);
18590 if (!VT.isVector())
18591 return SDValue();
18592
18593 SDValue N0 = N->getOperand(0);
18594 SDValue N1 = N->getOperand(1);
18595 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018596 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018597
18598 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18599 // both SSE and AVX2 since there is no sign-extended shift right
18600 // operation on a vector with 64-bit elements.
18601 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18602 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18603 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18604 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18605 SDValue N00 = N0.getOperand(0);
18606
Matt Arsenault225ed702013-05-18 00:21:46 +000018607 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018608 // it may be replaced with X86ISD::VSEXT node.
18609 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18610 if (!ISD::isNormalLoad(N00.getNode()))
18611 return SDValue();
18612
18613 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018614 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018615 N00, N1);
18616 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18617 }
18618 }
18619 return SDValue();
18620}
18621
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018622static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18623 TargetLowering::DAGCombinerInfo &DCI,
18624 const X86Subtarget *Subtarget) {
18625 if (!DCI.isBeforeLegalizeOps())
18626 return SDValue();
18627
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018628 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018629 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018630
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018631 EVT VT = N->getValueType(0);
18632 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018633 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18634 if (R.getNode())
18635 return R;
18636 }
18637
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018638 return SDValue();
18639}
18640
Michael Liaof6c24ee2012-08-10 14:39:24 +000018641static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018642 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018643 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018644 EVT VT = N->getValueType(0);
18645
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018646 // Let legalize expand this if it isn't a legal type yet.
18647 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18648 return SDValue();
18649
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018650 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018651 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18652 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018653 return SDValue();
18654
18655 SDValue A = N->getOperand(0);
18656 SDValue B = N->getOperand(1);
18657 SDValue C = N->getOperand(2);
18658
18659 bool NegA = (A.getOpcode() == ISD::FNEG);
18660 bool NegB = (B.getOpcode() == ISD::FNEG);
18661 bool NegC = (C.getOpcode() == ISD::FNEG);
18662
Michael Liaof6c24ee2012-08-10 14:39:24 +000018663 // Negative multiplication when NegA xor NegB
18664 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018665 if (NegA)
18666 A = A.getOperand(0);
18667 if (NegB)
18668 B = B.getOperand(0);
18669 if (NegC)
18670 C = C.getOperand(0);
18671
18672 unsigned Opcode;
18673 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018674 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018675 else
Craig Topperbf404372012-08-31 15:40:30 +000018676 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18677
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018678 return DAG.getNode(Opcode, dl, VT, A, B, C);
18679}
18680
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018681static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018682 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018683 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018684 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18685 // (and (i32 x86isd::setcc_carry), 1)
18686 // This eliminates the zext. This transformation is necessary because
18687 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018688 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018689 SDValue N0 = N->getOperand(0);
18690 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018691
Evan Cheng2e489c42009-12-16 00:53:11 +000018692 if (N0.getOpcode() == ISD::AND &&
18693 N0.hasOneUse() &&
18694 N0.getOperand(0).hasOneUse()) {
18695 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018696 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18697 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18698 if (!C || C->getZExtValue() != 1)
18699 return SDValue();
18700 return DAG.getNode(ISD::AND, dl, VT,
18701 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18702 N00.getOperand(0), N00.getOperand(1)),
18703 DAG.getConstant(1, VT));
18704 }
18705 }
18706
Craig Topper5a529e42013-01-18 06:44:29 +000018707 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018708 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18709 if (R.getNode())
18710 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018711 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018712
Evan Cheng2e489c42009-12-16 00:53:11 +000018713 return SDValue();
18714}
18715
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018716// Optimize x == -y --> x+y == 0
18717// x != -y --> x+y != 0
18718static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18719 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18720 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018721 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018722
18723 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18724 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18725 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018726 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018727 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018728 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018729 addV, DAG.getConstant(0, addV.getValueType()), CC);
18730 }
18731 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18732 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18733 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018734 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018735 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018736 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018737 addV, DAG.getConstant(0, addV.getValueType()), CC);
18738 }
18739 return SDValue();
18740}
18741
Eric Christophere187e252013-01-31 00:50:48 +000018742// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18743// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018744// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018745static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018746 return DAG.getNode(ISD::AND, DL, MVT::i8,
18747 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18748 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18749 DAG.getConstant(1, MVT::i8));
18750}
18751
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018752// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018753static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18754 TargetLowering::DAGCombinerInfo &DCI,
18755 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018756 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018757 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18758 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018759
Shuxin Yanga5526a92012-10-31 23:11:48 +000018760 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018761 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018762 // materializing "setb reg".
18763 //
18764 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18765 // cannot take an immediate as its first operand.
18766 //
Eric Christophere187e252013-01-31 00:50:48 +000018767 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018768 EFLAGS.getValueType().isInteger() &&
18769 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018770 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018771 EFLAGS.getNode()->getVTList(),
18772 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18773 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18774 return MaterializeSETB(DL, NewEFLAGS, DAG);
18775 }
18776 }
18777
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018778 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18779 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18780 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018781 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018782 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018783
Michael Liao2a33cec2012-08-10 19:58:13 +000018784 SDValue Flags;
18785
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018786 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18787 if (Flags.getNode()) {
18788 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18789 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18790 }
18791
Michael Liao2a33cec2012-08-10 19:58:13 +000018792 return SDValue();
18793}
18794
18795// Optimize branch condition evaluation.
18796//
18797static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18798 TargetLowering::DAGCombinerInfo &DCI,
18799 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018800 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018801 SDValue Chain = N->getOperand(0);
18802 SDValue Dest = N->getOperand(1);
18803 SDValue EFLAGS = N->getOperand(3);
18804 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18805
18806 SDValue Flags;
18807
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018808 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18809 if (Flags.getNode()) {
18810 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18811 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18812 Flags);
18813 }
18814
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018815 return SDValue();
18816}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018817
Benjamin Kramer1396c402011-06-18 11:09:41 +000018818static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18819 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018820 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018821 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018822
18823 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018824 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018825 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018826 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018827 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18828 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18829 }
18830
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018831 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18832 // a 32-bit target where SSE doesn't support i64->FP operations.
18833 if (Op0.getOpcode() == ISD::LOAD) {
18834 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18835 EVT VT = Ld->getValueType(0);
18836 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18837 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18838 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018839 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018840 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18841 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018842 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18843 return FILDChain;
18844 }
18845 }
18846 return SDValue();
18847}
18848
Chris Lattner23a01992010-12-20 01:37:09 +000018849// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18850static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18851 X86TargetLowering::DAGCombinerInfo &DCI) {
18852 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18853 // the result is either zero or one (depending on the input carry bit).
18854 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18855 if (X86::isZeroNode(N->getOperand(0)) &&
18856 X86::isZeroNode(N->getOperand(1)) &&
18857 // We don't have a good way to replace an EFLAGS use, so only do this when
18858 // dead right now.
18859 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018860 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018861 EVT VT = N->getValueType(0);
18862 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18863 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18864 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18865 DAG.getConstant(X86::COND_B,MVT::i8),
18866 N->getOperand(2)),
18867 DAG.getConstant(1, VT));
18868 return DCI.CombineTo(N, Res1, CarryOut);
18869 }
18870
18871 return SDValue();
18872}
18873
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018874// fold (add Y, (sete X, 0)) -> adc 0, Y
18875// (add Y, (setne X, 0)) -> sbb -1, Y
18876// (sub (sete X, 0), Y) -> sbb 0, Y
18877// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018878static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018879 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018880
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018881 // Look through ZExts.
18882 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18883 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18884 return SDValue();
18885
18886 SDValue SetCC = Ext.getOperand(0);
18887 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18888 return SDValue();
18889
18890 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18891 if (CC != X86::COND_E && CC != X86::COND_NE)
18892 return SDValue();
18893
18894 SDValue Cmp = SetCC.getOperand(1);
18895 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018896 !X86::isZeroNode(Cmp.getOperand(1)) ||
18897 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018898 return SDValue();
18899
18900 SDValue CmpOp0 = Cmp.getOperand(0);
18901 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18902 DAG.getConstant(1, CmpOp0.getValueType()));
18903
18904 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18905 if (CC == X86::COND_NE)
18906 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18907 DL, OtherVal.getValueType(), OtherVal,
18908 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18909 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18910 DL, OtherVal.getValueType(), OtherVal,
18911 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18912}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018913
Craig Topper54f952a2011-11-19 09:02:40 +000018914/// PerformADDCombine - Do target-specific dag combines on integer adds.
18915static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18916 const X86Subtarget *Subtarget) {
18917 EVT VT = N->getValueType(0);
18918 SDValue Op0 = N->getOperand(0);
18919 SDValue Op1 = N->getOperand(1);
18920
18921 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018922 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018923 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018924 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018925 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018926
18927 return OptimizeConditionalInDecrement(N, DAG);
18928}
18929
18930static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18931 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018932 SDValue Op0 = N->getOperand(0);
18933 SDValue Op1 = N->getOperand(1);
18934
18935 // X86 can't encode an immediate LHS of a sub. See if we can push the
18936 // negation into a preceding instruction.
18937 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018938 // If the RHS of the sub is a XOR with one use and a constant, invert the
18939 // immediate. Then add one to the LHS of the sub so we can turn
18940 // X-Y -> X+~Y+1, saving one register.
18941 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18942 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018943 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018944 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018945 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018946 Op1.getOperand(0),
18947 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018948 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018949 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018950 }
18951 }
18952
Craig Topper54f952a2011-11-19 09:02:40 +000018953 // Try to synthesize horizontal adds from adds of shuffles.
18954 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000018955 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018956 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000018957 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018958 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018959
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018960 return OptimizeConditionalInDecrement(N, DAG);
18961}
18962
Michael Liaod9d09602012-10-23 17:34:00 +000018963/// performVZEXTCombine - Performs build vector combines
18964static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18965 TargetLowering::DAGCombinerInfo &DCI,
18966 const X86Subtarget *Subtarget) {
18967 // (vzext (bitcast (vzext (x)) -> (vzext x)
18968 SDValue In = N->getOperand(0);
18969 while (In.getOpcode() == ISD::BITCAST)
18970 In = In.getOperand(0);
18971
18972 if (In.getOpcode() != X86ISD::VZEXT)
18973 return SDValue();
18974
Andrew Trickac6d9be2013-05-25 02:42:55 +000018975 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000018976 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000018977}
18978
Dan Gohman475871a2008-07-27 21:46:04 +000018979SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000018980 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000018981 SelectionDAG &DAG = DCI.DAG;
18982 switch (N->getOpcode()) {
18983 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000018984 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000018985 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000018986 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000018987 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018988 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000018989 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
18990 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000018991 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000018992 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000018993 case ISD::SHL:
18994 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000018995 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000018996 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000018997 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000018998 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018999 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019000 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019001 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019002 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19003 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019004 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019005 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019006 case X86ISD::FMIN:
19007 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019008 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019009 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019010 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019011 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019012 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019013 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019014 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019015 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019016 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019017 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019018 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019019 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019020 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019021 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019022 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019023 case X86ISD::UNPCKH:
19024 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019025 case X86ISD::MOVHLPS:
19026 case X86ISD::MOVLHPS:
19027 case X86ISD::PSHUFD:
19028 case X86ISD::PSHUFHW:
19029 case X86ISD::PSHUFLW:
19030 case X86ISD::MOVSS:
19031 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019032 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019033 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019034 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019035 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019036 }
19037
Dan Gohman475871a2008-07-27 21:46:04 +000019038 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019039}
19040
Evan Chenge5b51ac2010-04-17 06:13:15 +000019041/// isTypeDesirableForOp - Return true if the target has native support for
19042/// the specified value type and it is 'desirable' to use the type for the
19043/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19044/// instruction encodings are longer and some i16 instructions are slow.
19045bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19046 if (!isTypeLegal(VT))
19047 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019048 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019049 return true;
19050
19051 switch (Opc) {
19052 default:
19053 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019054 case ISD::LOAD:
19055 case ISD::SIGN_EXTEND:
19056 case ISD::ZERO_EXTEND:
19057 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019058 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019059 case ISD::SRL:
19060 case ISD::SUB:
19061 case ISD::ADD:
19062 case ISD::MUL:
19063 case ISD::AND:
19064 case ISD::OR:
19065 case ISD::XOR:
19066 return false;
19067 }
19068}
19069
19070/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019071/// beneficial for dag combiner to promote the specified node. If true, it
19072/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019073bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019074 EVT VT = Op.getValueType();
19075 if (VT != MVT::i16)
19076 return false;
19077
Evan Cheng4c26e932010-04-19 19:29:22 +000019078 bool Promote = false;
19079 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019080 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019081 default: break;
19082 case ISD::LOAD: {
19083 LoadSDNode *LD = cast<LoadSDNode>(Op);
19084 // If the non-extending load has a single use and it's not live out, then it
19085 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019086 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19087 Op.hasOneUse()*/) {
19088 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19089 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19090 // The only case where we'd want to promote LOAD (rather then it being
19091 // promoted as an operand is when it's only use is liveout.
19092 if (UI->getOpcode() != ISD::CopyToReg)
19093 return false;
19094 }
19095 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019096 Promote = true;
19097 break;
19098 }
19099 case ISD::SIGN_EXTEND:
19100 case ISD::ZERO_EXTEND:
19101 case ISD::ANY_EXTEND:
19102 Promote = true;
19103 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019104 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019105 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019106 SDValue N0 = Op.getOperand(0);
19107 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019108 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019109 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019110 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019111 break;
19112 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019113 case ISD::ADD:
19114 case ISD::MUL:
19115 case ISD::AND:
19116 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019117 case ISD::XOR:
19118 Commute = true;
19119 // fallthrough
19120 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019121 SDValue N0 = Op.getOperand(0);
19122 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019123 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019124 return false;
19125 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019126 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019127 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019128 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019129 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019130 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019131 }
19132 }
19133
19134 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019135 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019136}
19137
Evan Cheng60c07e12006-07-05 22:17:51 +000019138//===----------------------------------------------------------------------===//
19139// X86 Inline Assembly Support
19140//===----------------------------------------------------------------------===//
19141
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019142namespace {
19143 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019144 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019145 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019146
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019147 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019148 StringRef piece(*args[i]);
19149 if (!s.startswith(piece)) // Check if the piece matches.
19150 return false;
19151
19152 s = s.substr(piece.size());
19153 StringRef::size_type pos = s.find_first_not_of(" \t");
19154 if (pos == 0) // We matched a prefix.
19155 return false;
19156
19157 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019158 }
19159
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019160 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019161 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019162 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019163}
19164
Chris Lattnerb8105652009-07-20 17:51:36 +000019165bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19166 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019167
19168 std::string AsmStr = IA->getAsmString();
19169
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019170 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19171 if (!Ty || Ty->getBitWidth() % 16 != 0)
19172 return false;
19173
Chris Lattnerb8105652009-07-20 17:51:36 +000019174 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019175 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019176 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019177
19178 switch (AsmPieces.size()) {
19179 default: return false;
19180 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019181 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019182 // we will turn this bswap into something that will be lowered to logical
19183 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19184 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019185 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019186 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19187 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19188 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19189 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19190 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19191 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019192 // No need to check constraints, nothing other than the equivalent of
19193 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019194 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019195 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019196
Chris Lattnerb8105652009-07-20 17:51:36 +000019197 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019198 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019199 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019200 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19201 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019202 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019203 const std::string &ConstraintsStr = IA->getConstraintString();
19204 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019205 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000019206 if (AsmPieces.size() == 4 &&
19207 AsmPieces[0] == "~{cc}" &&
19208 AsmPieces[1] == "~{dirflag}" &&
19209 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019210 AsmPieces[3] == "~{fpsr}")
19211 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019212 }
19213 break;
19214 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019215 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019216 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019217 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19218 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19219 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019220 AsmPieces.clear();
19221 const std::string &ConstraintsStr = IA->getConstraintString();
19222 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019223 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019224 if (AsmPieces.size() == 4 &&
19225 AsmPieces[0] == "~{cc}" &&
19226 AsmPieces[1] == "~{dirflag}" &&
19227 AsmPieces[2] == "~{flags}" &&
19228 AsmPieces[3] == "~{fpsr}")
19229 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019230 }
Evan Cheng55d42002011-01-08 01:24:27 +000019231
19232 if (CI->getType()->isIntegerTy(64)) {
19233 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19234 if (Constraints.size() >= 2 &&
19235 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19236 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19237 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019238 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19239 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19240 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019241 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019242 }
19243 }
19244 break;
19245 }
19246 return false;
19247}
19248
Chris Lattnerf4dff842006-07-11 02:54:03 +000019249/// getConstraintType - Given a constraint letter, return the type of
19250/// constraint it is for this target.
19251X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019252X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19253 if (Constraint.size() == 1) {
19254 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019255 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019256 case 'q':
19257 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019258 case 'f':
19259 case 't':
19260 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019261 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019262 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019263 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019264 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019265 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019266 case 'a':
19267 case 'b':
19268 case 'c':
19269 case 'd':
19270 case 'S':
19271 case 'D':
19272 case 'A':
19273 return C_Register;
19274 case 'I':
19275 case 'J':
19276 case 'K':
19277 case 'L':
19278 case 'M':
19279 case 'N':
19280 case 'G':
19281 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019282 case 'e':
19283 case 'Z':
19284 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019285 default:
19286 break;
19287 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019288 }
Chris Lattner4234f572007-03-25 02:14:49 +000019289 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019290}
19291
John Thompson44ab89e2010-10-29 17:29:13 +000019292/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019293/// This object must already have been set up with the operand type
19294/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019295TargetLowering::ConstraintWeight
19296 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019297 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019298 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019299 Value *CallOperandVal = info.CallOperandVal;
19300 // If we don't have a value, we can't do a match,
19301 // but allow it at the lowest weight.
19302 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019303 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019304 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019305 // Look at the constraint type.
19306 switch (*constraint) {
19307 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019308 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19309 case 'R':
19310 case 'q':
19311 case 'Q':
19312 case 'a':
19313 case 'b':
19314 case 'c':
19315 case 'd':
19316 case 'S':
19317 case 'D':
19318 case 'A':
19319 if (CallOperandVal->getType()->isIntegerTy())
19320 weight = CW_SpecificReg;
19321 break;
19322 case 'f':
19323 case 't':
19324 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019325 if (type->isFloatingPointTy())
19326 weight = CW_SpecificReg;
19327 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019328 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019329 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19330 weight = CW_SpecificReg;
19331 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019332 case 'x':
19333 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019334 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019335 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019336 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019337 break;
19338 case 'I':
19339 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19340 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019341 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019342 }
19343 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019344 case 'J':
19345 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19346 if (C->getZExtValue() <= 63)
19347 weight = CW_Constant;
19348 }
19349 break;
19350 case 'K':
19351 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19352 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19353 weight = CW_Constant;
19354 }
19355 break;
19356 case 'L':
19357 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19358 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19359 weight = CW_Constant;
19360 }
19361 break;
19362 case 'M':
19363 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19364 if (C->getZExtValue() <= 3)
19365 weight = CW_Constant;
19366 }
19367 break;
19368 case 'N':
19369 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19370 if (C->getZExtValue() <= 0xff)
19371 weight = CW_Constant;
19372 }
19373 break;
19374 case 'G':
19375 case 'C':
19376 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19377 weight = CW_Constant;
19378 }
19379 break;
19380 case 'e':
19381 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19382 if ((C->getSExtValue() >= -0x80000000LL) &&
19383 (C->getSExtValue() <= 0x7fffffffLL))
19384 weight = CW_Constant;
19385 }
19386 break;
19387 case 'Z':
19388 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19389 if (C->getZExtValue() <= 0xffffffff)
19390 weight = CW_Constant;
19391 }
19392 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019393 }
19394 return weight;
19395}
19396
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019397/// LowerXConstraint - try to replace an X constraint, which matches anything,
19398/// with another that has more specific requirements based on the type of the
19399/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019400const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019401LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019402 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19403 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019404 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019405 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019406 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019407 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019408 return "x";
19409 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019410
Chris Lattner5e764232008-04-26 23:02:14 +000019411 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019412}
19413
Chris Lattner48884cd2007-08-25 00:47:38 +000019414/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19415/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019416void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019417 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019418 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019419 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019420 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019421
Eric Christopher100c8332011-06-02 23:16:42 +000019422 // Only support length 1 constraints for now.
19423 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019424
Eric Christopher100c8332011-06-02 23:16:42 +000019425 char ConstraintLetter = Constraint[0];
19426 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019427 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019428 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019429 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019430 if (C->getZExtValue() <= 31) {
19431 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019432 break;
19433 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019434 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019435 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019436 case 'J':
19437 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019438 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019439 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19440 break;
19441 }
19442 }
19443 return;
19444 case 'K':
19445 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019446 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019447 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19448 break;
19449 }
19450 }
19451 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019452 case 'N':
19453 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019454 if (C->getZExtValue() <= 255) {
19455 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019456 break;
19457 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019458 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019459 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019460 case 'e': {
19461 // 32-bit signed value
19462 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019463 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19464 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019465 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019466 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019467 break;
19468 }
19469 // FIXME gcc accepts some relocatable values here too, but only in certain
19470 // memory models; it's complicated.
19471 }
19472 return;
19473 }
19474 case 'Z': {
19475 // 32-bit unsigned value
19476 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019477 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19478 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019479 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19480 break;
19481 }
19482 }
19483 // FIXME gcc accepts some relocatable values here too, but only in certain
19484 // memory models; it's complicated.
19485 return;
19486 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019487 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019488 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019489 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019490 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019491 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019492 break;
19493 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019494
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019495 // In any sort of PIC mode addresses need to be computed at runtime by
19496 // adding in a register or some sort of table lookup. These can't
19497 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019498 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019499 return;
19500
Chris Lattnerdc43a882007-05-03 16:52:29 +000019501 // If we are in non-pic codegen mode, we allow the address of a global (with
19502 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019503 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019504 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019505
Chris Lattner49921962009-05-08 18:23:14 +000019506 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19507 while (1) {
19508 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19509 Offset += GA->getOffset();
19510 break;
19511 } else if (Op.getOpcode() == ISD::ADD) {
19512 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19513 Offset += C->getZExtValue();
19514 Op = Op.getOperand(0);
19515 continue;
19516 }
19517 } else if (Op.getOpcode() == ISD::SUB) {
19518 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19519 Offset += -C->getZExtValue();
19520 Op = Op.getOperand(0);
19521 continue;
19522 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019523 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019524
Chris Lattner49921962009-05-08 18:23:14 +000019525 // Otherwise, this isn't something we can handle, reject it.
19526 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019527 }
Eric Christopherfd179292009-08-27 18:07:15 +000019528
Dan Gohman46510a72010-04-15 01:51:59 +000019529 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019530 // If we require an extra load to get this address, as in PIC mode, we
19531 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019532 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19533 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019534 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019535
Andrew Trickac6d9be2013-05-25 02:42:55 +000019536 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019537 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019538 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019539 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019540 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019541
Gabor Greifba36cb52008-08-28 21:40:38 +000019542 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019543 Ops.push_back(Result);
19544 return;
19545 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019546 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019547}
19548
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019549std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019550X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019551 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019552 // First, see if this is a constraint that directly corresponds to an LLVM
19553 // register class.
19554 if (Constraint.size() == 1) {
19555 // GCC Constraint Letters
19556 switch (Constraint[0]) {
19557 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019558 // TODO: Slight differences here in allocation order and leaving
19559 // RIP in the class. Do they matter any more here than they do
19560 // in the normal allocation?
19561 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19562 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019563 if (VT == MVT::i32 || VT == MVT::f32)
19564 return std::make_pair(0U, &X86::GR32RegClass);
19565 if (VT == MVT::i16)
19566 return std::make_pair(0U, &X86::GR16RegClass);
19567 if (VT == MVT::i8 || VT == MVT::i1)
19568 return std::make_pair(0U, &X86::GR8RegClass);
19569 if (VT == MVT::i64 || VT == MVT::f64)
19570 return std::make_pair(0U, &X86::GR64RegClass);
19571 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019572 }
19573 // 32-bit fallthrough
19574 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019575 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019576 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19577 if (VT == MVT::i16)
19578 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19579 if (VT == MVT::i8 || VT == MVT::i1)
19580 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19581 if (VT == MVT::i64)
19582 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019583 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019584 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019585 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019586 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019587 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019588 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019589 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019590 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019591 return std::make_pair(0U, &X86::GR32RegClass);
19592 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019593 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019594 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019595 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019596 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019597 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019598 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019599 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19600 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019601 case 'f': // FP Stack registers.
19602 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19603 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019604 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019605 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019606 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019607 return std::make_pair(0U, &X86::RFP64RegClass);
19608 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019609 case 'y': // MMX_REGS if MMX allowed.
19610 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019611 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019612 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019613 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019614 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019615 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019616 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019617
Chad Rosier5b3fca52013-06-22 18:37:38 +000019618 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019619 default: break;
19620 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019621 case MVT::f32:
19622 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019623 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019624 case MVT::f64:
19625 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019626 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019627 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019628 case MVT::v16i8:
19629 case MVT::v8i16:
19630 case MVT::v4i32:
19631 case MVT::v2i64:
19632 case MVT::v4f32:
19633 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019634 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019635 // AVX types.
19636 case MVT::v32i8:
19637 case MVT::v16i16:
19638 case MVT::v8i32:
19639 case MVT::v4i64:
19640 case MVT::v8f32:
19641 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019642 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019643 case MVT::v8f64:
19644 case MVT::v16f32:
19645 case MVT::v16i32:
19646 case MVT::v8i64:
19647 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019648 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019649 break;
19650 }
19651 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019652
Chris Lattnerf76d1802006-07-31 23:26:50 +000019653 // Use the default implementation in TargetLowering to convert the register
19654 // constraint into a member of a register class.
19655 std::pair<unsigned, const TargetRegisterClass*> Res;
19656 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019657
19658 // Not found as a standard register?
19659 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019660 // Map st(0) -> st(7) -> ST0
19661 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19662 tolower(Constraint[1]) == 's' &&
19663 tolower(Constraint[2]) == 't' &&
19664 Constraint[3] == '(' &&
19665 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19666 Constraint[5] == ')' &&
19667 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019668
Chris Lattner56d77c72009-09-13 22:41:48 +000019669 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019670 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019671 return Res;
19672 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019673
Chris Lattner56d77c72009-09-13 22:41:48 +000019674 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019675 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019676 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019677 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019678 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019679 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019680
19681 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019682 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019683 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019684 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019685 return Res;
19686 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019687
Dale Johannesen330169f2008-11-13 21:52:36 +000019688 // 'A' means EAX + EDX.
19689 if (Constraint == "A") {
19690 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019691 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019692 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019693 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019694 return Res;
19695 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019696
Chris Lattnerf76d1802006-07-31 23:26:50 +000019697 // Otherwise, check to see if this is a register class of the wrong value
19698 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19699 // turn into {ax},{dx}.
19700 if (Res.second->hasType(VT))
19701 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019702
Chris Lattnerf76d1802006-07-31 23:26:50 +000019703 // All of the single-register GCC register classes map their values onto
19704 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19705 // really want an 8-bit or 32-bit register, map to the appropriate register
19706 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019707 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019708 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019709 unsigned DestReg = 0;
19710 switch (Res.first) {
19711 default: break;
19712 case X86::AX: DestReg = X86::AL; break;
19713 case X86::DX: DestReg = X86::DL; break;
19714 case X86::CX: DestReg = X86::CL; break;
19715 case X86::BX: DestReg = X86::BL; break;
19716 }
19717 if (DestReg) {
19718 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019719 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019720 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019721 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019722 unsigned DestReg = 0;
19723 switch (Res.first) {
19724 default: break;
19725 case X86::AX: DestReg = X86::EAX; break;
19726 case X86::DX: DestReg = X86::EDX; break;
19727 case X86::CX: DestReg = X86::ECX; break;
19728 case X86::BX: DestReg = X86::EBX; break;
19729 case X86::SI: DestReg = X86::ESI; break;
19730 case X86::DI: DestReg = X86::EDI; break;
19731 case X86::BP: DestReg = X86::EBP; break;
19732 case X86::SP: DestReg = X86::ESP; break;
19733 }
19734 if (DestReg) {
19735 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019736 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019737 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019738 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019739 unsigned DestReg = 0;
19740 switch (Res.first) {
19741 default: break;
19742 case X86::AX: DestReg = X86::RAX; break;
19743 case X86::DX: DestReg = X86::RDX; break;
19744 case X86::CX: DestReg = X86::RCX; break;
19745 case X86::BX: DestReg = X86::RBX; break;
19746 case X86::SI: DestReg = X86::RSI; break;
19747 case X86::DI: DestReg = X86::RDI; break;
19748 case X86::BP: DestReg = X86::RBP; break;
19749 case X86::SP: DestReg = X86::RSP; break;
19750 }
19751 if (DestReg) {
19752 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019753 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019754 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019755 }
Craig Topperc9099502012-04-20 06:31:50 +000019756 } else if (Res.second == &X86::FR32RegClass ||
19757 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019758 Res.second == &X86::VR128RegClass ||
19759 Res.second == &X86::VR256RegClass ||
19760 Res.second == &X86::FR32XRegClass ||
19761 Res.second == &X86::FR64XRegClass ||
19762 Res.second == &X86::VR128XRegClass ||
19763 Res.second == &X86::VR256XRegClass ||
19764 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019765 // Handle references to XMM physical registers that got mapped into the
19766 // wrong class. This can happen with constraints like {xmm0} where the
19767 // target independent register mapper will just pick the first match it can
19768 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019769
19770 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019771 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019772 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019773 Res.second = &X86::FR64RegClass;
19774 else if (X86::VR128RegClass.hasType(VT))
19775 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019776 else if (X86::VR256RegClass.hasType(VT))
19777 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019778 else if (X86::VR512RegClass.hasType(VT))
19779 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019780 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019781
Chris Lattnerf76d1802006-07-31 23:26:50 +000019782 return Res;
19783}