blob: 4b11f2b61f3dc36dc9b54f64dcdc68e09ed4e472 [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Craig Topper1bf724b2012-02-19 07:15:48 +000016#include "X86ISelLowering.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000019#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/ADT/SmallSet.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/ADT/StringExtras.h"
25#include "llvm/ADT/VariadicFunction.h"
Evan Cheng55d42002011-01-08 01:24:27 +000026#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000030#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000031#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000033#include "llvm/IR/CallingConv.h"
34#include "llvm/IR/Constants.h"
35#include "llvm/IR/DerivedTypes.h"
36#include "llvm/IR/Function.h"
37#include "llvm/IR/GlobalAlias.h"
38#include "llvm/IR/GlobalVariable.h"
39#include "llvm/IR/Instructions.h"
40#include "llvm/IR/Intrinsics.h"
41#include "llvm/IR/LLVMContext.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000042#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000044#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000045#include "llvm/MC/MCSymbol.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000046#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/Support/Debug.h"
48#include "llvm/Support/ErrorHandling.h"
49#include "llvm/Support/MathExtras.h"
Rafael Espindola151ab3e2011-08-30 19:47:04 +000050#include "llvm/Target/TargetOptions.h"
Benjamin Kramer9c683542012-01-30 15:16:21 +000051#include <bitset>
Joerg Sonnenberger78cab942012-08-10 10:53:56 +000052#include <cctype>
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000053using namespace llvm;
54
Evan Chengb1712452010-01-27 06:25:16 +000055STATISTIC(NumTailCalls, "Number of tail calls");
56
Evan Cheng10e86422008-04-25 19:11:04 +000057// Forward declarations.
Andrew Trickac6d9be2013-05-25 02:42:55 +000058static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000059 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000060
Elena Demikhovsky83952512013-07-31 11:35:14 +000061static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62 SelectionDAG &DAG, SDLoc dl,
63 unsigned vectorWidth) {
64 assert((vectorWidth == 128 || vectorWidth == 256) &&
65 "Unsupported vector width");
David Greenea5f26012011-02-07 19:36:54 +000066 EVT VT = Vec.getValueType();
David Greenea5f26012011-02-07 19:36:54 +000067 EVT ElVT = VT.getVectorElementType();
Elena Demikhovsky83952512013-07-31 11:35:14 +000068 unsigned Factor = VT.getSizeInBits()/vectorWidth;
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000069 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000071
72 // Extract from UNDEF is UNDEF.
73 if (Vec.getOpcode() == ISD::UNDEF)
Craig Topper767b4f62012-04-22 19:29:34 +000074 return DAG.getUNDEF(ResultVT);
David Greenea5f26012011-02-07 19:36:54 +000075
Elena Demikhovsky83952512013-07-31 11:35:14 +000076 // Extract the relevant vectorWidth bits. Generate an EXTRACT_SUBVECTOR
77 unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +000078
Elena Demikhovsky83952512013-07-31 11:35:14 +000079 // This is the index of the first element of the vectorWidth-bit chunk
Craig Topperb14940a2012-04-22 20:55:18 +000080 // we want.
Elena Demikhovsky83952512013-07-31 11:35:14 +000081 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
Craig Topperb14940a2012-04-22 20:55:18 +000082 * ElemsPerChunk);
David Greenea5f26012011-02-07 19:36:54 +000083
Benjamin Kramer02c2ecf2013-03-07 18:48:40 +000084 // If the input is a buildvector just emit a smaller one.
85 if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86 return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87 Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
Craig Topperb8d9da12012-09-06 06:09:01 +000089 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
Craig Topperb14940a2012-04-22 20:55:18 +000090 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91 VecIdx);
David Greenea5f26012011-02-07 19:36:54 +000092
Craig Topperb14940a2012-04-22 20:55:18 +000093 return Result;
Elena Demikhovsky83952512013-07-31 11:35:14 +000094
95}
96/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
97/// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98/// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99/// instructions or a simple subregister reference. Idx is an index in the
100/// 128 bits we want. It need not be aligned to a 128-bit bounday. That makes
101/// lowering EXTRACT_VECTOR_ELT operations easier.
102static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103 SelectionDAG &DAG, SDLoc dl) {
Elena Demikhovsky093043c2013-07-31 12:03:08 +0000104 assert((Vec.getValueType().is256BitVector() ||
105 Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
Elena Demikhovsky83952512013-07-31 11:35:14 +0000106 return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
David Greenea5f26012011-02-07 19:36:54 +0000107}
108
Elena Demikhovsky83952512013-07-31 11:35:14 +0000109/// Generate a DAG to grab 256-bits from a 512-bit vector.
110static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111 SelectionDAG &DAG, SDLoc dl) {
112 assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113 return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114}
115
116static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117 unsigned IdxVal, SelectionDAG &DAG,
118 SDLoc dl, unsigned vectorWidth) {
119 assert((vectorWidth == 128 || vectorWidth == 256) &&
120 "Unsupported vector width");
121 // Inserting UNDEF is Result
122 if (Vec.getOpcode() == ISD::UNDEF)
123 return Result;
124 EVT VT = Vec.getValueType();
125 EVT ElVT = VT.getVectorElementType();
126 EVT ResultVT = Result.getValueType();
127
128 // Insert the relevant vectorWidth bits.
129 unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131 // This is the index of the first element of the vectorWidth-bit chunk
132 // we want.
133 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134 * ElemsPerChunk);
135
136 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137 return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138 VecIdx);
139}
David Greenea5f26012011-02-07 19:36:54 +0000140/// Generate a DAG to put 128-bits into a vector > 128 bits. This
Elena Demikhovsky83952512013-07-31 11:35:14 +0000141/// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142/// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
David Greene6b381262011-02-09 15:32:06 +0000143/// simple superregister reference. Idx is an index in the 128 bits
144/// we want. It need not be aligned to a 128-bit bounday. That makes
145/// lowering INSERT_VECTOR_ELT operations easier.
Craig Topperb14940a2012-04-22 20:55:18 +0000146static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147 unsigned IdxVal, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000148 SDLoc dl) {
Elena Demikhovsky83952512013-07-31 11:35:14 +0000149 assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151}
Craig Topper703c38b2012-06-20 05:39:26 +0000152
Elena Demikhovsky83952512013-07-31 11:35:14 +0000153static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154 unsigned IdxVal, SelectionDAG &DAG,
155 SDLoc dl) {
156 assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
David Greenea5f26012011-02-07 19:36:54 +0000158}
159
Craig Topper4c7972d2012-04-22 18:15:59 +0000160/// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161/// instructions. This is used because creating CONCAT_VECTOR nodes of
162/// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163/// large BUILD_VECTORS.
164static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165 unsigned NumElems, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000166 SDLoc dl) {
Craig Topperb14940a2012-04-22 20:55:18 +0000167 SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168 return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
Craig Topper4c7972d2012-04-22 18:15:59 +0000169}
170
Elena Demikhovsky83952512013-07-31 11:35:14 +0000171static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172 unsigned NumElems, SelectionDAG &DAG,
173 SDLoc dl) {
174 SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175 return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176}
177
Chris Lattnerf0144122009-07-28 03:13:23 +0000178static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000179 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000181
Evan Cheng2bffee22011-02-01 01:14:13 +0000182 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000183 if (is64Bit)
Bill Wendlinga44489d2012-06-26 10:05:06 +0000184 return new X86_64MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000185 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000186 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000187
Rafael Espindolad6b43a32012-06-19 00:48:28 +0000188 if (Subtarget->isTargetLinux())
189 return new X86LinuxTargetObjectFile();
Evan Cheng203576a2011-07-20 19:50:42 +0000190 if (Subtarget->isTargetELF())
191 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000192 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000193 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000194 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000195}
196
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000197X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000198 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000199 Subtarget = &TM.getSubtarget<X86Subtarget>();
Craig Topper1accb7e2012-01-10 06:54:16 +0000200 X86ScalarSSEf64 = Subtarget->hasSSE2();
201 X86ScalarSSEf32 = Subtarget->hasSSE1();
Micah Villmow3574eca2012-10-08 16:38:25 +0000202 TD = getDataLayout();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000203
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000204 resetOperationActions();
205}
206
207void X86TargetLowering::resetOperationActions() {
208 const TargetMachine &TM = getTargetMachine();
209 static bool FirstTimeThrough = true;
210
211 // If none of the target options have changed, then we don't need to reset the
212 // operation actions.
213 if (!FirstTimeThrough && TO == TM.Options) return;
214
215 if (!FirstTimeThrough) {
216 // Reinitialize the actions.
217 initActions();
218 FirstTimeThrough = false;
219 }
220
221 TO = TM.Options;
222
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000223 // Set up the TargetLowering object.
Craig Topper9e401f22012-04-21 18:58:38 +0000224 static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000225
226 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000227 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000228 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000230
Eric Christopherde5e1012011-03-11 01:05:58 +0000231 // For 64-bit since we have so many registers use the ILP scheduler, for
232 // 32-bit code use the register pressure specific scheduling.
Preston Gurdc0f0a932012-05-02 22:02:02 +0000233 // For Atom, always use ILP scheduling.
Chad Rosiera20e1e72012-08-01 18:39:17 +0000234 if (Subtarget->isAtom())
Eric Christopherde5e1012011-03-11 01:05:58 +0000235 setSchedulingPreference(Sched::ILP);
Preston Gurdc0f0a932012-05-02 22:02:02 +0000236 else if (Subtarget->is64Bit())
237 setSchedulingPreference(Sched::ILP);
Eric Christopherde5e1012011-03-11 01:05:58 +0000238 else
239 setSchedulingPreference(Sched::RegPressure);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +0000240 const X86RegisterInfo *RegInfo =
241 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Michael Liaoc5c970e2012-10-31 04:14:09 +0000242 setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
Evan Cheng714554d2006-03-16 21:47:42 +0000243
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000244 // Bypass expensive divides on Atom when compiling with O2
245 if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
Preston Gurd8d662b52012-10-04 21:33:40 +0000246 addBypassSlowDiv(32, 8);
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000247 if (Subtarget->is64Bit())
248 addBypassSlowDiv(64, 16);
249 }
Preston Gurd2e2efd92012-09-04 18:22:17 +0000250
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000251 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000252 // Setup Windows compiler runtime calls.
253 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000254 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000255 setLibcallName(RTLIB::SREM_I64, "_allrem");
256 setLibcallName(RTLIB::UREM_I64, "_aullrem");
257 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000258 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000259 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000260 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000263
264 // The _ftol2 runtime function has an unusual calling conv, which
265 // is modeled by a special pseudo-instruction.
266 setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267 setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268 setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269 setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000270 }
271
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000272 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000273 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000274 setUseUnderscoreSetJmp(false);
275 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000276 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000277 // MS runtime is weird: it exports _setjmp, but longjmp!
278 setUseUnderscoreSetJmp(true);
279 setUseUnderscoreLongJmp(false);
280 } else {
281 setUseUnderscoreSetJmp(true);
282 setUseUnderscoreLongJmp(true);
283 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000284
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000285 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000286 addRegisterClass(MVT::i8, &X86::GR8RegClass);
287 addRegisterClass(MVT::i16, &X86::GR16RegClass);
288 addRegisterClass(MVT::i32, &X86::GR32RegClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000289 if (Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +0000290 addRegisterClass(MVT::i64, &X86::GR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000291
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000293
Scott Michelfdc40a02009-02-17 22:15:04 +0000294 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000296 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000298 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000301
302 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000309
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000310 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
313 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
314 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000315
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling397ae212012-01-05 02:13:20 +0000318 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000319 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000320 // We have an algorithm for SSE2->double, and we turn this into a
321 // 64-bit FILD followed by conditional FADD for other targets.
322 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000323 // We have an algorithm for SSE2, and we turn this into a 64-bit
324 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000325 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000327
328 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000330 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
331 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000332
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000333 if (!TM.Options.UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000334 // SSE has no i16 to fp conversion, only i32
335 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000336 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000337 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000338 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000339 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000340 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
341 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000342 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000343 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
345 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000346 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000347
Dale Johannesen73328d12007-09-19 23:55:34 +0000348 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
349 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
351 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000352
Evan Cheng02568ff2006-01-30 22:13:22 +0000353 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000355 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
356 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000357
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000358 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000359 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000360 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000361 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000362 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000363 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
364 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000365 }
366
367 // Handle FP_TO_UINT by promoting the destination to a larger signed
368 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
370 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
371 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000372
Evan Cheng25ab6902006-09-08 06:48:29 +0000373 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000374 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
375 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000376 } else if (!TM.Options.UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000377 // Since AVX is a superset of SSE3, only check for SSE here.
378 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000379 // Expand FP_TO_UINT into a select.
380 // FIXME: We would like to use a Custom expander here eventually to do
381 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000383 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000384 // With SSE3 we can use fisttpll to convert to a signed i64; without
385 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000388
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000389 if (isTargetFTOL()) {
390 // Use the _ftol2 runtime function, which has a pseudo-instruction
391 // to handle its weird calling convention.
392 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Custom);
393 }
394
Chris Lattner399610a2006-12-05 18:22:22 +0000395 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000396 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000397 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
398 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000399 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000400 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000401 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000402 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000403 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000404 }
Chris Lattner21f66852005-12-23 05:15:23 +0000405
Dan Gohmanb00ee212008-02-18 19:34:53 +0000406 // Scalar integer divide and remainder are lowered to use operations that
407 // produce two results, to match the available instructions. This exposes
408 // the two-result form to trivial CSE, which is able to combine x/y and x%y
409 // into a single instruction.
410 //
411 // Scalar integer multiply-high is also lowered to use two-result
412 // operations, to match the available instructions. However, plain multiply
413 // (low) operations are left as Legal, as there are single-result
414 // instructions for this in x86. Using the two-result multiply instructions
415 // when both high and low results are needed must be arranged by dagcombine.
Craig Topper9e401f22012-04-21 18:58:38 +0000416 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000417 MVT VT = IntVTs[i];
418 setOperationAction(ISD::MULHS, VT, Expand);
419 setOperationAction(ISD::MULHU, VT, Expand);
420 setOperationAction(ISD::SDIV, VT, Expand);
421 setOperationAction(ISD::UDIV, VT, Expand);
422 setOperationAction(ISD::SREM, VT, Expand);
423 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000424
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000425 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000426 setOperationAction(ISD::ADDC, VT, Custom);
427 setOperationAction(ISD::ADDE, VT, Custom);
428 setOperationAction(ISD::SUBC, VT, Custom);
429 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000430 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000431
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
433 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Tom Stellard3ef53832013-03-08 15:36:57 +0000434 setOperationAction(ISD::BR_CC , MVT::f32, Expand);
435 setOperationAction(ISD::BR_CC , MVT::f64, Expand);
436 setOperationAction(ISD::BR_CC , MVT::f80, Expand);
437 setOperationAction(ISD::BR_CC , MVT::i8, Expand);
438 setOperationAction(ISD::BR_CC , MVT::i16, Expand);
439 setOperationAction(ISD::BR_CC , MVT::i32, Expand);
440 setOperationAction(ISD::BR_CC , MVT::i64, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000441 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000442 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
445 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
446 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
447 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
448 setOperationAction(ISD::FREM , MVT::f32 , Expand);
449 setOperationAction(ISD::FREM , MVT::f64 , Expand);
450 setOperationAction(ISD::FREM , MVT::f80 , Expand);
451 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Chandler Carruth77821022011-12-24 12:12:34 +0000453 // Promote the i8 variants and force them on up to i32 which has a shorter
454 // encoding.
455 setOperationAction(ISD::CTTZ , MVT::i8 , Promote);
456 AddPromotedToType (ISD::CTTZ , MVT::i8 , MVT::i32);
457 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i8 , Promote);
458 AddPromotedToType (ISD::CTTZ_ZERO_UNDEF , MVT::i8 , MVT::i32);
Craig Topper909652f2011-10-14 03:21:46 +0000459 if (Subtarget->hasBMI()) {
Chandler Carruthd873a4b2011-12-24 11:11:38 +0000460 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16 , Expand);
461 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32 , Expand);
462 if (Subtarget->is64Bit())
463 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper909652f2011-10-14 03:21:46 +0000464 } else {
Craig Topper909652f2011-10-14 03:21:46 +0000465 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
466 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
467 if (Subtarget->is64Bit())
468 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
469 }
Craig Topper37f21672011-10-11 06:44:02 +0000470
471 if (Subtarget->hasLZCNT()) {
Chandler Carruth77821022011-12-24 12:12:34 +0000472 // When promoting the i8 variants, force them to i32 for a shorter
473 // encoding.
Craig Topper37f21672011-10-11 06:44:02 +0000474 setOperationAction(ISD::CTLZ , MVT::i8 , Promote);
Chandler Carruth77821022011-12-24 12:12:34 +0000475 AddPromotedToType (ISD::CTLZ , MVT::i8 , MVT::i32);
476 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Promote);
477 AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8 , MVT::i32);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000478 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Expand);
479 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Expand);
480 if (Subtarget->is64Bit())
481 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper37f21672011-10-11 06:44:02 +0000482 } else {
483 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
484 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
485 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000486 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Custom);
487 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Custom);
488 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Custom);
489 if (Subtarget->is64Bit()) {
Craig Topper37f21672011-10-11 06:44:02 +0000490 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000491 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000493 }
494
Benjamin Kramer1292c222010-12-04 20:32:23 +0000495 if (Subtarget->hasPOPCNT()) {
496 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
497 } else {
498 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
499 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
500 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
501 if (Subtarget->is64Bit())
502 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
503 }
504
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
506 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000507
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000508 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000509 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000510 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000511 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000512 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000513 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
514 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
515 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
516 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
517 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000518 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000519 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
520 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
521 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
522 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000523 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000524 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000525 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000526 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000527 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Hal Finkele9150472013-03-27 19:10:42 +0000528 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Michael Liao6c0e04c2012-10-15 22:39:43 +0000529 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
Michael Liao281ae5a2012-10-17 02:22:27 +0000530 // support continuation, user-level threading, and etc.. As a result, no
Michael Liao6c0e04c2012-10-15 22:39:43 +0000531 // other SjLj exception interfaces are implemented and please don't build
532 // your own exception handling based on them.
533 // LLVM/Clang supports zero-cost DWARF exception handling.
534 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000536
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000537 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
539 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
540 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
541 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000542 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000543 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000545 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000546 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000547 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
548 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
549 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
550 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000551 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000552 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000553 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000554 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
555 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
556 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000557 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
559 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
560 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000561 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000562
Craig Topper1accb7e2012-01-10 06:54:16 +0000563 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000565
Eli Friedman14648462011-07-27 22:21:52 +0000566 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000567
Mon P Wang63307c32008-05-05 19:05:59 +0000568 // Expand certain atomics
Craig Topper9e401f22012-04-21 18:58:38 +0000569 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000570 MVT VT = IntVTs[i];
571 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000573 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000574 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000575
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000576 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000577 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Michael Liaoe5e8f762012-09-25 18:08:13 +0000585 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000589 }
590
Eli Friedman43f51ae2011-08-26 21:21:21 +0000591 if (Subtarget->hasCmpxchg16b()) {
592 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593 }
594
Evan Cheng3c992d22006-03-07 02:02:57 +0000595 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000596 if (!Subtarget->isTargetDarwin() &&
597 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000598 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000599 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000600 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000601
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000602 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000603 setExceptionPointerRegister(X86::RAX);
604 setExceptionSelectorRegister(X86::RDX);
605 } else {
606 setExceptionPointerRegister(X86::EAX);
607 setExceptionSelectorRegister(X86::EDX);
608 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000609 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000611
Duncan Sands4a544a72011-09-06 13:37:06 +0000612 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000614
Owen Anderson825b72b2009-08-11 20:47:22 +0000615 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Shuxin Yang970755e2012-10-19 20:11:16 +0000616 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000617
Nate Begemanacc398c2006-01-25 18:21:52 +0000618 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 setOperationAction(ISD::VASTART , MVT::Other, Custom);
620 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Nico Rieck944061c2013-07-29 13:07:06 +0000621 if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622 // TargetInfo::X86_64ABIBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 setOperationAction(ISD::VAARG , MVT::Other, Custom);
624 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000625 } else {
Nico Rieck944061c2013-07-29 13:07:06 +0000626 // TargetInfo::CharPtrBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 setOperationAction(ISD::VAARG , MVT::Other, Expand);
628 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000629 }
Evan Chengae642192007-03-02 23:16:35 +0000630
Owen Anderson825b72b2009-08-11 20:47:22 +0000631 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
632 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000633
634 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000637 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000638 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639 MVT::i64 : MVT::i32, Custom);
640 else
641 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000643
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000644 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000645 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000646 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000647 addRegisterClass(MVT::f32, &X86::FR32RegClass);
648 addRegisterClass(MVT::f64, &X86::FR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000649
Evan Cheng223547a2006-01-31 22:28:30 +0000650 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000651 setOperationAction(ISD::FABS , MVT::f64, Custom);
652 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000653
654 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000655 setOperationAction(ISD::FNEG , MVT::f64, Custom);
656 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000657
Evan Cheng68c47cb2007-01-05 07:55:56 +0000658 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000661
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000662 // Lower this to FGETSIGNx86 plus an AND.
663 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
Evan Chengd25e9e82006-02-02 00:28:23 +0000666 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000667 setOperationAction(ISD::FSIN , MVT::f64, Expand);
668 setOperationAction(ISD::FCOS , MVT::f64, Expand);
669 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670 setOperationAction(ISD::FSIN , MVT::f32, Expand);
671 setOperationAction(ISD::FCOS , MVT::f32, Expand);
672 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000673
Chris Lattnera54aa942006-01-29 06:26:08 +0000674 // Expand FP immediates into loads from the stack, except for the special
675 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000676 addLegalFPImmediate(APFloat(+0.0)); // xorpd
677 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000678 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000679 // Use SSE for f32, x87 for f64.
680 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000681 addRegisterClass(MVT::f32, &X86::FR32RegClass);
682 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000683
684 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000686
687 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000689
Owen Anderson825b72b2009-08-11 20:47:22 +0000690 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000691
692 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000693 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000695
696 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000697 setOperationAction(ISD::FSIN , MVT::f32, Expand);
698 setOperationAction(ISD::FCOS , MVT::f32, Expand);
699 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000700
Nate Begemane1795842008-02-14 08:57:00 +0000701 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000702 addLegalFPImmediate(APFloat(+0.0f)); // xorps
703 addLegalFPImmediate(APFloat(+0.0)); // FLD0
704 addLegalFPImmediate(APFloat(+1.0)); // FLD1
705 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000708 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000709 setOperationAction(ISD::FSIN , MVT::f64, Expand);
710 setOperationAction(ISD::FCOS , MVT::f64, Expand);
711 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000712 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000713 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000714 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000715 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000716 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717 addRegisterClass(MVT::f32, &X86::RFP32RegClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
720 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
721 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000723
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000724 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000725 setOperationAction(ISD::FSIN , MVT::f64, Expand);
726 setOperationAction(ISD::FSIN , MVT::f32, Expand);
727 setOperationAction(ISD::FCOS , MVT::f64, Expand);
728 setOperationAction(ISD::FCOS , MVT::f32, Expand);
729 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000731 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000732 addLegalFPImmediate(APFloat(+0.0)); // FLD0
733 addLegalFPImmediate(APFloat(+1.0)); // FLD1
734 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000736 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000740 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000741
Cameron Zwarich33390842011-07-08 21:39:21 +0000742 // We don't support FMA.
743 setOperationAction(ISD::FMA, MVT::f64, Expand);
744 setOperationAction(ISD::FMA, MVT::f32, Expand);
745
Dale Johannesen59a58732007-08-05 18:49:15 +0000746 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000747 if (!TM.Options.UseSoftFloat) {
Craig Topperc9099502012-04-20 06:31:50 +0000748 addRegisterClass(MVT::f80, &X86::RFP80RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000749 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
750 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000751 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000752 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000753 addLegalFPImmediate(TmpFlt); // FLD0
754 TmpFlt.changeSign();
755 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000756
757 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000758 APFloat TmpFlt2(+1.0);
759 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760 &ignored);
761 addLegalFPImmediate(TmpFlt2); // FLD1
762 TmpFlt2.changeSign();
763 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
764 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000765
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000766 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000767 setOperationAction(ISD::FSIN , MVT::f80, Expand);
768 setOperationAction(ISD::FCOS , MVT::f80, Expand);
769 setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000770 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000771
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000772 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
774 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775 setOperationAction(ISD::FRINT, MVT::f80, Expand);
776 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000777 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000778 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000779
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000780 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
782 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
783 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000784
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 setOperationAction(ISD::FLOG, MVT::f80, Expand);
786 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788 setOperationAction(ISD::FEXP, MVT::f80, Expand);
789 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000790
Mon P Wangf007a8b2008-11-06 05:31:54 +0000791 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000792 // (for widening) or expand (for scalarization). Then we will selectively
793 // turn on ones that can be effectively codegen'd.
Craig Topper55de3392012-11-14 06:41:09 +0000794 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper49010472012-11-15 06:51:10 +0000796 MVT VT = (MVT::SimpleValueType)i;
Craig Topper55de3392012-11-14 06:41:09 +0000797 setOperationAction(ISD::ADD , VT, Expand);
798 setOperationAction(ISD::SUB , VT, Expand);
799 setOperationAction(ISD::FADD, VT, Expand);
800 setOperationAction(ISD::FNEG, VT, Expand);
801 setOperationAction(ISD::FSUB, VT, Expand);
802 setOperationAction(ISD::MUL , VT, Expand);
803 setOperationAction(ISD::FMUL, VT, Expand);
804 setOperationAction(ISD::SDIV, VT, Expand);
805 setOperationAction(ISD::UDIV, VT, Expand);
806 setOperationAction(ISD::FDIV, VT, Expand);
807 setOperationAction(ISD::SREM, VT, Expand);
808 setOperationAction(ISD::UREM, VT, Expand);
809 setOperationAction(ISD::LOAD, VT, Expand);
810 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814 setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815 setOperationAction(ISD::FABS, VT, Expand);
816 setOperationAction(ISD::FSIN, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000817 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000818 setOperationAction(ISD::FCOS, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000819 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000820 setOperationAction(ISD::FREM, VT, Expand);
821 setOperationAction(ISD::FMA, VT, Expand);
822 setOperationAction(ISD::FPOWI, VT, Expand);
823 setOperationAction(ISD::FSQRT, VT, Expand);
824 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000826 setOperationAction(ISD::FCEIL, VT, Expand);
827 setOperationAction(ISD::FTRUNC, VT, Expand);
828 setOperationAction(ISD::FRINT, VT, Expand);
829 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000830 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832 setOperationAction(ISD::SDIVREM, VT, Expand);
833 setOperationAction(ISD::UDIVREM, VT, Expand);
834 setOperationAction(ISD::FPOW, VT, Expand);
835 setOperationAction(ISD::CTPOP, VT, Expand);
836 setOperationAction(ISD::CTTZ, VT, Expand);
837 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838 setOperationAction(ISD::CTLZ, VT, Expand);
839 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840 setOperationAction(ISD::SHL, VT, Expand);
841 setOperationAction(ISD::SRA, VT, Expand);
842 setOperationAction(ISD::SRL, VT, Expand);
843 setOperationAction(ISD::ROTL, VT, Expand);
844 setOperationAction(ISD::ROTR, VT, Expand);
845 setOperationAction(ISD::BSWAP, VT, Expand);
846 setOperationAction(ISD::SETCC, VT, Expand);
847 setOperationAction(ISD::FLOG, VT, Expand);
848 setOperationAction(ISD::FLOG2, VT, Expand);
849 setOperationAction(ISD::FLOG10, VT, Expand);
850 setOperationAction(ISD::FEXP, VT, Expand);
851 setOperationAction(ISD::FEXP2, VT, Expand);
852 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856 setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857 setOperationAction(ISD::TRUNCATE, VT, Expand);
858 setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859 setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860 setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861 setOperationAction(ISD::VSELECT, VT, Expand);
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000862 for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863 InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
Craig Topper55de3392012-11-14 06:41:09 +0000864 setTruncStoreAction(VT,
Dan Gohman2e141d72009-12-14 23:40:38 +0000865 (MVT::SimpleValueType)InnerVT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000866 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000869 }
870
Evan Chengc7ce29b2009-02-13 22:36:38 +0000871 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000873 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Craig Topperc9099502012-04-20 06:31:50 +0000874 addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000875 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000876 }
877
Dale Johannesen0488fb62010-09-30 23:57:10 +0000878 // MMX-sized vectors (other than x86mmx) are expected to be expanded
879 // into smaller operations.
880 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
881 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
882 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
883 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
884 setOperationAction(ISD::AND, MVT::v8i8, Expand);
885 setOperationAction(ISD::AND, MVT::v4i16, Expand);
886 setOperationAction(ISD::AND, MVT::v2i32, Expand);
887 setOperationAction(ISD::AND, MVT::v1i64, Expand);
888 setOperationAction(ISD::OR, MVT::v8i8, Expand);
889 setOperationAction(ISD::OR, MVT::v4i16, Expand);
890 setOperationAction(ISD::OR, MVT::v2i32, Expand);
891 setOperationAction(ISD::OR, MVT::v1i64, Expand);
892 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
893 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
894 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
895 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
896 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
897 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
898 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
899 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
900 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
901 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
902 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
903 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
904 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000905 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
906 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
907 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
908 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000909
Craig Topper1accb7e2012-01-10 06:54:16 +0000910 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
Craig Topperc9099502012-04-20 06:31:50 +0000911 addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000912
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
914 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
915 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
916 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
917 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
918 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000919 setOperationAction(ISD::FABS, MVT::v4f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
921 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
922 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
923 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000925 }
926
Craig Topper1accb7e2012-01-10 06:54:16 +0000927 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
Craig Topperc9099502012-04-20 06:31:50 +0000928 addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000929
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000930 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931 // registers cannot be used even for integer operations.
Craig Topperc9099502012-04-20 06:31:50 +0000932 addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933 addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934 addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935 addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000936
Owen Anderson825b72b2009-08-11 20:47:22 +0000937 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
938 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
939 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
940 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +0000941 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
943 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
944 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
945 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
946 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
947 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
948 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
949 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
950 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
951 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
952 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
953 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000954 setOperationAction(ISD::FABS, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000955
Nadav Rotem354efd82011-09-18 14:57:03 +0000956 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000957 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
958 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
959 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
962 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
963 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
964 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
965 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000966
Evan Cheng2c3ae372006-04-12 21:21:57 +0000967 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000968 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000969 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000970 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000971 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000972 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000973 // Do not attempt to custom lower non-128-bit vectors
974 if (!VT.is128BitVector())
975 continue;
Craig Topper0d1f1762012-08-12 00:34:56 +0000976 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
977 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
978 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000979 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000980
Owen Anderson825b72b2009-08-11 20:47:22 +0000981 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
982 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
983 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
984 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
985 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
986 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000987
Nate Begemancdd1eec2008-02-12 22:51:28 +0000988 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000989 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
990 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000991 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000992
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000993 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Craig Topper31a207a2012-05-04 06:39:13 +0000994 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000995 MVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000996
997 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000998 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000999 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001000
Craig Topper0d1f1762012-08-12 00:34:56 +00001001 setOperationAction(ISD::AND, VT, Promote);
1002 AddPromotedToType (ISD::AND, VT, MVT::v2i64);
1003 setOperationAction(ISD::OR, VT, Promote);
1004 AddPromotedToType (ISD::OR, VT, MVT::v2i64);
1005 setOperationAction(ISD::XOR, VT, Promote);
1006 AddPromotedToType (ISD::XOR, VT, MVT::v2i64);
1007 setOperationAction(ISD::LOAD, VT, Promote);
1008 AddPromotedToType (ISD::LOAD, VT, MVT::v2i64);
1009 setOperationAction(ISD::SELECT, VT, Promote);
1010 AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +00001011 }
Evan Cheng2c3ae372006-04-12 21:21:57 +00001012
Owen Anderson825b72b2009-08-11 20:47:22 +00001013 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +00001014
Evan Cheng2c3ae372006-04-12 21:21:57 +00001015 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +00001016 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
1017 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
1018 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
1019 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +00001020
Owen Anderson825b72b2009-08-11 20:47:22 +00001021 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
1022 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Michael Liaob8150d82012-09-10 18:33:51 +00001023
Michael Liaoa7554632012-10-23 17:36:08 +00001024 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom);
1025 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Michael Liao991b6a22012-10-24 04:09:32 +00001026 // As there is no 64-bit GPR available, we need build a special custom
1027 // sequence to convert from v2i32 to v2f32.
1028 if (!Subtarget->is64Bit())
1029 setOperationAction(ISD::UINT_TO_FP, MVT::v2f32, Custom);
Michael Liaoa7554632012-10-23 17:36:08 +00001030
Michael Liao9d796db2012-10-10 16:32:15 +00001031 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom);
Michael Liao44c2d612012-10-10 16:53:28 +00001032 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Custom);
Michael Liao9d796db2012-10-10 16:32:15 +00001033
Michael Liaob8150d82012-09-10 18:33:51 +00001034 setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +00001035 }
Evan Chengc7ce29b2009-02-13 22:36:38 +00001036
Justin Holewinski320185f2013-07-26 13:28:29 +00001037 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +00001038 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
1039 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
1040 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
1041 setOperationAction(ISD::FRINT, MVT::f32, Legal);
1042 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
1043 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
1044 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
1045 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
1046 setOperationAction(ISD::FRINT, MVT::f64, Legal);
1047 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
1048
Craig Topper12fb5c62012-09-08 17:42:27 +00001049 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001050 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
1051 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
1052 setOperationAction(ISD::FRINT, MVT::v4f32, Legal);
1053 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001054 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001055 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
1056 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
1057 setOperationAction(ISD::FRINT, MVT::v2f64, Legal);
1058 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001059
Nate Begeman14d12ca2008-02-11 04:19:36 +00001060 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +00001061 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001062
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001063 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
1064 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
1065 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
1066 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
1067 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +00001068
Nate Begeman14d12ca2008-02-11 04:19:36 +00001069 // i8 and i16 vectors are custom , because the source register and source
1070 // source memory operand types are not the same width. f32 vectors are
1071 // custom since the immediate controlling the insert encodes additional
1072 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +00001073 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
1074 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
1075 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
1076 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001077
Owen Anderson825b72b2009-08-11 20:47:22 +00001078 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001082
Pete Coopera77214a2011-11-14 19:38:42 +00001083 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +00001084 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +00001085 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +00001086 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
1087 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001088 }
1089 }
Evan Cheng470a6ad2006-02-22 02:26:30 +00001090
Craig Topper1accb7e2012-01-10 06:54:16 +00001091 if (Subtarget->hasSSE2()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001092 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001093 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001094
Nadav Rotem43012222011-05-11 08:12:09 +00001095 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001096 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001097
Nadav Rotem43012222011-05-11 08:12:09 +00001098 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +00001099 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001100
Michael Liao5c5f1902013-03-20 02:28:20 +00001101 // In the customized shift lowering, the legal cases in AVX2 will be
1102 // recognized.
1103 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
1104 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001105
Michael Liao5c5f1902013-03-20 02:28:20 +00001106 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
1107 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001108
Michael Liao5c5f1902013-03-20 02:28:20 +00001109 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001110
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001111 setOperationAction(ISD::SDIV, MVT::v8i16, Custom);
1112 setOperationAction(ISD::SDIV, MVT::v4i32, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001113 }
1114
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001115 if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
Craig Topperc9099502012-04-20 06:31:50 +00001116 addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
1117 addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118 addRegisterClass(MVT::v8i32, &X86::VR256RegClass);
1119 addRegisterClass(MVT::v8f32, &X86::VR256RegClass);
1120 addRegisterClass(MVT::v4i64, &X86::VR256RegClass);
1121 addRegisterClass(MVT::v4f64, &X86::VR256RegClass);
David Greened94c1012009-06-29 22:50:51 +00001122
Owen Anderson825b72b2009-08-11 20:47:22 +00001123 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001124 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1125 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001126
Owen Anderson825b72b2009-08-11 20:47:22 +00001127 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1128 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1129 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1130 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1131 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001132 setOperationAction(ISD::FFLOOR, MVT::v8f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001133 setOperationAction(ISD::FCEIL, MVT::v8f32, Legal);
1134 setOperationAction(ISD::FTRUNC, MVT::v8f32, Legal);
1135 setOperationAction(ISD::FRINT, MVT::v8f32, Legal);
1136 setOperationAction(ISD::FNEARBYINT, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001137 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001138 setOperationAction(ISD::FABS, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001139
Owen Anderson825b72b2009-08-11 20:47:22 +00001140 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1141 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1142 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1143 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1144 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001145 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001146 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
1147 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
1148 setOperationAction(ISD::FRINT, MVT::v4f64, Legal);
1149 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001150 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001151 setOperationAction(ISD::FABS, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001152
Michael Liaobedcbd42012-10-16 18:14:11 +00001153 setOperationAction(ISD::TRUNCATE, MVT::v8i16, Custom);
Nadav Rotem3c22a442012-12-27 07:45:10 +00001154 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Michael Liaobedcbd42012-10-16 18:14:11 +00001155
1156 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1157
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001158 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
Benjamin Kramerb8f0d892013-03-31 12:49:15 +00001159 setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001160 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001161 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001162
Michael Liaoa7554632012-10-23 17:36:08 +00001163 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1164 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1165 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1166
Michael Liaob8150d82012-09-10 18:33:51 +00001167 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1168
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001169 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1170 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1171
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001172 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1173 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1174
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001175 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001176 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001177
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001178 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1179
Duncan Sands28b77e92011-09-06 19:07:46 +00001180 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1181 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1182 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1183 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001184
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001185 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1186 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1187 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1188
Craig Topperaaa643c2011-11-09 07:28:55 +00001189 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1190 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1191 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1192 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001193
Nadav Rotem0509db22012-12-28 05:45:24 +00001194 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1195 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
1196 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1197 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1198 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1199 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001200
Craig Topperbf404372012-08-31 15:40:30 +00001201 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001202 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1203 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1204 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1205 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1206 setOperationAction(ISD::FMA, MVT::f32, Legal);
1207 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001208 }
Craig Topper880ef452012-08-11 22:34:26 +00001209
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001210 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001211 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1212 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1213 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1214 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001215
Craig Topperaaa643c2011-11-09 07:28:55 +00001216 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1217 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1218 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1219 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001220
Craig Topperaaa643c2011-11-09 07:28:55 +00001221 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1222 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1223 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001224 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001225
1226 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001227
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001228 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001229 } else {
1230 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1231 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1232 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1233 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1234
1235 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1236 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1237 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1238 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1239
1240 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1241 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1242 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1243 // Don't lower v32i8 because there is no 128-bit byte mul
1244 }
Craig Topper13894fa2011-08-24 06:14:18 +00001245
Michael Liao5c5f1902013-03-20 02:28:20 +00001246 // In the customized shift lowering, the legal cases in AVX2 will be
1247 // recognized.
1248 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1249 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1250
1251 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1252 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1253
1254 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1255
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001256 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001257 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001259 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001260
1261 // Extract subvector is special because the value type
1262 // (result) is 128-bit but the source is 256-bit wide.
1263 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001264 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001265
1266 // Do not attempt to custom lower other non-256-bit vectors
1267 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001268 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001269
Craig Topper0d1f1762012-08-12 00:34:56 +00001270 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1271 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1272 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1273 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1275 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1276 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001277 }
1278
David Greene54d8eba2011-01-27 22:38:56 +00001279 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001280 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001281 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001282
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001283 // Do not attempt to promote non-256-bit vectors
1284 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001285 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001286
Craig Topper0d1f1762012-08-12 00:34:56 +00001287 setOperationAction(ISD::AND, VT, Promote);
1288 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1289 setOperationAction(ISD::OR, VT, Promote);
1290 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1291 setOperationAction(ISD::XOR, VT, Promote);
1292 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1293 setOperationAction(ISD::LOAD, VT, Promote);
1294 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1295 setOperationAction(ISD::SELECT, VT, Promote);
1296 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001297 }
David Greene9b9838d2009-06-29 16:47:10 +00001298 }
1299
Elena Demikhovsky83952512013-07-31 11:35:14 +00001300 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301 addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302 addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303 addRegisterClass(MVT::v8i64, &X86::VR512RegClass);
1304 addRegisterClass(MVT::v8f64, &X86::VR512RegClass);
1305
1306 addRegisterClass(MVT::v8i1, &X86::VK8RegClass);
1307 addRegisterClass(MVT::v16i1, &X86::VK16RegClass);
1308
1309 setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, Legal);
1310 setOperationAction(ISD::LOAD, MVT::v16f32, Legal);
1311 setOperationAction(ISD::LOAD, MVT::v8f64, Legal);
1312 setOperationAction(ISD::LOAD, MVT::v8i64, Legal);
1313 setOperationAction(ISD::LOAD, MVT::v16i32, Legal);
1314 setOperationAction(ISD::LOAD, MVT::v16i1, Legal);
1315
1316 setOperationAction(ISD::FADD, MVT::v16f32, Legal);
1317 setOperationAction(ISD::FSUB, MVT::v16f32, Legal);
1318 setOperationAction(ISD::FMUL, MVT::v16f32, Legal);
1319 setOperationAction(ISD::FDIV, MVT::v16f32, Legal);
1320 setOperationAction(ISD::FSQRT, MVT::v16f32, Legal);
1321 setOperationAction(ISD::FNEG, MVT::v16f32, Custom);
1322
1323 setOperationAction(ISD::FADD, MVT::v8f64, Legal);
1324 setOperationAction(ISD::FSUB, MVT::v8f64, Legal);
1325 setOperationAction(ISD::FMUL, MVT::v8f64, Legal);
1326 setOperationAction(ISD::FDIV, MVT::v8f64, Legal);
1327 setOperationAction(ISD::FSQRT, MVT::v8f64, Legal);
1328 setOperationAction(ISD::FNEG, MVT::v8f64, Custom);
1329 setOperationAction(ISD::FMA, MVT::v8f64, Legal);
1330 setOperationAction(ISD::FMA, MVT::v16f32, Legal);
1331 setOperationAction(ISD::SDIV, MVT::v16i32, Custom);
1332
Elena Demikhovsky714319a2013-10-06 13:11:09 +00001333 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal);
1334 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal);
1335 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal);
1336 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal);
1337 if (Subtarget->is64Bit()) {
1338 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Legal);
1339 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Legal);
1340 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Legal);
1341 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Legal);
1342 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001343 setOperationAction(ISD::FP_TO_SINT, MVT::v16i32, Legal);
1344 setOperationAction(ISD::FP_TO_UINT, MVT::v16i32, Legal);
1345 setOperationAction(ISD::FP_TO_UINT, MVT::v8i32, Legal);
1346 setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal);
1347 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1348 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1349 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1350 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1351
1352 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1353 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1354 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1355 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1356 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1357 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1358 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1359 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1360 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1361 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1362 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1363 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1364
1365 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1366 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1367 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1368 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1369 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1370
1371 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1372 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1373
1374 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1375
1376 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1377 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1378 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1379 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1380 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1381
1382 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1383 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1384
1385 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1386 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1387
1388 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1389
1390 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1391 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1392
1393 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1394 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1395
1396 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1397 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1398
1399 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1400 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1401 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001402 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1403 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1404 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001405
1406 // Custom lower several nodes.
1407 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1408 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1409 MVT VT = (MVT::SimpleValueType)i;
1410
Elena Demikhovsky07801792013-08-01 13:34:06 +00001411 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001412 // Extract subvector is special because the value type
1413 // (result) is 256/128-bit but the source is 512-bit wide.
1414 if (VT.is128BitVector() || VT.is256BitVector())
1415 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1416
1417 if (VT.getVectorElementType() == MVT::i1)
1418 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1419
1420 // Do not attempt to custom lower other non-512-bit vectors
1421 if (!VT.is512BitVector())
1422 continue;
1423
Elena Demikhovsky07801792013-08-01 13:34:06 +00001424 if ( EltSize >= 32) {
1425 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1426 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1427 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1428 setOperationAction(ISD::VSELECT, VT, Legal);
1429 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1430 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1431 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1432 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001433 }
1434 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1435 MVT VT = (MVT::SimpleValueType)i;
1436
1437 // Do not attempt to promote non-256-bit vectors
1438 if (!VT.is512BitVector())
1439 continue;
1440
Elena Demikhovsky83952512013-07-31 11:35:14 +00001441 setOperationAction(ISD::SELECT, VT, Promote);
1442 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1443 }
1444 }// has AVX-512
1445
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001446 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1447 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001448 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1449 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001450 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1451 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001452 }
1453
Evan Cheng6be2c582006-04-05 23:38:46 +00001454 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001455 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001456 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001457 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001458
Eli Friedman962f5492010-06-02 19:35:46 +00001459 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1460 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001461 //
Eli Friedman962f5492010-06-02 19:35:46 +00001462 // FIXME: We really should do custom legalization for addition and
1463 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1464 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001465 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1466 // Add/Sub/Mul with overflow operations are custom lowered.
1467 MVT VT = IntVTs[i];
1468 setOperationAction(ISD::SADDO, VT, Custom);
1469 setOperationAction(ISD::UADDO, VT, Custom);
1470 setOperationAction(ISD::SSUBO, VT, Custom);
1471 setOperationAction(ISD::USUBO, VT, Custom);
1472 setOperationAction(ISD::SMULO, VT, Custom);
1473 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001474 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001475
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001476 // There are no 8-bit 3-address imul/mul instructions
1477 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1478 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001479
Evan Chengd54f2d52009-03-31 19:38:51 +00001480 if (!Subtarget->is64Bit()) {
1481 // These libcalls are not available in 32-bit.
1482 setLibcallName(RTLIB::SHL_I128, 0);
1483 setLibcallName(RTLIB::SRL_I128, 0);
1484 setLibcallName(RTLIB::SRA_I128, 0);
1485 }
1486
Evan Cheng8688a582013-01-29 02:32:37 +00001487 // Combine sin / cos into one node or libcall if possible.
1488 if (Subtarget->hasSinCos()) {
1489 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1490 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001491 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001492 // For MacOSX, we don't want to the normal expansion of a libcall to
1493 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1494 // traffic.
1495 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1496 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1497 }
1498 }
1499
Evan Cheng206ee9d2006-07-07 08:33:52 +00001500 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbach49af3802013-10-17 02:58:06 +00001501 setTargetDAGCombine(ISD::CONCAT_VECTORS);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001502 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001503 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001504 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001505 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001506 setTargetDAGCombine(ISD::SHL);
1507 setTargetDAGCombine(ISD::SRA);
1508 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001509 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001510 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001511 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001512 setTargetDAGCombine(ISD::FADD);
1513 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001514 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001515 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001516 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001517 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001518 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001519 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001520 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001521 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001522 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001523 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001524 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001525 if (Subtarget->is64Bit())
1526 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001527 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001528
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001529 computeRegisterProperties();
1530
Evan Cheng05219282011-01-06 06:52:41 +00001531 // On Darwin, -Os means optimize for size without hurting performance,
1532 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001533 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1534 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1535 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1536 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1537 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1538 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001539 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001540
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001541 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001542 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001543
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001544 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001545}
1546
Matt Arsenault225ed702013-05-18 00:21:46 +00001547EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Juergen Ributzka189c6232013-09-21 15:09:46 +00001548 if (!VT.isVector()) return MVT::i8;
Duncan Sands28b77e92011-09-06 19:07:46 +00001549 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001550}
1551
Evan Cheng29286502008-01-23 23:17:41 +00001552/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1553/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001554static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001555 if (MaxAlign == 16)
1556 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001557 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001558 if (VTy->getBitWidth() == 128)
1559 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001560 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001561 unsigned EltAlign = 0;
1562 getMaxByValAlign(ATy->getElementType(), EltAlign);
1563 if (EltAlign > MaxAlign)
1564 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001565 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001566 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1567 unsigned EltAlign = 0;
1568 getMaxByValAlign(STy->getElementType(i), EltAlign);
1569 if (EltAlign > MaxAlign)
1570 MaxAlign = EltAlign;
1571 if (MaxAlign == 16)
1572 break;
1573 }
1574 }
Evan Cheng29286502008-01-23 23:17:41 +00001575}
1576
1577/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1578/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001579/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1580/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001581unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001582 if (Subtarget->is64Bit()) {
1583 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001584 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001585 if (TyAlign > 8)
1586 return TyAlign;
1587 return 8;
1588 }
1589
Evan Cheng29286502008-01-23 23:17:41 +00001590 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001591 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001592 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001593 return Align;
1594}
Chris Lattner2b02a442007-02-25 08:29:00 +00001595
Evan Chengf0df0312008-05-15 08:39:06 +00001596/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001597/// and store operations as a result of memset, memcpy, and memmove
1598/// lowering. If DstAlign is zero that means it's safe to destination
1599/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1600/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001601/// probably because the source does not need to be loaded. If 'IsMemset' is
1602/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1603/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1604/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001605/// It returns EVT::Other if the type should be determined using generic
1606/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001607EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001608X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1609 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001610 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001611 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001612 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001613 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001614 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001615 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1616 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001617 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001618 (Subtarget->isUnalignedMemAccessFast() ||
1619 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001620 (SrcAlign == 0 || SrcAlign >= 16)))) {
1621 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001622 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001623 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001624 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001625 return MVT::v8f32;
1626 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001627 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001628 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001629 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001630 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001631 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001632 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001633 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001634 // Do not use f64 to lower memcpy if source is string constant. It's
1635 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001636 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001637 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001638 }
Evan Chengf0df0312008-05-15 08:39:06 +00001639 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001640 return MVT::i64;
1641 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001642}
1643
Evan Cheng7d342672012-12-12 01:32:07 +00001644bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001645 if (VT == MVT::f32)
1646 return X86ScalarSSEf32;
1647 else if (VT == MVT::f64)
1648 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001649 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001650}
1651
Evan Cheng376642e2012-12-10 23:21:26 +00001652bool
1653X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1654 if (Fast)
1655 *Fast = Subtarget->isUnalignedMemAccessFast();
1656 return true;
1657}
1658
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001659/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1660/// current function. The returned value is a member of the
1661/// MachineJumpTableInfo::JTEntryKind enum.
1662unsigned X86TargetLowering::getJumpTableEncoding() const {
1663 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1664 // symbol.
1665 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1666 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001667 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001668
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001669 // Otherwise, use the normal jump table encoding heuristics.
1670 return TargetLowering::getJumpTableEncoding();
1671}
1672
Chris Lattnerc64daab2010-01-26 05:02:42 +00001673const MCExpr *
1674X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1675 const MachineBasicBlock *MBB,
1676 unsigned uid,MCContext &Ctx) const{
1677 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1678 Subtarget->isPICStyleGOT());
1679 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1680 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001681 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1682 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001683}
1684
Evan Chengcc415862007-11-09 01:32:10 +00001685/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1686/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001687SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001688 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001689 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001690 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001691 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001692 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001693 return Table;
1694}
1695
Chris Lattner589c6f62010-01-26 06:28:43 +00001696/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1697/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1698/// MCExpr.
1699const MCExpr *X86TargetLowering::
1700getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1701 MCContext &Ctx) const {
1702 // X86-64 uses RIP relative addressing based on the jump table label.
1703 if (Subtarget->isPICStyleRIPRel())
1704 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1705
1706 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001707 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001708}
1709
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001710// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001711std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001712X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001713 const TargetRegisterClass *RRC = 0;
1714 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001715 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001716 default:
1717 return TargetLowering::findRepresentativeClass(VT);
1718 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001719 RRC = Subtarget->is64Bit() ?
1720 (const TargetRegisterClass*)&X86::GR64RegClass :
1721 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001722 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001723 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001724 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001725 break;
1726 case MVT::f32: case MVT::f64:
1727 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1728 case MVT::v4f32: case MVT::v2f64:
1729 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1730 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001731 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001732 break;
1733 }
1734 return std::make_pair(RRC, Cost);
1735}
1736
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001737bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1738 unsigned &Offset) const {
1739 if (!Subtarget->isTargetLinux())
1740 return false;
1741
1742 if (Subtarget->is64Bit()) {
1743 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1744 Offset = 0x28;
1745 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1746 AddressSpace = 256;
1747 else
1748 AddressSpace = 257;
1749 } else {
1750 // %gs:0x14 on i386
1751 Offset = 0x14;
1752 AddressSpace = 256;
1753 }
1754 return true;
1755}
1756
Chris Lattner2b02a442007-02-25 08:29:00 +00001757//===----------------------------------------------------------------------===//
1758// Return Value Calling Convention Implementation
1759//===----------------------------------------------------------------------===//
1760
Chris Lattner59ed56b2007-02-28 04:55:35 +00001761#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001762
Michael J. Spencerec38de22010-10-10 22:04:20 +00001763bool
Eric Christopher471e4222011-06-08 23:55:35 +00001764X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001765 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001766 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001767 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001768 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001769 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001770 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001771 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001772}
1773
Dan Gohman98ca4f22009-08-05 01:29:28 +00001774SDValue
1775X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001776 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001777 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001778 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001779 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001780 MachineFunction &MF = DAG.getMachineFunction();
1781 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Chris Lattner9774c912007-02-27 05:28:59 +00001783 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001784 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001785 RVLocs, *DAG.getContext());
1786 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Dan Gohman475871a2008-07-27 21:46:04 +00001788 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001789 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001790 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1791 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001792 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1793 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001794
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001795 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001796 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1797 CCValAssign &VA = RVLocs[i];
1798 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001799 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001800 EVT ValVT = ValToCopy.getValueType();
1801
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001802 // Promote values to the appropriate types
1803 if (VA.getLocInfo() == CCValAssign::SExt)
1804 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1805 else if (VA.getLocInfo() == CCValAssign::ZExt)
1806 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1807 else if (VA.getLocInfo() == CCValAssign::AExt)
1808 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1809 else if (VA.getLocInfo() == CCValAssign::BCvt)
1810 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1811
Dale Johannesenc4510512010-09-24 19:05:48 +00001812 // If this is x86-64, and we disabled SSE, we can't return FP values,
1813 // or SSE or MMX vectors.
1814 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1815 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001816 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001817 report_fatal_error("SSE register return with SSE disabled");
1818 }
1819 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1820 // llvm-gcc has never done it right and no one has noticed, so this
1821 // should be OK for now.
1822 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001823 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001824 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001825
Chris Lattner447ff682008-03-11 03:23:40 +00001826 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1827 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001828 if (VA.getLocReg() == X86::ST0 ||
1829 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001830 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1831 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001832 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001833 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001834 RetOps.push_back(ValToCopy);
1835 // Don't emit a copytoreg.
1836 continue;
1837 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001838
Evan Cheng242b38b2009-02-23 09:03:22 +00001839 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1840 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001841 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001842 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001843 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001844 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001845 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1846 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001847 // If we don't have SSE2 available, convert to v4f32 so the generated
1848 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001849 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001850 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001851 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001852 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001853 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001854
Dale Johannesendd64c412009-02-04 00:33:20 +00001855 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001856 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001857 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001858 }
Dan Gohman61a92132008-04-21 23:59:07 +00001859
Eli Benderskya5597f02013-01-25 22:07:43 +00001860 // The x86-64 ABIs require that for returning structs by value we copy
1861 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001862 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001863 // We saved the argument into a virtual register in the entry block,
1864 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001865 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1866 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001867 MachineFunction &MF = DAG.getMachineFunction();
1868 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1869 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001870 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001871 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001872 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001873
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001874 unsigned RetValReg
1875 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1876 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001877 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001878 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001879
Eli Benderskya5597f02013-01-25 22:07:43 +00001880 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001881 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001883
Chris Lattner447ff682008-03-11 03:23:40 +00001884 RetOps[0] = Chain; // Update chain.
1885
1886 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001887 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001888 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001889
1890 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001891 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001892}
1893
Evan Chengbf010eb2012-04-10 01:51:00 +00001894bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001895 if (N->getNumValues() != 1)
1896 return false;
1897 if (!N->hasNUsesOfValue(1, 0))
1898 return false;
1899
Evan Chengbf010eb2012-04-10 01:51:00 +00001900 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001901 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001902 if (Copy->getOpcode() == ISD::CopyToReg) {
1903 // If the copy has a glue operand, we conservatively assume it isn't safe to
1904 // perform a tail call.
1905 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1906 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001907 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001908 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001909 return false;
1910
Evan Cheng1bf891a2010-12-01 22:59:46 +00001911 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001912 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001913 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001914 if (UI->getOpcode() != X86ISD::RET_FLAG)
1915 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001916 HasRet = true;
1917 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001918
Evan Chengbf010eb2012-04-10 01:51:00 +00001919 if (!HasRet)
1920 return false;
1921
1922 Chain = TCChain;
1923 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001924}
1925
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001926MVT
1927X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001928 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001929 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001930 // TODO: Is this also valid on 32-bit?
1931 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001932 ReturnMVT = MVT::i8;
1933 else
1934 ReturnMVT = MVT::i32;
1935
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001936 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001937 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001938}
1939
Dan Gohman98ca4f22009-08-05 01:29:28 +00001940/// LowerCallResult - Lower the result values of a call into the
1941/// appropriate copies out of appropriate physical registers.
1942///
1943SDValue
1944X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001945 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001946 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001947 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001948 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001949
Chris Lattnere32bbf62007-02-28 07:09:55 +00001950 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001951 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001952 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001953 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001954 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001955 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001956
Chris Lattner3085e152007-02-25 08:59:22 +00001957 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001958 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001959 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001960 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001961
Torok Edwin3f142c32009-02-01 18:15:56 +00001962 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001963 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001964 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001965 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001966 }
1967
Evan Cheng79fb3b42009-02-20 20:43:02 +00001968 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001969
1970 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001971 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001972 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001973 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001974 // instead.
1975 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1976 // If we prefer to use the value in xmm registers, copy it out as f80 and
1977 // use a truncate to move it from fp stack reg to xmm reg.
1978 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001979 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001980 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001981 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001982 Val = Chain.getValue(0);
1983
1984 // Round the f80 to the right size, which also moves it to the appropriate
1985 // xmm register.
1986 if (CopyVT != VA.getValVT())
1987 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1988 // This truncation won't change the value.
1989 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001990 } else {
1991 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1992 CopyVT, InFlag).getValue(1);
1993 Val = Chain.getValue(0);
1994 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001995 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001996 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001997 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001998
Dan Gohman98ca4f22009-08-05 01:29:28 +00001999 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002000}
2001
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002002//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002003// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002004//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002005// StdCall calling convention seems to be standard for many Windows' API
2006// routines and around. It differs from C calling convention just a little:
2007// callee should clean up the stack, not caller. Symbols should be also
2008// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002009// For info on fast calling convention see Fast Calling Convention (tail call)
2010// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002011
Dan Gohman98ca4f22009-08-05 01:29:28 +00002012/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002013/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002014enum StructReturnType {
2015 NotStructReturn,
2016 RegStructReturn,
2017 StackStructReturn
2018};
2019static StructReturnType
2020callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002021 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002022 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002023
Rafael Espindola1cee7102012-07-25 13:41:10 +00002024 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2025 if (!Flags.isSRet())
2026 return NotStructReturn;
2027 if (Flags.isInReg())
2028 return RegStructReturn;
2029 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002030}
2031
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002032/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002033/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002034static StructReturnType
2035argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002036 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002037 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002038
Rafael Espindola1cee7102012-07-25 13:41:10 +00002039 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2040 if (!Flags.isSRet())
2041 return NotStructReturn;
2042 if (Flags.isInReg())
2043 return RegStructReturn;
2044 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002045}
2046
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002047/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2048/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002049/// the specific parameter attribute. The copy will be passed as a byval
2050/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002051static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002052CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002053 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002054 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002055 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002056
Dale Johannesendd64c412009-02-04 00:33:20 +00002057 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002058 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002059 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002060}
2061
Chris Lattner29689432010-03-11 00:22:57 +00002062/// IsTailCallConvention - Return true if the calling convention is one that
2063/// supports tail call optimization.
2064static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002065 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2066 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002067}
2068
Charles Davisac226bb2013-07-12 06:02:35 +00002069/// \brief Return true if the calling convention is a C calling convention.
2070static bool IsCCallConvention(CallingConv::ID CC) {
2071 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2072 CC == CallingConv::X86_64_SysV);
2073}
2074
Evan Cheng485fafc2011-03-21 01:19:09 +00002075bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002076 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002077 return false;
2078
2079 CallSite CS(CI);
2080 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002081 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002082 return false;
2083
2084 return true;
2085}
2086
Evan Cheng0c439eb2010-01-27 00:07:07 +00002087/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2088/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002089static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2090 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002091 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002092}
2093
Dan Gohman98ca4f22009-08-05 01:29:28 +00002094SDValue
2095X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002096 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002097 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002098 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002099 const CCValAssign &VA,
2100 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002101 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002102 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002103 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002104 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2105 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002106 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002107 EVT ValVT;
2108
2109 // If value is passed by pointer we have address passed instead of the value
2110 // itself.
2111 if (VA.getLocInfo() == CCValAssign::Indirect)
2112 ValVT = VA.getLocVT();
2113 else
2114 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002115
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002116 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002117 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002118 // In case of tail call optimization mark all arguments mutable. Since they
2119 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002120 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002121 unsigned Bytes = Flags.getByValSize();
2122 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2123 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002124 return DAG.getFrameIndex(FI, getPointerTy());
2125 } else {
2126 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002127 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002128 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2129 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002130 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002131 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002132 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002133}
2134
Dan Gohman475871a2008-07-27 21:46:04 +00002135SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002136X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002137 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002138 bool isVarArg,
2139 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002140 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002141 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002142 SmallVectorImpl<SDValue> &InVals)
2143 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002144 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002145 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002146
Gordon Henriksen86737662008-01-05 16:56:59 +00002147 const Function* Fn = MF.getFunction();
2148 if (Fn->hasExternalLinkage() &&
2149 Subtarget->isTargetCygMing() &&
2150 Fn->getName() == "main")
2151 FuncInfo->setForceFramePointer(true);
2152
Evan Cheng1bc78042006-04-26 01:20:17 +00002153 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002154 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002155 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002156 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002157
Chris Lattner29689432010-03-11 00:22:57 +00002158 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002159 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002160
Chris Lattner638402b2007-02-28 07:00:42 +00002161 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002162 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002163 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002164 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002165
2166 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002167 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002168 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002169
Duncan Sands45907662010-10-31 13:21:44 +00002170 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002171
Chris Lattnerf39f7712007-02-28 05:46:49 +00002172 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002173 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002174 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2175 CCValAssign &VA = ArgLocs[i];
2176 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2177 // places.
2178 assert(VA.getValNo() != LastVal &&
2179 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002180 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002181 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002182
Chris Lattnerf39f7712007-02-28 05:46:49 +00002183 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002184 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002185 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002186 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002187 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002188 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002189 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002190 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002191 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002192 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002193 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002194 else if (RegVT.is512BitVector())
2195 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002196 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002197 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002198 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002199 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002200 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002201 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002202 else if (RegVT == MVT::v8i1)
2203 RC = &X86::VK8RegClass;
2204 else if (RegVT == MVT::v16i1)
2205 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002206 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002207 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002208
Devang Patel68e6bee2011-02-21 23:21:26 +00002209 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002210 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002211
Chris Lattnerf39f7712007-02-28 05:46:49 +00002212 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2213 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2214 // right size.
2215 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002216 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002217 DAG.getValueType(VA.getValVT()));
2218 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002219 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002220 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002221 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002222 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002223
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002224 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002225 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002226 if (RegVT.isVector())
2227 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2228 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002229 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002230 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002231 } else {
2232 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002233 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002234 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002235
2236 // If value is passed via pointer - do a load.
2237 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002238 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002239 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002240
Dan Gohman98ca4f22009-08-05 01:29:28 +00002241 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002242 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002243
Eli Benderskya5597f02013-01-25 22:07:43 +00002244 // The x86-64 ABIs require that for returning structs by value we copy
2245 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002246 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002247 // Save the argument into a virtual register so that we can access it
2248 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002249 if (MF.getFunction()->hasStructRetAttr() &&
2250 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002251 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2252 unsigned Reg = FuncInfo->getSRetReturnReg();
2253 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002254 MVT PtrTy = getPointerTy();
2255 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002256 FuncInfo->setSRetReturnReg(Reg);
2257 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002258 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002259 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002260 }
2261
Chris Lattnerf39f7712007-02-28 05:46:49 +00002262 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002263 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002264 if (FuncIsMadeTailCallSafe(CallConv,
2265 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002266 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002267
Evan Cheng1bc78042006-04-26 01:20:17 +00002268 // If the function takes variable number of arguments, make a frame index for
2269 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002270 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002271 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2272 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002273 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002274 }
2275 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002276 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2277
2278 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002279 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002280 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002281 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002282 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002283 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2284 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002285 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002286 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2287 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2288 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002289 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002290 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002291
2292 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002293 // The XMM registers which might contain var arg parameters are shadowed
2294 // in their paired GPR. So we only need to save the GPR to their home
2295 // slots.
2296 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002297 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002298 } else {
2299 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2300 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002301
Chad Rosier30450e82011-12-22 22:35:21 +00002302 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2303 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002304 }
2305 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2306 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002307
Bill Wendling831737d2012-12-30 10:32:01 +00002308 bool NoImplicitFloatOps = Fn->getAttributes().
2309 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002310 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002311 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002312 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2313 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002314 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002315 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002316 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002317 // Kernel mode asks for SSE to be disabled, so don't push them
2318 // on the stack.
2319 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002320
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002321 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002322 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002323 // Get to the caller-allocated home save location. Add 8 to account
2324 // for the return address.
2325 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002326 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002327 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002328 // Fixup to set vararg frame on shadow area (4 x i64).
2329 if (NumIntRegs < 4)
2330 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002331 } else {
2332 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002333 // registers, then we must store them to their spots on the stack so
2334 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002335 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2336 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2337 FuncInfo->setRegSaveFrameIndex(
2338 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002339 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002340 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002341
Gordon Henriksen86737662008-01-05 16:56:59 +00002342 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002343 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002344 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2345 getPointerTy());
2346 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002347 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002348 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2349 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002350 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002351 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002352 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002353 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002354 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002355 MachinePointerInfo::getFixedStack(
2356 FuncInfo->getRegSaveFrameIndex(), Offset),
2357 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002358 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002359 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002360 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002361
Dan Gohmanface41a2009-08-16 21:24:25 +00002362 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2363 // Now store the XMM (fp + vector) parameter registers.
2364 SmallVector<SDValue, 11> SaveXMMOps;
2365 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002366
Craig Topperc9099502012-04-20 06:31:50 +00002367 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002368 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2369 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002370
Dan Gohman1e93df62010-04-17 14:41:14 +00002371 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2372 FuncInfo->getRegSaveFrameIndex()));
2373 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2374 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002375
Dan Gohmanface41a2009-08-16 21:24:25 +00002376 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002377 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002378 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002379 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2380 SaveXMMOps.push_back(Val);
2381 }
2382 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2383 MVT::Other,
2384 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002385 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002386
2387 if (!MemOps.empty())
2388 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2389 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002390 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002391 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002392
Gordon Henriksen86737662008-01-05 16:56:59 +00002393 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002394 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2395 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002396 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002397 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002398 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002399 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002400 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002401 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002402 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002403 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002404
Gordon Henriksen86737662008-01-05 16:56:59 +00002405 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002406 // RegSaveFrameIndex is X86-64 only.
2407 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002408 if (CallConv == CallingConv::X86_FastCall ||
2409 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002410 // fastcc functions can't have varargs.
2411 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002412 }
Evan Cheng25caf632006-05-23 21:06:34 +00002413
Rafael Espindola76927d752011-08-30 19:39:58 +00002414 FuncInfo->setArgumentStackSize(StackSize);
2415
Dan Gohman98ca4f22009-08-05 01:29:28 +00002416 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002417}
2418
Dan Gohman475871a2008-07-27 21:46:04 +00002419SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002420X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2421 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002422 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002423 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002424 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002425 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002426 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002427 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002428 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002429 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002430
2431 return DAG.getStore(Chain, dl, Arg, PtrOff,
2432 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002433 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002434}
2435
Bill Wendling64e87322009-01-16 19:25:27 +00002436/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002437/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002438SDValue
2439X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002440 SDValue &OutRetAddr, SDValue Chain,
2441 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002442 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002443 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002444 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002445 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002446
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002447 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002448 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002449 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002450 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002451}
2452
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002453/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002454/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002455static SDValue
2456EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002457 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002458 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002459 // Store the return address to the appropriate stack slot.
2460 if (!FPDiff) return Chain;
2461 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002462 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002463 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2464 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002465 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002466 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002467 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002468 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002469 return Chain;
2470}
2471
Dan Gohman98ca4f22009-08-05 01:29:28 +00002472SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002473X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002474 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002475 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002476 SDLoc &dl = CLI.DL;
2477 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2478 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2479 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002480 SDValue Chain = CLI.Chain;
2481 SDValue Callee = CLI.Callee;
2482 CallingConv::ID CallConv = CLI.CallConv;
2483 bool &isTailCall = CLI.IsTailCall;
2484 bool isVarArg = CLI.IsVarArg;
2485
Dan Gohman98ca4f22009-08-05 01:29:28 +00002486 MachineFunction &MF = DAG.getMachineFunction();
2487 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002488 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002489 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002490 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002491 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002492
Nick Lewycky22de16d2012-01-19 00:34:10 +00002493 if (MF.getTarget().Options.DisableTailCalls)
2494 isTailCall = false;
2495
Evan Cheng5f941932010-02-05 02:21:12 +00002496 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002497 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002498 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002499 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002500 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002501 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002502
2503 // Sibcalls are automatically detected tailcalls which do not require
2504 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002505 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002506 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002507
2508 if (isTailCall)
2509 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002510 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002511
Chris Lattner29689432010-03-11 00:22:57 +00002512 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002513 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002514
Chris Lattner638402b2007-02-28 07:00:42 +00002515 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002516 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002517 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002518 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002519
2520 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002521 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002522 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002523
Duncan Sands45907662010-10-31 13:21:44 +00002524 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002525
Chris Lattner423c5f42007-02-28 05:31:48 +00002526 // Get a count of how many bytes are to be pushed on the stack.
2527 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002528 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002529 // This is a sibcall. The memory operands are available in caller's
2530 // own caller's stack.
2531 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002532 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2533 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002534 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002535
Gordon Henriksen86737662008-01-05 16:56:59 +00002536 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002537 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002538 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002539 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2540 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2541
Gordon Henriksen86737662008-01-05 16:56:59 +00002542 FPDiff = NumBytesCallerPushed - NumBytes;
2543
2544 // Set the delta of movement of the returnaddr stackslot.
2545 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002546 if (FPDiff < X86Info->getTCReturnAddrDelta())
2547 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002548 }
2549
Evan Chengf22f9b32010-02-06 03:28:46 +00002550 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002551 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2552 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002553
Dan Gohman475871a2008-07-27 21:46:04 +00002554 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002555 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002556 if (isTailCall && FPDiff)
2557 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2558 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002559
Dan Gohman475871a2008-07-27 21:46:04 +00002560 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2561 SmallVector<SDValue, 8> MemOpChains;
2562 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002563
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002564 // Walk the register/memloc assignments, inserting copies/loads. In the case
2565 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002566 const X86RegisterInfo *RegInfo =
2567 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002568 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2569 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002570 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002571 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002572 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002573 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002574
Chris Lattner423c5f42007-02-28 05:31:48 +00002575 // Promote the value if needed.
2576 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002577 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002578 case CCValAssign::Full: break;
2579 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002580 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002581 break;
2582 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002583 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002584 break;
2585 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002586 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002587 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002588 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002589 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2590 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002591 } else
2592 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2593 break;
2594 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002595 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002596 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002597 case CCValAssign::Indirect: {
2598 // Store the argument.
2599 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002600 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002601 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002602 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002603 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002604 Arg = SpillSlot;
2605 break;
2606 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002607 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002608
Chris Lattner423c5f42007-02-28 05:31:48 +00002609 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002610 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2611 if (isVarArg && IsWin64) {
2612 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2613 // shadow reg if callee is a varargs function.
2614 unsigned ShadowReg = 0;
2615 switch (VA.getLocReg()) {
2616 case X86::XMM0: ShadowReg = X86::RCX; break;
2617 case X86::XMM1: ShadowReg = X86::RDX; break;
2618 case X86::XMM2: ShadowReg = X86::R8; break;
2619 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002620 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002621 if (ShadowReg)
2622 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002623 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002624 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002625 assert(VA.isMemLoc());
2626 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002627 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2628 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002629 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2630 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002631 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002632 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002633
Evan Cheng32fe1032006-05-25 00:59:30 +00002634 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002635 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002636 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002637
Chris Lattner88e1fd52009-07-09 04:24:46 +00002638 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002639 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2640 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002641 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002642 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002643 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002644 } else {
2645 // If we are tail calling and generating PIC/GOT style code load the
2646 // address of the callee into ECX. The value in ecx is used as target of
2647 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2648 // for tail calls on PIC/GOT architectures. Normally we would just put the
2649 // address of GOT into ebx and then call target@PLT. But for tail calls
2650 // ebx would be restored (since ebx is callee saved) before jumping to the
2651 // target@PLT.
2652
2653 // Note: The actual moving to ECX is done further down.
2654 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2655 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2656 !G->getGlobal()->hasProtectedVisibility())
2657 Callee = LowerGlobalAddress(Callee, DAG);
2658 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002659 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002660 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002661 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002662
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002663 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002664 // From AMD64 ABI document:
2665 // For calls that may call functions that use varargs or stdargs
2666 // (prototype-less calls or calls to functions containing ellipsis (...) in
2667 // the declaration) %al is used as hidden argument to specify the number
2668 // of SSE registers used. The contents of %al do not need to match exactly
2669 // the number of registers, but must be an ubound on the number of SSE
2670 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002671
Gordon Henriksen86737662008-01-05 16:56:59 +00002672 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002673 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002674 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2675 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2676 };
2677 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002678 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002679 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002680
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002681 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2682 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002683 }
2684
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002685 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002686 if (isTailCall) {
2687 // Force all the incoming stack arguments to be loaded from the stack
2688 // before any new outgoing arguments are stored to the stack, because the
2689 // outgoing stack slots may alias the incoming argument stack slots, and
2690 // the alias isn't otherwise explicit. This is slightly more conservative
2691 // than necessary, because it means that each store effectively depends
2692 // on every argument instead of just those arguments it would clobber.
2693 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2694
Dan Gohman475871a2008-07-27 21:46:04 +00002695 SmallVector<SDValue, 8> MemOpChains2;
2696 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002697 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002698 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002699 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2700 CCValAssign &VA = ArgLocs[i];
2701 if (VA.isRegLoc())
2702 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002703 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002704 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002705 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002706 // Create frame index.
2707 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002708 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002709 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002710 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002711
Duncan Sands276dcbd2008-03-21 09:14:45 +00002712 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002713 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002714 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002715 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002716 StackPtr = DAG.getCopyFromReg(Chain, dl,
2717 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002718 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002719 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002720
Dan Gohman98ca4f22009-08-05 01:29:28 +00002721 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2722 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002723 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002724 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002725 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002726 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002727 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002728 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002729 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002730 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002731 }
2732 }
2733
2734 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002735 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002736 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002737
2738 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002739 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2740 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002741 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002742 }
2743
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002744 // Build a sequence of copy-to-reg nodes chained together with token chain
2745 // and flag operands which copy the outgoing args into registers.
2746 SDValue InFlag;
2747 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2748 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2749 RegsToPass[i].second, InFlag);
2750 InFlag = Chain.getValue(1);
2751 }
2752
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002753 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2754 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2755 // In the 64-bit large code model, we have to make all calls
2756 // through a register, since the call instruction's 32-bit
2757 // pc-relative offset may not be large enough to hold the whole
2758 // address.
2759 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002760 // If the callee is a GlobalAddress node (quite common, every direct call
2761 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2762 // it.
2763
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002764 // We should use extra load for direct calls to dllimported functions in
2765 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002766 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002767 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002768 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002769 bool ExtraLoad = false;
2770 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002771
Chris Lattner48a7d022009-07-09 05:02:21 +00002772 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2773 // external symbols most go through the PLT in PIC mode. If the symbol
2774 // has hidden or protected visibility, or if it is static or local, then
2775 // we don't need to use the PLT - we can directly call it.
2776 if (Subtarget->isTargetELF() &&
2777 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002778 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002779 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002780 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002781 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002782 (!Subtarget->getTargetTriple().isMacOSX() ||
2783 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002784 // PC-relative references to external symbols should go through $stub,
2785 // unless we're building with the leopard linker or later, which
2786 // automatically synthesizes these stubs.
2787 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002788 } else if (Subtarget->isPICStyleRIPRel() &&
2789 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002790 cast<Function>(GV)->getAttributes().
2791 hasAttribute(AttributeSet::FunctionIndex,
2792 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002793 // If the function is marked as non-lazy, generate an indirect call
2794 // which loads from the GOT directly. This avoids runtime overhead
2795 // at the cost of eager binding (and one extra byte of encoding).
2796 OpFlags = X86II::MO_GOTPCREL;
2797 WrapperKind = X86ISD::WrapperRIP;
2798 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002799 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002800
Devang Patel0d881da2010-07-06 22:08:15 +00002801 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002802 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002803
2804 // Add a wrapper if needed.
2805 if (WrapperKind != ISD::DELETED_NODE)
2806 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2807 // Add extra indirection if needed.
2808 if (ExtraLoad)
2809 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2810 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002811 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002812 }
Bill Wendling056292f2008-09-16 21:48:12 +00002813 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002814 unsigned char OpFlags = 0;
2815
Evan Cheng1bf891a2010-12-01 22:59:46 +00002816 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2817 // external symbols should go through the PLT.
2818 if (Subtarget->isTargetELF() &&
2819 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2820 OpFlags = X86II::MO_PLT;
2821 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002822 (!Subtarget->getTargetTriple().isMacOSX() ||
2823 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002824 // PC-relative references to external symbols should go through $stub,
2825 // unless we're building with the leopard linker or later, which
2826 // automatically synthesizes these stubs.
2827 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002828 }
Eric Christopherfd179292009-08-27 18:07:15 +00002829
Chris Lattner48a7d022009-07-09 05:02:21 +00002830 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2831 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002832 }
2833
Chris Lattnerd96d0722007-02-25 06:40:16 +00002834 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002835 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002836 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002837
Evan Chengf22f9b32010-02-06 03:28:46 +00002838 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002839 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002840 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002841 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002842 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002843
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002844 Ops.push_back(Chain);
2845 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002846
Dan Gohman98ca4f22009-08-05 01:29:28 +00002847 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002848 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002849
Gordon Henriksen86737662008-01-05 16:56:59 +00002850 // Add argument registers to the end of the list so that they are known live
2851 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002852 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2853 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2854 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002855
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002856 // Add a register mask operand representing the call-preserved registers.
2857 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2858 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2859 assert(Mask && "Missing call preserved mask for calling convention");
2860 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002861
Gabor Greifba36cb52008-08-28 21:40:38 +00002862 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002863 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002864
Dan Gohman98ca4f22009-08-05 01:29:28 +00002865 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002866 // We used to do:
2867 //// If this is the first return lowered for this function, add the regs
2868 //// to the liveout set for the function.
2869 // This isn't right, although it's probably harmless on x86; liveouts
2870 // should be computed from returns not tail calls. Consider a void
2871 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002872 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002873 }
2874
Dale Johannesenace16102009-02-03 19:33:06 +00002875 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002876 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002877
Chris Lattner2d297092006-05-23 18:50:38 +00002878 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002879 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002880 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2881 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002882 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002883 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002884 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002885 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002886 // pops the hidden struct pointer, so we have to push it back.
2887 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002888 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002889 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002890 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002891 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002892
Gordon Henriksenae636f82008-01-03 16:47:34 +00002893 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002894 if (!IsSibcall) {
2895 Chain = DAG.getCALLSEQ_END(Chain,
2896 DAG.getIntPtrConstant(NumBytes, true),
2897 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2898 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002899 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002900 InFlag = Chain.getValue(1);
2901 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002902
Chris Lattner3085e152007-02-25 08:59:22 +00002903 // Handle result values, copying them out of physregs into vregs that we
2904 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002905 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2906 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002907}
2908
Evan Cheng25ab6902006-09-08 06:48:29 +00002909//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002910// Fast Calling Convention (tail call) implementation
2911//===----------------------------------------------------------------------===//
2912
2913// Like std call, callee cleans arguments, convention except that ECX is
2914// reserved for storing the tail called function address. Only 2 registers are
2915// free for argument passing (inreg). Tail call optimization is performed
2916// provided:
2917// * tailcallopt is enabled
2918// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002919// On X86_64 architecture with GOT-style position independent code only local
2920// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002921// To keep the stack aligned according to platform abi the function
2922// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2923// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002924// If a tail called function callee has more arguments than the caller the
2925// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002926// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002927// original REtADDR, but before the saved framepointer or the spilled registers
2928// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2929// stack layout:
2930// arg1
2931// arg2
2932// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002933// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002934// move area ]
2935// (possible EBP)
2936// ESI
2937// EDI
2938// local1 ..
2939
2940/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2941/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002942unsigned
2943X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2944 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002945 MachineFunction &MF = DAG.getMachineFunction();
2946 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002947 const X86RegisterInfo *RegInfo =
2948 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002949 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002950 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002951 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002952 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002953 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002954 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2955 // Number smaller than 12 so just add the difference.
2956 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2957 } else {
2958 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002959 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002960 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002961 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002962 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002963}
2964
Evan Cheng5f941932010-02-05 02:21:12 +00002965/// MatchingStackOffset - Return true if the given stack call argument is
2966/// already available in the same position (relatively) of the caller's
2967/// incoming argument stack.
2968static
2969bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2970 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2971 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002972 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2973 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002974 if (Arg.getOpcode() == ISD::CopyFromReg) {
2975 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002976 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002977 return false;
2978 MachineInstr *Def = MRI->getVRegDef(VR);
2979 if (!Def)
2980 return false;
2981 if (!Flags.isByVal()) {
2982 if (!TII->isLoadFromStackSlot(Def, FI))
2983 return false;
2984 } else {
2985 unsigned Opcode = Def->getOpcode();
2986 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2987 Def->getOperand(1).isFI()) {
2988 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002989 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002990 } else
2991 return false;
2992 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002993 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2994 if (Flags.isByVal())
2995 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002996 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002997 // define @foo(%struct.X* %A) {
2998 // tail call @bar(%struct.X* byval %A)
2999 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003000 return false;
3001 SDValue Ptr = Ld->getBasePtr();
3002 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3003 if (!FINode)
3004 return false;
3005 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003006 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003007 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003008 FI = FINode->getIndex();
3009 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003010 } else
3011 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003012
Evan Cheng4cae1332010-03-05 08:38:04 +00003013 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003014 if (!MFI->isFixedObjectIndex(FI))
3015 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003016 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003017}
3018
Dan Gohman98ca4f22009-08-05 01:29:28 +00003019/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3020/// for tail call optimization. Targets which want to do tail call
3021/// optimization should implement this function.
3022bool
3023X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003024 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003025 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003026 bool isCalleeStructRet,
3027 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003028 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003029 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003030 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003031 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003032 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003033 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003034 return false;
3035
Evan Cheng7096ae42010-01-29 06:45:59 +00003036 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003037 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003038 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003039
3040 // If the function return type is x86_fp80 and the callee return type is not,
3041 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3042 // perform a tailcall optimization here.
3043 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3044 return false;
3045
Evan Cheng13617962010-04-30 01:12:32 +00003046 CallingConv::ID CallerCC = CallerF->getCallingConv();
3047 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003048 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3049 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003050
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003051 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003052 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003053 return true;
3054 return false;
3055 }
3056
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003057 // Look for obvious safe cases to perform tail call optimization that do not
3058 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003059
Evan Cheng2c12cb42010-03-26 16:26:03 +00003060 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3061 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003062 const X86RegisterInfo *RegInfo =
3063 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003064 if (RegInfo->needsStackRealignment(MF))
3065 return false;
3066
Evan Chenga375d472010-03-15 18:54:48 +00003067 // Also avoid sibcall optimization if either caller or callee uses struct
3068 // return semantics.
3069 if (isCalleeStructRet || isCallerStructRet)
3070 return false;
3071
Chad Rosier2416da32011-06-24 21:15:36 +00003072 // An stdcall caller is expected to clean up its arguments; the callee
3073 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003074 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003075 return false;
3076
Chad Rosier871f6642011-05-18 19:59:50 +00003077 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003078 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003079 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003080
3081 // Optimizing for varargs on Win64 is unlikely to be safe without
3082 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003083 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003084 return false;
3085
Chad Rosier871f6642011-05-18 19:59:50 +00003086 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003087 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003088 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003089
Chad Rosier871f6642011-05-18 19:59:50 +00003090 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3091 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3092 if (!ArgLocs[i].isRegLoc())
3093 return false;
3094 }
3095
Chad Rosier30450e82011-12-22 22:35:21 +00003096 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3097 // stack. Therefore, if it's not used by the call it is not safe to optimize
3098 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003099 bool Unused = false;
3100 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3101 if (!Ins[i].Used) {
3102 Unused = true;
3103 break;
3104 }
3105 }
3106 if (Unused) {
3107 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003108 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003109 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003110 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003111 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003112 CCValAssign &VA = RVLocs[i];
3113 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3114 return false;
3115 }
3116 }
3117
Evan Cheng13617962010-04-30 01:12:32 +00003118 // If the calling conventions do not match, then we'd better make sure the
3119 // results are returned in the same way as what the caller expects.
3120 if (!CCMatch) {
3121 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003122 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003123 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003124 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3125
3126 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003127 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003128 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003129 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3130
3131 if (RVLocs1.size() != RVLocs2.size())
3132 return false;
3133 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3134 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3135 return false;
3136 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3137 return false;
3138 if (RVLocs1[i].isRegLoc()) {
3139 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3140 return false;
3141 } else {
3142 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3143 return false;
3144 }
3145 }
3146 }
3147
Evan Chenga6bff982010-01-30 01:22:00 +00003148 // If the callee takes no arguments then go on to check the results of the
3149 // call.
3150 if (!Outs.empty()) {
3151 // Check if stack adjustment is needed. For now, do not do this if any
3152 // argument is passed on the stack.
3153 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003154 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003155 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003156
3157 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003158 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003159 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003160
Duncan Sands45907662010-10-31 13:21:44 +00003161 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003162 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003163 MachineFunction &MF = DAG.getMachineFunction();
3164 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3165 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003166
3167 // Check if the arguments are already laid out in the right way as
3168 // the caller's fixed stack objects.
3169 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003170 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3171 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003172 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003173 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3174 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003175 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003176 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003177 if (VA.getLocInfo() == CCValAssign::Indirect)
3178 return false;
3179 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003180 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3181 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003182 return false;
3183 }
3184 }
3185 }
Evan Cheng9c044672010-05-29 01:35:22 +00003186
3187 // If the tailcall address may be in a register, then make sure it's
3188 // possible to register allocate for it. In 32-bit, the call address can
3189 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003190 // callee-saved registers are restored. These happen to be the same
3191 // registers used to pass 'inreg' arguments so watch out for those.
3192 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003193 ((!isa<GlobalAddressSDNode>(Callee) &&
3194 !isa<ExternalSymbolSDNode>(Callee)) ||
3195 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003196 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003197 // In PIC we need an extra register to formulate the address computation
3198 // for the callee.
3199 unsigned MaxInRegs =
3200 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3201
Evan Cheng9c044672010-05-29 01:35:22 +00003202 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3203 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003204 if (!VA.isRegLoc())
3205 continue;
3206 unsigned Reg = VA.getLocReg();
3207 switch (Reg) {
3208 default: break;
3209 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003210 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003211 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003212 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003213 }
3214 }
3215 }
Evan Chenga6bff982010-01-30 01:22:00 +00003216 }
Evan Chengb1712452010-01-27 06:25:16 +00003217
Evan Cheng86809cc2010-02-03 03:28:02 +00003218 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003219}
3220
Dan Gohman3df24e62008-09-03 23:12:08 +00003221FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003222X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3223 const TargetLibraryInfo *libInfo) const {
3224 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003225}
3226
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003227//===----------------------------------------------------------------------===//
3228// Other Lowering Hooks
3229//===----------------------------------------------------------------------===//
3230
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003231static bool MayFoldLoad(SDValue Op) {
3232 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3233}
3234
3235static bool MayFoldIntoStore(SDValue Op) {
3236 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3237}
3238
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003239static bool isTargetShuffle(unsigned Opcode) {
3240 switch(Opcode) {
3241 default: return false;
3242 case X86ISD::PSHUFD:
3243 case X86ISD::PSHUFHW:
3244 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003245 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003246 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003247 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003248 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003249 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003250 case X86ISD::MOVLPS:
3251 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003252 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003253 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003254 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003255 case X86ISD::MOVSS:
3256 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003257 case X86ISD::UNPCKL:
3258 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003259 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003260 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003261 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003262 return true;
3263 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003264}
3265
Andrew Trickac6d9be2013-05-25 02:42:55 +00003266static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003267 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003268 switch(Opc) {
3269 default: llvm_unreachable("Unknown x86 shuffle node");
3270 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003271 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003272 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003273 return DAG.getNode(Opc, dl, VT, V1);
3274 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003275}
3276
Andrew Trickac6d9be2013-05-25 02:42:55 +00003277static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003278 SDValue V1, unsigned TargetMask,
3279 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003280 switch(Opc) {
3281 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003282 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003283 case X86ISD::PSHUFHW:
3284 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003285 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003286 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003287 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3288 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003289}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003290
Andrew Trickac6d9be2013-05-25 02:42:55 +00003291static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003292 SDValue V1, SDValue V2, unsigned TargetMask,
3293 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003294 switch(Opc) {
3295 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003296 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003297 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003298 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003299 return DAG.getNode(Opc, dl, VT, V1, V2,
3300 DAG.getConstant(TargetMask, MVT::i8));
3301 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003302}
3303
Andrew Trickac6d9be2013-05-25 02:42:55 +00003304static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003305 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3306 switch(Opc) {
3307 default: llvm_unreachable("Unknown x86 shuffle node");
3308 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003309 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003310 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003311 case X86ISD::MOVLPS:
3312 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003313 case X86ISD::MOVSS:
3314 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003315 case X86ISD::UNPCKL:
3316 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003317 return DAG.getNode(Opc, dl, VT, V1, V2);
3318 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003319}
3320
Dan Gohmand858e902010-04-17 15:26:15 +00003321SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003322 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003323 const X86RegisterInfo *RegInfo =
3324 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003325 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3326 int ReturnAddrIndex = FuncInfo->getRAIndex();
3327
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003328 if (ReturnAddrIndex == 0) {
3329 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003330 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003331 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3332 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003333 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003334 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003335 }
3336
Evan Cheng25ab6902006-09-08 06:48:29 +00003337 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003338}
3339
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003340bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3341 bool hasSymbolicDisplacement) {
3342 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003343 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003344 return false;
3345
3346 // If we don't have a symbolic displacement - we don't have any extra
3347 // restrictions.
3348 if (!hasSymbolicDisplacement)
3349 return true;
3350
3351 // FIXME: Some tweaks might be needed for medium code model.
3352 if (M != CodeModel::Small && M != CodeModel::Kernel)
3353 return false;
3354
3355 // For small code model we assume that latest object is 16MB before end of 31
3356 // bits boundary. We may also accept pretty large negative constants knowing
3357 // that all objects are in the positive half of address space.
3358 if (M == CodeModel::Small && Offset < 16*1024*1024)
3359 return true;
3360
3361 // For kernel code model we know that all object resist in the negative half
3362 // of 32bits address space. We may not accept negative offsets, since they may
3363 // be just off and we may accept pretty large positive ones.
3364 if (M == CodeModel::Kernel && Offset > 0)
3365 return true;
3366
3367 return false;
3368}
3369
Evan Chengef41ff62011-06-23 17:54:54 +00003370/// isCalleePop - Determines whether the callee is required to pop its
3371/// own arguments. Callee pop is necessary to support tail calls.
3372bool X86::isCalleePop(CallingConv::ID CallingConv,
3373 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3374 if (IsVarArg)
3375 return false;
3376
3377 switch (CallingConv) {
3378 default:
3379 return false;
3380 case CallingConv::X86_StdCall:
3381 return !is64Bit;
3382 case CallingConv::X86_FastCall:
3383 return !is64Bit;
3384 case CallingConv::X86_ThisCall:
3385 return !is64Bit;
3386 case CallingConv::Fast:
3387 return TailCallOpt;
3388 case CallingConv::GHC:
3389 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003390 case CallingConv::HiPE:
3391 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003392 }
3393}
3394
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003395/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3396/// specific condition code, returning the condition code and the LHS/RHS of the
3397/// comparison to make.
3398static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3399 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003400 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003401 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3402 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3403 // X > -1 -> X == 0, jump !sign.
3404 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003405 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003406 }
3407 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003408 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003409 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003410 }
3411 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003412 // X < 1 -> X <= 0
3413 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003414 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003415 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003416 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003417
Evan Chengd9558e02006-01-06 00:43:03 +00003418 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003419 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003420 case ISD::SETEQ: return X86::COND_E;
3421 case ISD::SETGT: return X86::COND_G;
3422 case ISD::SETGE: return X86::COND_GE;
3423 case ISD::SETLT: return X86::COND_L;
3424 case ISD::SETLE: return X86::COND_LE;
3425 case ISD::SETNE: return X86::COND_NE;
3426 case ISD::SETULT: return X86::COND_B;
3427 case ISD::SETUGT: return X86::COND_A;
3428 case ISD::SETULE: return X86::COND_BE;
3429 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003430 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003431 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003432
Chris Lattner4c78e022008-12-23 23:42:27 +00003433 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003434
Chris Lattner4c78e022008-12-23 23:42:27 +00003435 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003436 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3437 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003438 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3439 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003440 }
3441
Chris Lattner4c78e022008-12-23 23:42:27 +00003442 switch (SetCCOpcode) {
3443 default: break;
3444 case ISD::SETOLT:
3445 case ISD::SETOLE:
3446 case ISD::SETUGT:
3447 case ISD::SETUGE:
3448 std::swap(LHS, RHS);
3449 break;
3450 }
3451
3452 // On a floating point condition, the flags are set as follows:
3453 // ZF PF CF op
3454 // 0 | 0 | 0 | X > Y
3455 // 0 | 0 | 1 | X < Y
3456 // 1 | 0 | 0 | X == Y
3457 // 1 | 1 | 1 | unordered
3458 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003459 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003460 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003461 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003462 case ISD::SETOLT: // flipped
3463 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003464 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003465 case ISD::SETOLE: // flipped
3466 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003467 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003468 case ISD::SETUGT: // flipped
3469 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003470 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003471 case ISD::SETUGE: // flipped
3472 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003473 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003474 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003475 case ISD::SETNE: return X86::COND_NE;
3476 case ISD::SETUO: return X86::COND_P;
3477 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003478 case ISD::SETOEQ:
3479 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003480 }
Evan Chengd9558e02006-01-06 00:43:03 +00003481}
3482
Evan Cheng4a460802006-01-11 00:33:36 +00003483/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3484/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003485/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003486static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003487 switch (X86CC) {
3488 default:
3489 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003490 case X86::COND_B:
3491 case X86::COND_BE:
3492 case X86::COND_E:
3493 case X86::COND_P:
3494 case X86::COND_A:
3495 case X86::COND_AE:
3496 case X86::COND_NE:
3497 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003498 return true;
3499 }
3500}
3501
Evan Chengeb2f9692009-10-27 19:56:55 +00003502/// isFPImmLegal - Returns true if the target can instruction select the
3503/// specified FP immediate natively. If false, the legalizer will
3504/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003505bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003506 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3507 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3508 return true;
3509 }
3510 return false;
3511}
3512
Nate Begeman9008ca62009-04-27 18:41:29 +00003513/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3514/// the specified range (L, H].
3515static bool isUndefOrInRange(int Val, int Low, int Hi) {
3516 return (Val < 0) || (Val >= Low && Val < Hi);
3517}
3518
3519/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3520/// specified value.
3521static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003522 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003523}
3524
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003525/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003526/// from position Pos and ending in Pos+Size, falls within the specified
3527/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003528static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003529 unsigned Pos, unsigned Size, int Low) {
3530 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003531 if (!isUndefOrEqual(Mask[i], Low))
3532 return false;
3533 return true;
3534}
3535
Nate Begeman9008ca62009-04-27 18:41:29 +00003536/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3537/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3538/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003539static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003540 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003541 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003542 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003543 return (Mask[0] < 2 && Mask[1] < 2);
3544 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003545}
3546
Nate Begeman9008ca62009-04-27 18:41:29 +00003547/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3548/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003549static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003550 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003551 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003552
Nate Begeman9008ca62009-04-27 18:41:29 +00003553 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003554 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3555 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003556
Evan Cheng506d3df2006-03-29 23:07:14 +00003557 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003558 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003559 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003560 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003561
Craig Toppera9a568a2012-05-02 08:03:44 +00003562 if (VT == MVT::v16i16) {
3563 // Lower quadword copied in order or undef.
3564 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3565 return false;
3566
3567 // Upper quadword shuffled.
3568 for (unsigned i = 12; i != 16; ++i)
3569 if (!isUndefOrInRange(Mask[i], 12, 16))
3570 return false;
3571 }
3572
Evan Cheng506d3df2006-03-29 23:07:14 +00003573 return true;
3574}
3575
Nate Begeman9008ca62009-04-27 18:41:29 +00003576/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3577/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003578static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003579 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003580 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003581
Rafael Espindola15684b22009-04-24 12:40:33 +00003582 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003583 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3584 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003585
Rafael Espindola15684b22009-04-24 12:40:33 +00003586 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003587 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003588 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003589 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003590
Craig Toppera9a568a2012-05-02 08:03:44 +00003591 if (VT == MVT::v16i16) {
3592 // Upper quadword copied in order.
3593 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3594 return false;
3595
3596 // Lower quadword shuffled.
3597 for (unsigned i = 8; i != 12; ++i)
3598 if (!isUndefOrInRange(Mask[i], 8, 12))
3599 return false;
3600 }
3601
Rafael Espindola15684b22009-04-24 12:40:33 +00003602 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003603}
3604
Nate Begemana09008b2009-10-19 02:17:23 +00003605/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3606/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003607static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003608 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003609 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3610 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003611 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003612
Craig Topper0e2037b2012-01-20 05:53:00 +00003613 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003614 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003615 unsigned NumLaneElts = NumElts/NumLanes;
3616
3617 // Do not handle 64-bit element shuffles with palignr.
3618 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003619 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003620
Craig Topper0e2037b2012-01-20 05:53:00 +00003621 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3622 unsigned i;
3623 for (i = 0; i != NumLaneElts; ++i) {
3624 if (Mask[i+l] >= 0)
3625 break;
3626 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003627
Craig Topper0e2037b2012-01-20 05:53:00 +00003628 // Lane is all undef, go to next lane
3629 if (i == NumLaneElts)
3630 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003631
Craig Topper0e2037b2012-01-20 05:53:00 +00003632 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003633
Craig Topper0e2037b2012-01-20 05:53:00 +00003634 // Make sure its in this lane in one of the sources
3635 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3636 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003637 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003638
3639 // If not lane 0, then we must match lane 0
3640 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3641 return false;
3642
3643 // Correct second source to be contiguous with first source
3644 if (Start >= (int)NumElts)
3645 Start -= NumElts - NumLaneElts;
3646
3647 // Make sure we're shifting in the right direction.
3648 if (Start <= (int)(i+l))
3649 return false;
3650
3651 Start -= i;
3652
3653 // Check the rest of the elements to see if they are consecutive.
3654 for (++i; i != NumLaneElts; ++i) {
3655 int Idx = Mask[i+l];
3656
3657 // Make sure its in this lane
3658 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3659 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3660 return false;
3661
3662 // If not lane 0, then we must match lane 0
3663 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3664 return false;
3665
3666 if (Idx >= (int)NumElts)
3667 Idx -= NumElts - NumLaneElts;
3668
3669 if (!isUndefOrEqual(Idx, Start+i))
3670 return false;
3671
3672 }
Nate Begemana09008b2009-10-19 02:17:23 +00003673 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003674
Nate Begemana09008b2009-10-19 02:17:23 +00003675 return true;
3676}
3677
Craig Topper1a7700a2012-01-19 08:19:12 +00003678/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3679/// the two vector operands have swapped position.
3680static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3681 unsigned NumElems) {
3682 for (unsigned i = 0; i != NumElems; ++i) {
3683 int idx = Mask[i];
3684 if (idx < 0)
3685 continue;
3686 else if (idx < (int)NumElems)
3687 Mask[i] = idx + NumElems;
3688 else
3689 Mask[i] = idx - NumElems;
3690 }
3691}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003692
Craig Topper1a7700a2012-01-19 08:19:12 +00003693/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3694/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3695/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3696/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003697static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003698
Craig Topper1a7700a2012-01-19 08:19:12 +00003699 unsigned NumElems = VT.getVectorNumElements();
3700 unsigned NumLanes = VT.getSizeInBits()/128;
3701 unsigned NumLaneElems = NumElems/NumLanes;
3702
3703 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003704 return false;
3705
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003706 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3707 bool symetricMaskRequired =
3708 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3709
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003710 // VSHUFPSY divides the resulting vector into 4 chunks.
3711 // The sources are also splitted into 4 chunks, and each destination
3712 // chunk must come from a different source chunk.
3713 //
3714 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3715 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3716 //
3717 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3718 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3719 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003720 // VSHUFPDY divides the resulting vector into 4 chunks.
3721 // The sources are also splitted into 4 chunks, and each destination
3722 // chunk must come from a different source chunk.
3723 //
3724 // SRC1 => X3 X2 X1 X0
3725 // SRC2 => Y3 Y2 Y1 Y0
3726 //
3727 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3728 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003729 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003730 unsigned HalfLaneElems = NumLaneElems/2;
3731 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3732 for (unsigned i = 0; i != NumLaneElems; ++i) {
3733 int Idx = Mask[i+l];
3734 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3735 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3736 return false;
3737 // For VSHUFPSY, the mask of the second half must be the same as the
3738 // first but with the appropriate offsets. This works in the same way as
3739 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003740 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003741 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003742 if (MaskVal[i] < 0) {
3743 MaskVal[i] = Idx - l;
3744 continue;
3745 }
3746 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003747 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003748 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003749 }
3750
3751 return true;
3752}
3753
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003754/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3755/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003756static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003757 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003758 return false;
3759
Craig Topper7a9a28b2012-08-12 02:23:29 +00003760 unsigned NumElems = VT.getVectorNumElements();
3761
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003762 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003763 return false;
3764
Evan Cheng2064a2b2006-03-28 06:50:32 +00003765 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003766 return isUndefOrEqual(Mask[0], 6) &&
3767 isUndefOrEqual(Mask[1], 7) &&
3768 isUndefOrEqual(Mask[2], 2) &&
3769 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003770}
3771
Nate Begeman0b10b912009-11-07 23:17:15 +00003772/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3773/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3774/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003775static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003776 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003777 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003778
Craig Topper7a9a28b2012-08-12 02:23:29 +00003779 unsigned NumElems = VT.getVectorNumElements();
3780
Nate Begeman0b10b912009-11-07 23:17:15 +00003781 if (NumElems != 4)
3782 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003783
Craig Topperdd637ae2012-02-19 05:41:45 +00003784 return isUndefOrEqual(Mask[0], 2) &&
3785 isUndefOrEqual(Mask[1], 3) &&
3786 isUndefOrEqual(Mask[2], 2) &&
3787 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003788}
3789
Evan Cheng5ced1d82006-04-06 23:23:56 +00003790/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3791/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003792static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003793 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003794 return false;
3795
Craig Topperdd637ae2012-02-19 05:41:45 +00003796 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003797
Evan Cheng5ced1d82006-04-06 23:23:56 +00003798 if (NumElems != 2 && NumElems != 4)
3799 return false;
3800
Chad Rosier238ae312012-04-30 17:47:15 +00003801 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003802 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003803 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003804
Chad Rosier238ae312012-04-30 17:47:15 +00003805 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003806 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003807 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003808
3809 return true;
3810}
3811
Nate Begeman0b10b912009-11-07 23:17:15 +00003812/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3813/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003814static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003815 if (!VT.is128BitVector())
3816 return false;
3817
Craig Topperdd637ae2012-02-19 05:41:45 +00003818 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003819
Craig Topper7a9a28b2012-08-12 02:23:29 +00003820 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003821 return false;
3822
Chad Rosier238ae312012-04-30 17:47:15 +00003823 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003824 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003825 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003826
Chad Rosier238ae312012-04-30 17:47:15 +00003827 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3828 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003829 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003830
3831 return true;
3832}
3833
Elena Demikhovsky15963732012-06-26 08:04:10 +00003834//
3835// Some special combinations that can be optimized.
3836//
3837static
3838SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3839 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003840 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003841 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003842
3843 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3844 return SDValue();
3845
3846 ArrayRef<int> Mask = SVOp->getMask();
3847
3848 // These are the special masks that may be optimized.
3849 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3850 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3851 bool MatchEvenMask = true;
3852 bool MatchOddMask = true;
3853 for (int i=0; i<8; ++i) {
3854 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3855 MatchEvenMask = false;
3856 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3857 MatchOddMask = false;
3858 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003859
Elena Demikhovsky32510202012-09-04 12:49:02 +00003860 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003861 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003862
Elena Demikhovsky15963732012-06-26 08:04:10 +00003863 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3864
Elena Demikhovsky32510202012-09-04 12:49:02 +00003865 SDValue Op0 = SVOp->getOperand(0);
3866 SDValue Op1 = SVOp->getOperand(1);
3867
3868 if (MatchEvenMask) {
3869 // Shift the second operand right to 32 bits.
3870 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3871 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3872 } else {
3873 // Shift the first operand left to 32 bits.
3874 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3875 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3876 }
3877 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3878 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003879}
3880
Evan Cheng0038e592006-03-28 00:39:58 +00003881/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3882/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003883static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003884 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003885
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003886 assert(VT.getSizeInBits() >= 128 &&
3887 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003888
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003889 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3890 unsigned NumLanes;
3891 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003892 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003893 if (VT.is256BitVector()) {
3894 if (NumElts != 4 && NumElts != 8 &&
3895 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003896 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003897 NumLanes = 2;
3898 NumOf256BitLanes = 1;
3899 } else if (VT.is512BitVector()) {
3900 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3901 "Unsupported vector type for unpckh");
3902 NumLanes = 2;
3903 NumOf256BitLanes = 2;
3904 } else {
3905 NumLanes = 1;
3906 NumOf256BitLanes = 1;
3907 }
Eric Christopherfd179292009-08-27 18:07:15 +00003908
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003909 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3910 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003911
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003912 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3913 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3914 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3915 int BitI = Mask[l256*NumEltsInStride+l+i];
3916 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3917 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003918 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003919 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3920 return false;
3921 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003922 return false;
3923 }
Evan Cheng39623da2006-04-20 08:58:49 +00003924 }
Evan Cheng0038e592006-03-28 00:39:58 +00003925 }
Evan Cheng0038e592006-03-28 00:39:58 +00003926 return true;
3927}
3928
Evan Cheng4fcb9222006-03-28 02:43:26 +00003929/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3930/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003931static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003932 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003933 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003934 "Unsupported vector type for unpckh");
3935
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003936 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3937 unsigned NumLanes;
3938 unsigned NumOf256BitLanes;
3939 unsigned NumElts = VT.getVectorNumElements();
3940 if (VT.is256BitVector()) {
3941 if (NumElts != 4 && NumElts != 8 &&
3942 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003943 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003944 NumLanes = 2;
3945 NumOf256BitLanes = 1;
3946 } else if (VT.is512BitVector()) {
3947 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3948 "Unsupported vector type for unpckh");
3949 NumLanes = 2;
3950 NumOf256BitLanes = 2;
3951 } else {
3952 NumLanes = 1;
3953 NumOf256BitLanes = 1;
3954 }
Eric Christopherfd179292009-08-27 18:07:15 +00003955
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003956 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3957 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003958
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003959 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3960 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3961 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3962 int BitI = Mask[l256*NumEltsInStride+l+i];
3963 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3964 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003965 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003966 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3967 return false;
3968 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003969 return false;
3970 }
Evan Cheng39623da2006-04-20 08:58:49 +00003971 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003972 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003973 return true;
3974}
3975
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003976/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3977/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3978/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003979static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003980 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003981 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003982
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003983 if (VT.is512BitVector())
3984 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00003985 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3986 "Unsupported vector type for unpckh");
3987
Craig Topper5a529e42013-01-18 06:44:29 +00003988 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003989 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003990 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003991
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003992 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3993 // FIXME: Need a better way to get rid of this, there's no latency difference
3994 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3995 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003996 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003997 return false;
3998
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003999 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4000 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004001 unsigned NumLanes = VT.getSizeInBits()/128;
4002 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004003
Craig Topper59235472013-08-06 07:23:12 +00004004 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4005 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4006 int BitI = Mask[l+i];
4007 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004008
4009 if (!isUndefOrEqual(BitI, j))
4010 return false;
4011 if (!isUndefOrEqual(BitI1, j))
4012 return false;
4013 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004014 }
David Greenea20244d2011-03-02 17:23:43 +00004015
Rafael Espindola15684b22009-04-24 12:40:33 +00004016 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004017}
4018
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004019/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4020/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4021/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004022static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004023 unsigned NumElts = VT.getVectorNumElements();
4024
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004025 if (VT.is512BitVector())
4026 return false;
4027
Craig Topper94438ba2011-12-16 08:06:31 +00004028 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4029 "Unsupported vector type for unpckh");
4030
Craig Topper5a529e42013-01-18 06:44:29 +00004031 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004032 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004033 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004034
Craig Topper94438ba2011-12-16 08:06:31 +00004035 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4036 // independently on 128-bit lanes.
4037 unsigned NumLanes = VT.getSizeInBits()/128;
4038 unsigned NumLaneElts = NumElts/NumLanes;
4039
Craig Topper59235472013-08-06 07:23:12 +00004040 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4041 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4042 int BitI = Mask[l+i];
4043 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004044 if (!isUndefOrEqual(BitI, j))
4045 return false;
4046 if (!isUndefOrEqual(BitI1, j))
4047 return false;
4048 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004049 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004050 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004051}
4052
Evan Cheng017dcc62006-04-21 01:05:10 +00004053/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4054/// specifies a shuffle of elements that is suitable for input to MOVSS,
4055/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004056static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004057 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004058 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004059 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004060 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004061
Craig Topperc612d792012-01-02 09:17:37 +00004062 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004063
Nate Begeman9008ca62009-04-27 18:41:29 +00004064 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004065 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004066
Craig Topperc612d792012-01-02 09:17:37 +00004067 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004068 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004069 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004070
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004071 return true;
4072}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004073
Craig Topper70b883b2011-11-28 10:14:51 +00004074/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004075/// as permutations between 128-bit chunks or halves. As an example: this
4076/// shuffle bellow:
4077/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4078/// The first half comes from the second half of V1 and the second half from the
4079/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004080static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004081 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004082 return false;
4083
4084 // The shuffle result is divided into half A and half B. In total the two
4085 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4086 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004087 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004088 bool MatchA = false, MatchB = false;
4089
4090 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004091 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004092 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4093 MatchA = true;
4094 break;
4095 }
4096 }
4097
4098 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004099 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004100 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4101 MatchB = true;
4102 break;
4103 }
4104 }
4105
4106 return MatchA && MatchB;
4107}
4108
Craig Topper70b883b2011-11-28 10:14:51 +00004109/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4110/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004111static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004112 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004113
Craig Topperc612d792012-01-02 09:17:37 +00004114 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004115
Craig Topperc612d792012-01-02 09:17:37 +00004116 unsigned FstHalf = 0, SndHalf = 0;
4117 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004118 if (SVOp->getMaskElt(i) > 0) {
4119 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4120 break;
4121 }
4122 }
Craig Topperc612d792012-01-02 09:17:37 +00004123 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004124 if (SVOp->getMaskElt(i) > 0) {
4125 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4126 break;
4127 }
4128 }
4129
4130 return (FstHalf | (SndHalf << 4));
4131}
4132
Craig Topperd36e1ef2013-08-15 08:38:25 +00004133// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004134static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004135 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4136 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004137 return false;
4138
Craig Topperd36e1ef2013-08-15 08:38:25 +00004139 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004140 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004141 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4142 for (unsigned i = 0; i != NumElts; ++i) {
4143 if (Mask[i] < 0)
4144 continue;
4145 Imm8 |= Mask[i] << (i*2);
4146 }
4147 return true;
4148 }
4149
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004150 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004151 SmallVector<int, 4> MaskVal(LaneSize, -1);
4152
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004153 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4154 for (unsigned i = 0; i != LaneSize; ++i) {
4155 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4156 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004157 if (Mask[i+l] < 0)
4158 continue;
4159 if (MaskVal[i] < 0) {
4160 MaskVal[i] = Mask[i+l] - l;
4161 Imm8 |= MaskVal[i] << (i*2);
4162 continue;
4163 }
4164 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004165 return false;
4166 }
4167 }
4168 return true;
4169}
4170
Craig Topper70b883b2011-11-28 10:14:51 +00004171/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004172/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4173/// Note that VPERMIL mask matching is different depending whether theunderlying
4174/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4175/// to the same elements of the low, but to the higher half of the source.
4176/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004177/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004178static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4179 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4180 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004181 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004182 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004183 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004184
Craig Topperc612d792012-01-02 09:17:37 +00004185 unsigned NumLanes = VT.getSizeInBits()/128;
4186 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004187 // 2 or 4 elements in one lane
4188
4189 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004190 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004191 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004192 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004193 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004194 if (symetricMaskRequired) {
4195 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4196 ExpectedMaskVal[i] = Mask[i+l] - l;
4197 continue;
4198 }
4199 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4200 return false;
4201 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004202 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004203 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004204 return true;
4205}
4206
Craig Topper5aaffa82012-02-19 02:53:47 +00004207/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004208/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004209/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004210static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004211 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004212 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004213 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004214
4215 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004216 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004217 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004218
Nate Begeman9008ca62009-04-27 18:41:29 +00004219 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004220 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004221
Craig Topperc612d792012-01-02 09:17:37 +00004222 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004223 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4224 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4225 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004226 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004227
Evan Cheng39623da2006-04-20 08:58:49 +00004228 return true;
4229}
4230
Evan Chengd9539472006-04-14 21:59:03 +00004231/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4232/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004233/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004234static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004235 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004236 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004237 return false;
4238
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004239 unsigned NumElems = VT.getVectorNumElements();
4240
Craig Topper5a529e42013-01-18 06:44:29 +00004241 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004242 (VT.is256BitVector() && NumElems != 8) ||
4243 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004244 return false;
4245
4246 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004247 for (unsigned i = 0; i != NumElems; i += 2)
4248 if (!isUndefOrEqual(Mask[i], i+1) ||
4249 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004250 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004251
4252 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004253}
4254
4255/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4256/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004257/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004258static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004259 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004260 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004261 return false;
4262
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004263 unsigned NumElems = VT.getVectorNumElements();
4264
Craig Topper5a529e42013-01-18 06:44:29 +00004265 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004266 (VT.is256BitVector() && NumElems != 8) ||
4267 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004268 return false;
4269
4270 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004271 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004272 if (!isUndefOrEqual(Mask[i], i) ||
4273 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004274 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004275
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004276 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004277}
4278
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004279/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4280/// specifies a shuffle of elements that is suitable for input to 256-bit
4281/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004282static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004283 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004284 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004285
Craig Topper7a9a28b2012-08-12 02:23:29 +00004286 unsigned NumElts = VT.getVectorNumElements();
4287 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004288 return false;
4289
Craig Topperc612d792012-01-02 09:17:37 +00004290 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004291 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004292 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004293 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004294 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004295 return false;
4296 return true;
4297}
4298
Evan Cheng0b457f02008-09-25 20:50:48 +00004299/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004300/// specifies a shuffle of elements that is suitable for input to 128-bit
4301/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004302static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004303 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004304 return false;
4305
Craig Topperc612d792012-01-02 09:17:37 +00004306 unsigned e = VT.getVectorNumElements() / 2;
4307 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004308 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004309 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004310 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004311 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004312 return false;
4313 return true;
4314}
4315
Elena Demikhovsky83952512013-07-31 11:35:14 +00004316/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004317/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004318/// suitable for instruction that extract 128 or 256 bit vectors
4319static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4320 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004321 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4322 return false;
4323
Elena Demikhovsky83952512013-07-31 11:35:14 +00004324 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004325 uint64_t Index =
4326 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4327
Craig Topper5a0910b2013-08-15 02:33:50 +00004328 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004329 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004330 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004331
4332 return Result;
4333}
4334
Elena Demikhovsky83952512013-07-31 11:35:14 +00004335/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004336/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004337/// insertion of 128 or 256-bit subvectors
4338static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4339 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004340 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4341 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004342 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004343 uint64_t Index =
4344 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4345
Craig Topper5a0910b2013-08-15 02:33:50 +00004346 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004347 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004348 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004349
4350 return Result;
4351}
4352
Elena Demikhovsky83952512013-07-31 11:35:14 +00004353bool X86::isVINSERT128Index(SDNode *N) {
4354 return isVINSERTIndex(N, 128);
4355}
4356
4357bool X86::isVINSERT256Index(SDNode *N) {
4358 return isVINSERTIndex(N, 256);
4359}
4360
4361bool X86::isVEXTRACT128Index(SDNode *N) {
4362 return isVEXTRACTIndex(N, 128);
4363}
4364
4365bool X86::isVEXTRACT256Index(SDNode *N) {
4366 return isVEXTRACTIndex(N, 256);
4367}
4368
Evan Cheng63d33002006-03-22 08:01:21 +00004369/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004370/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004371/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004372static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004373 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004374
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004375 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004376 "Unsupported vector type for PSHUF/SHUFP");
4377
4378 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4379 // independently on 128-bit lanes.
4380 unsigned NumElts = VT.getVectorNumElements();
4381 unsigned NumLanes = VT.getSizeInBits()/128;
4382 unsigned NumLaneElts = NumElts/NumLanes;
4383
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004384 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4385 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004386
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004387 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004388 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004389 for (unsigned i = 0; i != NumElts; ++i) {
4390 int Elt = N->getMaskElt(i);
4391 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004392 Elt &= NumLaneElts - 1;
4393 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004394 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004395 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004396
Evan Cheng63d33002006-03-22 08:01:21 +00004397 return Mask;
4398}
4399
Evan Cheng506d3df2006-03-29 23:07:14 +00004400/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004401/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004402static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004403 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004404
4405 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4406 "Unsupported vector type for PSHUFHW");
4407
4408 unsigned NumElts = VT.getVectorNumElements();
4409
Evan Cheng506d3df2006-03-29 23:07:14 +00004410 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004411 for (unsigned l = 0; l != NumElts; l += 8) {
4412 // 8 nodes per lane, but we only care about the last 4.
4413 for (unsigned i = 0; i < 4; ++i) {
4414 int Elt = N->getMaskElt(l+i+4);
4415 if (Elt < 0) continue;
4416 Elt &= 0x3; // only 2-bits.
4417 Mask |= Elt << (i * 2);
4418 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004419 }
Craig Topper6b28d352012-05-03 07:12:59 +00004420
Evan Cheng506d3df2006-03-29 23:07:14 +00004421 return Mask;
4422}
4423
4424/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004425/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004426static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004427 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004428
4429 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4430 "Unsupported vector type for PSHUFHW");
4431
4432 unsigned NumElts = VT.getVectorNumElements();
4433
Evan Cheng506d3df2006-03-29 23:07:14 +00004434 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004435 for (unsigned l = 0; l != NumElts; l += 8) {
4436 // 8 nodes per lane, but we only care about the first 4.
4437 for (unsigned i = 0; i < 4; ++i) {
4438 int Elt = N->getMaskElt(l+i);
4439 if (Elt < 0) continue;
4440 Elt &= 0x3; // only 2-bits
4441 Mask |= Elt << (i * 2);
4442 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004443 }
Craig Topper6b28d352012-05-03 07:12:59 +00004444
Evan Cheng506d3df2006-03-29 23:07:14 +00004445 return Mask;
4446}
4447
Nate Begemana09008b2009-10-19 02:17:23 +00004448/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4449/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004450static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004451 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004452 unsigned EltSize = VT.is512BitVector() ? 1 :
4453 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004454
Craig Topper0e2037b2012-01-20 05:53:00 +00004455 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004456 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004457 unsigned NumLaneElts = NumElts/NumLanes;
4458
4459 int Val = 0;
4460 unsigned i;
4461 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004462 Val = SVOp->getMaskElt(i);
4463 if (Val >= 0)
4464 break;
4465 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004466 if (Val >= (int)NumElts)
4467 Val -= NumElts - NumLaneElts;
4468
Eli Friedman63f8dde2011-07-25 21:36:45 +00004469 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004470 return (Val - i) * EltSize;
4471}
4472
Elena Demikhovsky83952512013-07-31 11:35:14 +00004473static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4474 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004475 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004476 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004477
4478 uint64_t Index =
4479 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4480
Craig Topper5a0910b2013-08-15 02:33:50 +00004481 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004482 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004483
Elena Demikhovsky83952512013-07-31 11:35:14 +00004484 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004485 return Index / NumElemsPerChunk;
4486}
4487
Elena Demikhovsky83952512013-07-31 11:35:14 +00004488static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4489 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004490 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004491 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004492
4493 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004494 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004495
Craig Topper5a0910b2013-08-15 02:33:50 +00004496 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004497 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004498
Elena Demikhovsky83952512013-07-31 11:35:14 +00004499 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004500 return Index / NumElemsPerChunk;
4501}
4502
Elena Demikhovsky83952512013-07-31 11:35:14 +00004503/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4504/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4505/// and VINSERTI128 instructions.
4506unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4507 return getExtractVEXTRACTImmediate(N, 128);
4508}
4509
4510/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4511/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4512/// and VINSERTI64x4 instructions.
4513unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4514 return getExtractVEXTRACTImmediate(N, 256);
4515}
4516
4517/// getInsertVINSERT128Immediate - Return the appropriate immediate
4518/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4519/// and VINSERTI128 instructions.
4520unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4521 return getInsertVINSERTImmediate(N, 128);
4522}
4523
4524/// getInsertVINSERT256Immediate - Return the appropriate immediate
4525/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4526/// and VINSERTI64x4 instructions.
4527unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4528 return getInsertVINSERTImmediate(N, 256);
4529}
4530
Evan Cheng37b73872009-07-30 08:33:02 +00004531/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4532/// constant +0.0.
4533bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004534 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4535 return CN->isNullValue();
4536 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4537 return CFP->getValueAPF().isPosZero();
4538 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004539}
4540
Nate Begeman9008ca62009-04-27 18:41:29 +00004541/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4542/// their permute mask.
4543static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4544 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004545 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004546 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004547 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004548
Nate Begeman5a5ca152009-04-29 05:20:52 +00004549 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004550 int Idx = SVOp->getMaskElt(i);
4551 if (Idx >= 0) {
4552 if (Idx < (int)NumElems)
4553 Idx += NumElems;
4554 else
4555 Idx -= NumElems;
4556 }
4557 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004558 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004559 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004560 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004561}
4562
Evan Cheng533a0aa2006-04-19 20:35:22 +00004563/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4564/// match movhlps. The lower half elements should come from upper half of
4565/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004566/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004567static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004568 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004569 return false;
4570 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004571 return false;
4572 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004573 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004574 return false;
4575 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004576 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004577 return false;
4578 return true;
4579}
4580
Evan Cheng5ced1d82006-04-06 23:23:56 +00004581/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004582/// is promoted to a vector. It also returns the LoadSDNode by reference if
4583/// required.
4584static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004585 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4586 return false;
4587 N = N->getOperand(0).getNode();
4588 if (!ISD::isNON_EXTLoad(N))
4589 return false;
4590 if (LD)
4591 *LD = cast<LoadSDNode>(N);
4592 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004593}
4594
Dan Gohman65fd6562011-11-03 21:49:52 +00004595// Test whether the given value is a vector value which will be legalized
4596// into a load.
4597static bool WillBeConstantPoolLoad(SDNode *N) {
4598 if (N->getOpcode() != ISD::BUILD_VECTOR)
4599 return false;
4600
4601 // Check for any non-constant elements.
4602 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4603 switch (N->getOperand(i).getNode()->getOpcode()) {
4604 case ISD::UNDEF:
4605 case ISD::ConstantFP:
4606 case ISD::Constant:
4607 break;
4608 default:
4609 return false;
4610 }
4611
4612 // Vectors of all-zeros and all-ones are materialized with special
4613 // instructions rather than being loaded.
4614 return !ISD::isBuildVectorAllZeros(N) &&
4615 !ISD::isBuildVectorAllOnes(N);
4616}
4617
Evan Cheng533a0aa2006-04-19 20:35:22 +00004618/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4619/// match movlp{s|d}. The lower half elements should come from lower half of
4620/// V1 (and in order), and the upper half elements should come from the upper
4621/// half of V2 (and in order). And since V1 will become the source of the
4622/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004623static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004624 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004625 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004626 return false;
4627
Evan Cheng466685d2006-10-09 20:57:25 +00004628 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004629 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004630 // Is V2 is a vector load, don't do this transformation. We will try to use
4631 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004632 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004633 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004634
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004635 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004636
Evan Cheng533a0aa2006-04-19 20:35:22 +00004637 if (NumElems != 2 && NumElems != 4)
4638 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004639 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004640 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004641 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004642 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004643 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004644 return false;
4645 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004646}
4647
Evan Cheng39623da2006-04-20 08:58:49 +00004648/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4649/// all the same.
4650static bool isSplatVector(SDNode *N) {
4651 if (N->getOpcode() != ISD::BUILD_VECTOR)
4652 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004653
Dan Gohman475871a2008-07-27 21:46:04 +00004654 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004655 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4656 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004657 return false;
4658 return true;
4659}
4660
Evan Cheng213d2cf2007-05-17 18:45:50 +00004661/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004662/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004663/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004664static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004665 SDValue V1 = N->getOperand(0);
4666 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004667 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4668 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004669 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004670 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004671 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004672 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4673 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004674 if (Opc != ISD::BUILD_VECTOR ||
4675 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004676 return false;
4677 } else if (Idx >= 0) {
4678 unsigned Opc = V1.getOpcode();
4679 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4680 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004681 if (Opc != ISD::BUILD_VECTOR ||
4682 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004683 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004684 }
4685 }
4686 return true;
4687}
4688
4689/// getZeroVector - Returns a vector of specified type with all zero elements.
4690///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004691static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004692 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004693 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004694
Dale Johannesen0488fb62010-09-30 23:57:10 +00004695 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004696 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004697 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004698 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004699 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004700 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4701 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4702 } else { // SSE1
4703 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4704 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4705 }
Craig Topper5a529e42013-01-18 06:44:29 +00004706 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004707 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004708 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4709 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004710 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4711 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004712 } else {
4713 // 256-bit logic and arithmetic instructions in AVX are all
4714 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4715 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4716 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004717 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4718 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004719 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004720 } else if (VT.is512BitVector()) { // AVX-512
4721 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4722 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4723 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4724 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004725 } else
4726 llvm_unreachable("Unexpected vector type");
4727
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004728 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004729}
4730
Chris Lattner8a594482007-11-25 00:24:49 +00004731/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004732/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4733/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4734/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004735static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004736 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004737 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004738
Owen Anderson825b72b2009-08-11 20:47:22 +00004739 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004740 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004741 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004742 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004743 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004744 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4745 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004746 } else { // AVX
4747 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004748 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004749 }
Craig Topper5a529e42013-01-18 06:44:29 +00004750 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004751 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004752 } else
4753 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004754
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004755 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004756}
4757
Evan Cheng39623da2006-04-20 08:58:49 +00004758/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4759/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004760static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004761 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004762 if (Mask[i] > (int)NumElems) {
4763 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004764 }
Evan Cheng39623da2006-04-20 08:58:49 +00004765 }
Evan Cheng39623da2006-04-20 08:58:49 +00004766}
4767
Evan Cheng017dcc62006-04-21 01:05:10 +00004768/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4769/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004770static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004771 SDValue V2) {
4772 unsigned NumElems = VT.getVectorNumElements();
4773 SmallVector<int, 8> Mask;
4774 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004775 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004776 Mask.push_back(i);
4777 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004778}
4779
Nate Begeman9008ca62009-04-27 18:41:29 +00004780/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004781static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004782 SDValue V2) {
4783 unsigned NumElems = VT.getVectorNumElements();
4784 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004785 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004786 Mask.push_back(i);
4787 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004788 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004789 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004790}
4791
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004792/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004793static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004794 SDValue V2) {
4795 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004796 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004797 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004798 Mask.push_back(i + Half);
4799 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004800 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004801 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004802}
4803
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004804// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004805// a generic shuffle instruction because the target has no such instructions.
4806// Generate shuffles which repeat i16 and i8 several times until they can be
4807// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004808static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004809 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004810 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004811 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004812
Nate Begeman9008ca62009-04-27 18:41:29 +00004813 while (NumElems > 4) {
4814 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004815 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004816 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004817 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004818 EltNo -= NumElems/2;
4819 }
4820 NumElems >>= 1;
4821 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004822 return V;
4823}
Eric Christopherfd179292009-08-27 18:07:15 +00004824
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004825/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4826static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004827 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004828 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004829
Craig Topper5a529e42013-01-18 06:44:29 +00004830 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004831 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004832 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004833 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4834 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004835 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004836 // To use VPERMILPS to splat scalars, the second half of indicies must
4837 // refer to the higher part, which is a duplication of the lower one,
4838 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004839 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4840 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004841
4842 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4843 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4844 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004845 } else
4846 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004847
4848 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4849}
4850
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004851/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004852static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004853 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004854 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004855 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004856
4857 int EltNo = SV->getSplatIndex();
4858 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004859 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004860
Craig Topper5a529e42013-01-18 06:44:29 +00004861 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4862 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004863
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004864 // Extract the 128-bit part containing the splat element and update
4865 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004866 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004867 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4868 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004869 EltNo -= NumElems/2;
4870 }
4871
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004872 // All i16 and i8 vector types can't be used directly by a generic shuffle
4873 // instruction because the target has no such instruction. Generate shuffles
4874 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004875 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004876 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004877 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004878 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004879
4880 // Recreate the 256-bit vector and place the same 128-bit vector
4881 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004882 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004883 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004884 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004885 }
4886
4887 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004888}
4889
Evan Chengba05f722006-04-21 23:03:30 +00004890/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004891/// vector of zero or undef vector. This produces a shuffle where the low
4892/// element of V2 is swizzled into the zero/undef vector, landing at element
4893/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman475871a2008-07-27 21:46:04 +00004894static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004895 bool IsZero,
4896 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004897 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004898 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004899 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004900 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004901 unsigned NumElems = VT.getVectorNumElements();
4902 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004903 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004904 // If this is the insertion idx, put the low elt of V2 here.
4905 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004906 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004907}
4908
Craig Toppera1ffc682012-03-20 06:42:26 +00004909/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4910/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004911/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004912static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004913 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004914 unsigned NumElems = VT.getVectorNumElements();
4915 SDValue ImmN;
4916
Craig Topper89f4e662012-03-20 07:17:59 +00004917 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004918 switch(N->getOpcode()) {
4919 case X86ISD::SHUFP:
4920 ImmN = N->getOperand(N->getNumOperands()-1);
4921 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4922 break;
4923 case X86ISD::UNPCKH:
4924 DecodeUNPCKHMask(VT, Mask);
4925 break;
4926 case X86ISD::UNPCKL:
4927 DecodeUNPCKLMask(VT, Mask);
4928 break;
4929 case X86ISD::MOVHLPS:
4930 DecodeMOVHLPSMask(NumElems, Mask);
4931 break;
4932 case X86ISD::MOVLHPS:
4933 DecodeMOVLHPSMask(NumElems, Mask);
4934 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004935 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004936 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004937 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004938 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004939 case X86ISD::PSHUFD:
4940 case X86ISD::VPERMILP:
4941 ImmN = N->getOperand(N->getNumOperands()-1);
4942 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004943 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004944 break;
4945 case X86ISD::PSHUFHW:
4946 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004947 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004948 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004949 break;
4950 case X86ISD::PSHUFLW:
4951 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004952 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004953 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004954 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004955 case X86ISD::VPERMI:
4956 ImmN = N->getOperand(N->getNumOperands()-1);
4957 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4958 IsUnary = true;
4959 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004960 case X86ISD::MOVSS:
4961 case X86ISD::MOVSD: {
4962 // The index 0 always comes from the first element of the second source,
4963 // this is why MOVSS and MOVSD are used in the first place. The other
4964 // elements come from the other positions of the first source vector
4965 Mask.push_back(NumElems);
4966 for (unsigned i = 1; i != NumElems; ++i) {
4967 Mask.push_back(i);
4968 }
4969 break;
4970 }
4971 case X86ISD::VPERM2X128:
4972 ImmN = N->getOperand(N->getNumOperands()-1);
4973 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004974 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004975 break;
4976 case X86ISD::MOVDDUP:
4977 case X86ISD::MOVLHPD:
4978 case X86ISD::MOVLPD:
4979 case X86ISD::MOVLPS:
4980 case X86ISD::MOVSHDUP:
4981 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004982 // Not yet implemented
4983 return false;
4984 default: llvm_unreachable("unknown target shuffle node");
4985 }
4986
4987 return true;
4988}
4989
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004990/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4991/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004992static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004993 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004994 if (Depth == 6)
4995 return SDValue(); // Limit search depth.
4996
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004997 SDValue V = SDValue(N, 0);
4998 EVT VT = V.getValueType();
4999 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005000
5001 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5002 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005003 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005004
Craig Topper3d092db2012-03-21 02:14:01 +00005005 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005006 return DAG.getUNDEF(VT.getVectorElementType());
5007
Craig Topperd156dc12012-02-06 07:17:51 +00005008 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005009 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5010 : SV->getOperand(1);
5011 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005012 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005013
5014 // Recurse into target specific vector shuffles to find scalars.
5015 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005016 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005017 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005018 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005019 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005020
Craig Topperd978c542012-05-06 19:46:21 +00005021 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005022 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005023
Craig Topper3d092db2012-03-21 02:14:01 +00005024 int Elt = ShuffleMask[Index];
5025 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005026 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005027
Craig Topper3d092db2012-03-21 02:14:01 +00005028 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005029 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005030 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005031 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005032 }
5033
5034 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005035 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005036 V = V.getOperand(0);
5037 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005038 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005039
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005040 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005041 return SDValue();
5042 }
5043
5044 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5045 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005046 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005047
5048 if (V.getOpcode() == ISD::BUILD_VECTOR)
5049 return V.getOperand(Index);
5050
5051 return SDValue();
5052}
5053
5054/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5055/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005056/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005057/// We count undefs as zeros until PreferredNum is reached.
5058static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5059 unsigned NumElems, bool ZerosFromLeft,
5060 SelectionDAG &DAG,
5061 unsigned PreferredNum = -1U) {
5062 unsigned NumZeros = 0;
5063 for (unsigned i = 0; i != NumElems; ++i) {
5064 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005065 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005066 if (!Elt.getNode())
5067 break;
5068
5069 if (X86::isZeroNode(Elt))
5070 ++NumZeros;
5071 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5072 NumZeros = std::min(NumZeros + 1, PreferredNum);
5073 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005074 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005075 }
5076
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005077 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005078}
5079
Craig Topper3d092db2012-03-21 02:14:01 +00005080/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5081/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005082/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5083static
Craig Topper3d092db2012-03-21 02:14:01 +00005084bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5085 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5086 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005087 bool SeenV1 = false;
5088 bool SeenV2 = false;
5089
Craig Topper3d092db2012-03-21 02:14:01 +00005090 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005091 int Idx = SVOp->getMaskElt(i);
5092 // Ignore undef indicies
5093 if (Idx < 0)
5094 continue;
5095
Craig Topper3d092db2012-03-21 02:14:01 +00005096 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005097 SeenV1 = true;
5098 else
5099 SeenV2 = true;
5100
5101 // Only accept consecutive elements from the same vector
5102 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5103 return false;
5104 }
5105
5106 OpNum = SeenV1 ? 0 : 1;
5107 return true;
5108}
5109
5110/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5111/// logical left shift of a vector.
5112static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5113 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005114 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005115 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005116 unsigned NumZeros = getNumOfConsecutiveZeros(
5117 SVOp, NumElems, false /* check zeros from right */, DAG,
5118 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005119 unsigned OpSrc;
5120
5121 if (!NumZeros)
5122 return false;
5123
5124 // Considering the elements in the mask that are not consecutive zeros,
5125 // check if they consecutively come from only one of the source vectors.
5126 //
5127 // V1 = {X, A, B, C} 0
5128 // \ \ \ /
5129 // vector_shuffle V1, V2 <1, 2, 3, X>
5130 //
5131 if (!isShuffleMaskConsecutive(SVOp,
5132 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005133 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005134 NumZeros, // Where to start looking in the src vector
5135 NumElems, // Number of elements in vector
5136 OpSrc)) // Which source operand ?
5137 return false;
5138
5139 isLeft = false;
5140 ShAmt = NumZeros;
5141 ShVal = SVOp->getOperand(OpSrc);
5142 return true;
5143}
5144
5145/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5146/// logical left shift of a vector.
5147static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5148 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005149 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005150 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005151 unsigned NumZeros = getNumOfConsecutiveZeros(
5152 SVOp, NumElems, true /* check zeros from left */, DAG,
5153 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005154 unsigned OpSrc;
5155
5156 if (!NumZeros)
5157 return false;
5158
5159 // Considering the elements in the mask that are not consecutive zeros,
5160 // check if they consecutively come from only one of the source vectors.
5161 //
5162 // 0 { A, B, X, X } = V2
5163 // / \ / /
5164 // vector_shuffle V1, V2 <X, X, 4, 5>
5165 //
5166 if (!isShuffleMaskConsecutive(SVOp,
5167 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005168 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005169 0, // Where to start looking in the src vector
5170 NumElems, // Number of elements in vector
5171 OpSrc)) // Which source operand ?
5172 return false;
5173
5174 isLeft = true;
5175 ShAmt = NumZeros;
5176 ShVal = SVOp->getOperand(OpSrc);
5177 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005178}
5179
5180/// isVectorShift - Returns true if the shuffle can be implemented as a
5181/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005182static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005183 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005184 // Although the logic below support any bitwidth size, there are no
5185 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005186 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005187 return false;
5188
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005189 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5190 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5191 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005192
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005193 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005194}
5195
Evan Chengc78d3b42006-04-24 18:01:45 +00005196/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5197///
Dan Gohman475871a2008-07-27 21:46:04 +00005198static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005199 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005200 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005201 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005202 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005203 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005204 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005205
Andrew Trickac6d9be2013-05-25 02:42:55 +00005206 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005207 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005208 bool First = true;
5209 for (unsigned i = 0; i < 16; ++i) {
5210 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5211 if (ThisIsNonZero && First) {
5212 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005213 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005214 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005215 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005216 First = false;
5217 }
5218
5219 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005220 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005221 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5222 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005223 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005224 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005225 }
5226 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005227 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5228 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5229 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005230 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005231 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005232 } else
5233 ThisElt = LastElt;
5234
Gabor Greifba36cb52008-08-28 21:40:38 +00005235 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005236 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005237 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005238 }
5239 }
5240
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005241 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005242}
5243
Bill Wendlinga348c562007-03-22 18:42:45 +00005244/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005245///
Dan Gohman475871a2008-07-27 21:46:04 +00005246static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005247 unsigned NumNonZero, unsigned NumZero,
5248 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005249 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005250 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005251 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005252 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005253
Andrew Trickac6d9be2013-05-25 02:42:55 +00005254 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005255 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005256 bool First = true;
5257 for (unsigned i = 0; i < 8; ++i) {
5258 bool isNonZero = (NonZeros & (1 << i)) != 0;
5259 if (isNonZero) {
5260 if (First) {
5261 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005262 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005263 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005264 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005265 First = false;
5266 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005267 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005268 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005269 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005270 }
5271 }
5272
5273 return V;
5274}
5275
Evan Chengf26ffe92008-05-29 08:22:04 +00005276/// getVShift - Return a vector logical shift node.
5277///
Owen Andersone50ed302009-08-10 22:56:29 +00005278static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005280 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005281 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005282 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005283 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005284 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5285 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005286 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005287 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005288 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005289}
5290
Craig Topperff79bc62013-08-18 08:53:01 +00005291static SDValue
5292LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005293
Evan Chengc3630942009-12-09 21:00:30 +00005294 // Check if the scalar load can be widened into a vector load. And if
5295 // the address is "base + cst" see if the cst can be "absorbed" into
5296 // the shuffle mask.
5297 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5298 SDValue Ptr = LD->getBasePtr();
5299 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5300 return SDValue();
5301 EVT PVT = LD->getValueType(0);
5302 if (PVT != MVT::i32 && PVT != MVT::f32)
5303 return SDValue();
5304
5305 int FI = -1;
5306 int64_t Offset = 0;
5307 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5308 FI = FINode->getIndex();
5309 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005310 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005311 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5312 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5313 Offset = Ptr.getConstantOperandVal(1);
5314 Ptr = Ptr.getOperand(0);
5315 } else {
5316 return SDValue();
5317 }
5318
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005319 // FIXME: 256-bit vector instructions don't require a strict alignment,
5320 // improve this code to support it better.
5321 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005322 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005323 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005324 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005325 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005326 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005327 // Can't change the alignment. FIXME: It's possible to compute
5328 // the exact stack offset and reference FI + adjust offset instead.
5329 // If someone *really* cares about this. That's the way to implement it.
5330 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005331 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005332 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005333 }
5334 }
5335
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005336 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005337 // Ptr + (Offset & ~15).
5338 if (Offset < 0)
5339 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005340 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005341 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005342 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005343 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005344 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005345 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5346
5347 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005348 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005349
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005350 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5351 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005352 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005353 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005354
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005355 SmallVector<int, 8> Mask;
5356 for (unsigned i = 0; i != NumElems; ++i)
5357 Mask.push_back(EltNo);
5358
Craig Toppercc3000632012-01-30 07:50:31 +00005359 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005360 }
5361
5362 return SDValue();
5363}
5364
Michael J. Spencerec38de22010-10-10 22:04:20 +00005365/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5366/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005367/// load which has the same value as a build_vector whose operands are 'elts'.
5368///
5369/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005370///
Nate Begeman1449f292010-03-24 22:19:06 +00005371/// FIXME: we'd also like to handle the case where the last elements are zero
5372/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5373/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005374static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005375 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005376 EVT EltVT = VT.getVectorElementType();
5377 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005378
Nate Begemanfdea31a2010-03-24 20:49:50 +00005379 LoadSDNode *LDBase = NULL;
5380 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005381
Nate Begeman1449f292010-03-24 22:19:06 +00005382 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005383 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005384 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005385 for (unsigned i = 0; i < NumElems; ++i) {
5386 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005387
Nate Begemanfdea31a2010-03-24 20:49:50 +00005388 if (!Elt.getNode() ||
5389 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5390 return SDValue();
5391 if (!LDBase) {
5392 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5393 return SDValue();
5394 LDBase = cast<LoadSDNode>(Elt.getNode());
5395 LastLoadedElt = i;
5396 continue;
5397 }
5398 if (Elt.getOpcode() == ISD::UNDEF)
5399 continue;
5400
5401 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5402 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5403 return SDValue();
5404 LastLoadedElt = i;
5405 }
Nate Begeman1449f292010-03-24 22:19:06 +00005406
5407 // If we have found an entire vector of loads and undefs, then return a large
5408 // load of the entire vector width starting at the base pointer. If we found
5409 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005410 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005411 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005412 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005413 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5414 LDBase->getPointerInfo(),
5415 LDBase->isVolatile(), LDBase->isNonTemporal(),
5416 LDBase->isInvariant(), 0);
5417 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5418 LDBase->getPointerInfo(),
5419 LDBase->isVolatile(), LDBase->isNonTemporal(),
5420 LDBase->isInvariant(), LDBase->getAlignment());
5421
5422 if (LDBase->hasAnyUseOfValue(1)) {
5423 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5424 SDValue(LDBase, 1),
5425 SDValue(NewLd.getNode(), 1));
5426 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5427 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5428 SDValue(NewLd.getNode(), 1));
5429 }
5430
5431 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005432 }
5433 if (NumElems == 4 && LastLoadedElt == 1 &&
5434 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005435 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5436 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005437 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005438 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5439 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005440 LDBase->getPointerInfo(),
5441 LDBase->getAlignment(),
5442 false/*isVolatile*/, true/*ReadMem*/,
5443 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005444
5445 // Make sure the newly-created LOAD is in the same position as LDBase in
5446 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5447 // update uses of LDBase's output chain to use the TokenFactor.
5448 if (LDBase->hasAnyUseOfValue(1)) {
5449 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5450 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5451 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5452 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5453 SDValue(ResNode.getNode(), 1));
5454 }
5455
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005456 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005457 }
5458 return SDValue();
5459}
5460
Nadav Rotem9d68b062012-04-08 12:54:54 +00005461/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5462/// to generate a splat value for the following cases:
5463/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005464/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005465/// a scalar load, or a constant.
5466/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005467/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005468static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5469 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005470 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005471 return SDValue();
5472
Craig Topper5a0910b2013-08-15 02:33:50 +00005473 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005474 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005475
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005476 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005477 "Unsupported vector type for broadcast.");
5478
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005479 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005480 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005481
Nadav Rotem9d68b062012-04-08 12:54:54 +00005482 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005483 default:
5484 // Unknown pattern found.
5485 return SDValue();
5486
5487 case ISD::BUILD_VECTOR: {
5488 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005489 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005490 return SDValue();
5491
Nadav Rotem9d68b062012-04-08 12:54:54 +00005492 Ld = Op.getOperand(0);
5493 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5494 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005495
5496 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005497 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005498 // Constants may have multiple users.
5499 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005500 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005501 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005502 }
5503
5504 case ISD::VECTOR_SHUFFLE: {
5505 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5506
5507 // Shuffles must have a splat mask where the first element is
5508 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005509 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005510 return SDValue();
5511
5512 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005513 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005514 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5515
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005516 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005517 return SDValue();
5518
5519 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005520 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005521 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5522 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5523 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005524
5525 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005526 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005527 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005528
5529 // The scalar_to_vector node and the suspected
5530 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005531 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005532
5533 // AVX-512 has register version of the broadcast
5534 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5535 Ld.getValueType().getSizeInBits() >= 32;
5536 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5537 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005538 return SDValue();
5539 break;
5540 }
5541 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005542
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005543 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005544
5545 // Handle the broadcasting a single constant scalar from the constant pool
5546 // into a vector. On Sandybridge it is still better to load a constant vector
5547 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005548 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005549 EVT CVT = Ld.getValueType();
5550 assert(!CVT.isVector() && "Must not broadcast a vector type");
5551 unsigned ScalarSize = CVT.getSizeInBits();
5552
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005553 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005554 const Constant *C = 0;
5555 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5556 C = CI->getConstantIntValue();
5557 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5558 C = CF->getConstantFPValue();
5559
5560 assert(C && "Invalid constant type");
5561
Craig Topper158ec072013-08-14 07:34:43 +00005562 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5563 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005564 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005565 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005566 MachinePointerInfo::getConstantPool(),
5567 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005568
Nadav Rotem9d68b062012-04-08 12:54:54 +00005569 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5570 }
5571 }
5572
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005573 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005574 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5575
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005576 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005577 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005578 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005579 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5580
5581 // The scalar source must be a normal load.
5582 if (!IsLoad)
5583 return SDValue();
5584
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005585 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005586 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005587
Craig Toppera9376332012-01-10 08:23:59 +00005588 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005589 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005590 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005591 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005592 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005593 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005594
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005595 // Unsupported broadcast.
5596 return SDValue();
5597}
5598
Craig Topper158ec072013-08-14 07:34:43 +00005599static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005600 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005601
5602 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005603 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5604 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005605 return SDValue();
5606
Andrew Trickac6d9be2013-05-25 02:42:55 +00005607 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005608 unsigned NumElems = Op.getNumOperands();
5609
5610 SDValue VecIn1;
5611 SDValue VecIn2;
5612 SmallVector<unsigned, 4> InsertIndices;
5613 SmallVector<int, 8> Mask(NumElems, -1);
5614
5615 for (unsigned i = 0; i != NumElems; ++i) {
5616 unsigned Opc = Op.getOperand(i).getOpcode();
5617
5618 if (Opc == ISD::UNDEF)
5619 continue;
5620
5621 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5622 // Quit if more than 1 elements need inserting.
5623 if (InsertIndices.size() > 1)
5624 return SDValue();
5625
5626 InsertIndices.push_back(i);
5627 continue;
5628 }
5629
5630 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5631 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5632
5633 // Quit if extracted from vector of different type.
5634 if (ExtractedFromVec.getValueType() != VT)
5635 return SDValue();
5636
5637 // Quit if non-constant index.
5638 if (!isa<ConstantSDNode>(ExtIdx))
5639 return SDValue();
5640
5641 if (VecIn1.getNode() == 0)
5642 VecIn1 = ExtractedFromVec;
5643 else if (VecIn1 != ExtractedFromVec) {
5644 if (VecIn2.getNode() == 0)
5645 VecIn2 = ExtractedFromVec;
5646 else if (VecIn2 != ExtractedFromVec)
5647 // Quit if more than 2 vectors to shuffle
5648 return SDValue();
5649 }
5650
5651 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5652
5653 if (ExtractedFromVec == VecIn1)
5654 Mask[i] = Idx;
5655 else if (ExtractedFromVec == VecIn2)
5656 Mask[i] = Idx + NumElems;
5657 }
5658
5659 if (VecIn1.getNode() == 0)
5660 return SDValue();
5661
5662 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5663 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5664 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5665 unsigned Idx = InsertIndices[i];
5666 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5667 DAG.getIntPtrConstant(Idx));
5668 }
5669
5670 return NV;
5671}
5672
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005673// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5674SDValue
5675X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5676
Craig Topper5a0910b2013-08-15 02:33:50 +00005677 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005678 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5679 "Unexpected type in LowerBUILD_VECTORvXi1!");
5680
5681 SDLoc dl(Op);
5682 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5683 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5684 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5685 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5686 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5687 Ops, VT.getVectorNumElements());
5688 }
5689
5690 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5691 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5692 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5693 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5694 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5695 Ops, VT.getVectorNumElements());
5696 }
5697
5698 bool AllContants = true;
5699 uint64_t Immediate = 0;
5700 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5701 SDValue In = Op.getOperand(idx);
5702 if (In.getOpcode() == ISD::UNDEF)
5703 continue;
5704 if (!isa<ConstantSDNode>(In)) {
5705 AllContants = false;
5706 break;
5707 }
5708 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005709 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005710 }
5711
5712 if (AllContants) {
5713 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5714 DAG.getConstant(Immediate, MVT::i16));
5715 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005716 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005717 }
5718
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005719 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005720 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005721 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5722 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5723 llvm_unreachable("Unsupported predicate operation");
5724 }
5725
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005726 SDValue EFLAGS, X86CC;
5727 if (In.getOpcode() == ISD::SETCC) {
5728 SDValue Op0 = In.getOperand(0);
5729 SDValue Op1 = In.getOperand(1);
5730 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5731 bool isFP = Op1.getValueType().isFloatingPoint();
5732 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5733
5734 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5735
5736 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5737 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5738 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5739 } else if (In.getOpcode() == X86ISD::SETCC) {
5740 X86CC = In.getOperand(0);
5741 EFLAGS = In.getOperand(1);
5742 } else {
5743 // The algorithm:
5744 // Bit1 = In & 0x1
5745 // if (Bit1 != 0)
5746 // ZF = 0
5747 // else
5748 // ZF = 1
5749 // if (ZF == 0)
5750 // res = allOnes ### CMOVNE -1, %res
5751 // else
5752 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005753 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005754 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5755 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5756 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5757 }
5758
5759 if (VT == MVT::v16i1) {
5760 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5761 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5762 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5763 Cst0, Cst1, X86CC, EFLAGS);
5764 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5765 }
5766
5767 if (VT == MVT::v8i1) {
5768 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5769 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5770 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5771 Cst0, Cst1, X86CC, EFLAGS);
5772 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5773 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5774 }
5775 llvm_unreachable("Unsupported predicate operation");
5776}
5777
Michael Liaofacace82012-10-19 17:15:18 +00005778SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005779X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005780 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005781
Craig Topper5a0910b2013-08-15 02:33:50 +00005782 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005783 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005784 unsigned NumElems = Op.getNumOperands();
5785
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005786 // Generate vectors for predicate vectors.
5787 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5788 return LowerBUILD_VECTORvXi1(Op, DAG);
5789
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005790 // Vectors containing all zeros can be matched by pxor and xorps later
5791 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5792 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5793 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005794 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005795 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005796
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005797 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005798 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005799
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005800 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005801 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5802 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005803 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005804 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005805 return Op;
5806
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005807 if (!VT.is512BitVector())
5808 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005809 }
5810
Craig Topper158ec072013-08-14 07:34:43 +00005811 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005812 if (Broadcast.getNode())
5813 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005814
Owen Andersone50ed302009-08-10 22:56:29 +00005815 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005816
Evan Cheng0db9fe62006-04-25 20:13:52 +00005817 unsigned NumZero = 0;
5818 unsigned NumNonZero = 0;
5819 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005820 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005821 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005822 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005823 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005824 if (Elt.getOpcode() == ISD::UNDEF)
5825 continue;
5826 Values.insert(Elt);
5827 if (Elt.getOpcode() != ISD::Constant &&
5828 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005829 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005830 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005831 NumZero++;
5832 else {
5833 NonZeros |= (1 << i);
5834 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005835 }
5836 }
5837
Chris Lattner97a2a562010-08-26 05:24:29 +00005838 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5839 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005840 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005841
Chris Lattner67f453a2008-03-09 05:42:06 +00005842 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005843 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005844 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005845 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005846
Chris Lattner62098042008-03-09 01:05:04 +00005847 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5848 // the value are obviously zero, truncate the value to i32 and do the
5849 // insertion that way. Only do this if the value is non-constant or if the
5850 // value is a constant being inserted into element 0. It is cheaper to do
5851 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005852 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005853 (!IsAllConstants || Idx == 0)) {
5854 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005855 // Handle SSE only.
5856 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5857 EVT VecVT = MVT::v4i32;
5858 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Chris Lattner62098042008-03-09 01:05:04 +00005860 // Truncate the value (which may itself be a constant) to i32, and
5861 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005862 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005863 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005864 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005865
Chris Lattner62098042008-03-09 01:05:04 +00005866 // Now we have our 32-bit value zero extended in the low element of
5867 // a vector. If Idx != 0, swizzle it into place.
5868 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005869 SmallVector<int, 4> Mask;
5870 Mask.push_back(Idx);
5871 for (unsigned i = 1; i != VecElts; ++i)
5872 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005873 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005874 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005875 }
Craig Topper07a27622012-01-22 03:07:48 +00005876 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005877 }
5878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005879
Chris Lattner19f79692008-03-08 22:59:52 +00005880 // If we have a constant or non-constant insertion into the low element of
5881 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5882 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005883 // depending on what the source datatype is.
5884 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005885 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005886 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005887
5888 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005889 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005890 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005891 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005892 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5893 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005894 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005895 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005896 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5897 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005898 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005899 }
5900
5901 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005902 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005903 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005904 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005905 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005906 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005907 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005908 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005909 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005910 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005911 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005912 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005913 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005914
5915 // Is it a vector logical left shift?
5916 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005917 X86::isZeroNode(Op.getOperand(0)) &&
5918 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005919 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005920 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005921 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005922 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005923 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005924 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005925
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005926 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005927 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005928
Chris Lattner19f79692008-03-08 22:59:52 +00005929 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5930 // is a non-constant being inserted into an element other than the low one,
5931 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5932 // movd/movss) to move this into the low element, then shuffle it into
5933 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005934 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005935 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005936
Evan Cheng0db9fe62006-04-25 20:13:52 +00005937 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005938 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005939 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005940 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005941 MaskVec.push_back(i == Idx ? 0 : 1);
5942 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005943 }
5944 }
5945
Chris Lattner67f453a2008-03-09 05:42:06 +00005946 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005947 if (Values.size() == 1) {
5948 if (EVTBits == 32) {
5949 // Instead of a shuffle like this:
5950 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5951 // Check if it's possible to issue this instead.
5952 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005953 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005954 SDValue Item = Op.getOperand(Idx);
5955 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5956 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5957 }
Dan Gohman475871a2008-07-27 21:46:04 +00005958 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005959 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005960
Dan Gohmana3941172007-07-24 22:55:08 +00005961 // A vector full of immediates; various special cases are already
5962 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005963 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005964 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005965
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005966 // For AVX-length vectors, build the individual 128-bit pieces and use
5967 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005968 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005969 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005970 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005971 V.push_back(Op.getOperand(i));
5972
5973 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5974
5975 // Build both the lower and upper subvector.
5976 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5977 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5978 NumElems/2);
5979
5980 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005981 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005982 }
5983
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005984 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005985 if (EVTBits == 64) {
5986 if (NumNonZero == 1) {
5987 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005988 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005989 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005990 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005991 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005992 }
Dan Gohman475871a2008-07-27 21:46:04 +00005993 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005994 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005995
5996 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005997 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005998 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005999 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006000 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006001 }
6002
Bill Wendling826f36f2007-03-28 00:57:11 +00006003 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006004 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006005 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006006 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006007 }
6008
6009 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006010 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006011 if (NumElems == 4 && NumZero > 0) {
6012 for (unsigned i = 0; i < 4; ++i) {
6013 bool isZero = !(NonZeros & (1 << i));
6014 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006015 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006016 else
Dale Johannesenace16102009-02-03 19:33:06 +00006017 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006018 }
6019
6020 for (unsigned i = 0; i < 2; ++i) {
6021 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6022 default: break;
6023 case 0:
6024 V[i] = V[i*2]; // Must be a zero vector.
6025 break;
6026 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006027 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006028 break;
6029 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006030 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006031 break;
6032 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006033 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006034 break;
6035 }
6036 }
6037
Benjamin Kramer9c683542012-01-30 15:16:21 +00006038 bool Reverse1 = (NonZeros & 0x3) == 2;
6039 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6040 int MaskVec[] = {
6041 Reverse1 ? 1 : 0,
6042 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006043 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6044 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006045 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006046 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006047 }
6048
Craig Topper7a9a28b2012-08-12 02:23:29 +00006049 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006050 // Check for a build vector of consecutive loads.
6051 for (unsigned i = 0; i < NumElems; ++i)
6052 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006053
Nate Begemanfdea31a2010-03-24 20:49:50 +00006054 // Check for elements which are consecutive loads.
6055 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6056 if (LD.getNode())
6057 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006058
Michael Liaofacace82012-10-19 17:15:18 +00006059 // Check for a build vector from mostly shuffle plus few inserting.
6060 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6061 if (Sh.getNode())
6062 return Sh;
6063
Michael J. Spencerec38de22010-10-10 22:04:20 +00006064 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006065 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006066 SDValue Result;
6067 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6068 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6069 else
6070 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006071
Chris Lattner24faf612010-08-28 17:59:08 +00006072 for (unsigned i = 1; i < NumElems; ++i) {
6073 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6074 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006075 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006076 }
6077 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006078 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006079
Chris Lattner6e80e442010-08-28 17:15:43 +00006080 // Otherwise, expand into a number of unpckl*, start by extending each of
6081 // our (non-undef) elements to the full vector width with the element in the
6082 // bottom slot of the vector (which generates no code for SSE).
6083 for (unsigned i = 0; i < NumElems; ++i) {
6084 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6085 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6086 else
6087 V[i] = DAG.getUNDEF(VT);
6088 }
6089
6090 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006091 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6092 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6093 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006094 unsigned EltStride = NumElems >> 1;
6095 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006096 for (unsigned i = 0; i < EltStride; ++i) {
6097 // If V[i+EltStride] is undef and this is the first round of mixing,
6098 // then it is safe to just drop this shuffle: V[i] is already in the
6099 // right place, the one element (since it's the first round) being
6100 // inserted as undef can be dropped. This isn't safe for successive
6101 // rounds because they will permute elements within both vectors.
6102 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6103 EltStride == NumElems/2)
6104 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006105
Chris Lattner6e80e442010-08-28 17:15:43 +00006106 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006107 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006108 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006109 }
6110 return V[0];
6111 }
Dan Gohman475871a2008-07-27 21:46:04 +00006112 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006113}
6114
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006115// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6116// to create 256-bit vectors from two other 128-bit ones.
6117static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006118 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006119 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006120
Elena Demikhovsky83952512013-07-31 11:35:14 +00006121 assert((ResVT.is256BitVector() ||
6122 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006123
6124 SDValue V1 = Op.getOperand(0);
6125 SDValue V2 = Op.getOperand(1);
6126 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006127 if(ResVT.is256BitVector())
6128 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006129
Elena Demikhovsky83952512013-07-31 11:35:14 +00006130 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006131}
6132
Craig Topper55b24052012-09-11 06:15:32 +00006133static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006134 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006135
Elena Demikhovsky83952512013-07-31 11:35:14 +00006136 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006137 // from two other 128-bit ones.
6138 return LowerAVXCONCAT_VECTORS(Op, DAG);
6139}
6140
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006141// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006142static SDValue
6143LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6144 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006145 SDValue V1 = SVOp->getOperand(0);
6146 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006147 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006148 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006149 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006150 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006151
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006152 // There is no blend with immediate in AVX-512.
6153 if (VT.is512BitVector())
6154 return SDValue();
6155
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006156 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6157 return SDValue();
6158 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006159 return SDValue();
6160
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006161 // Check the mask for BLEND and build the value.
6162 unsigned MaskValue = 0;
6163 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006164 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006165 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006166
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006167 // Blend for v16i16 should be symetric for the both lanes.
6168 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006169
Craig Topper9b33ef72013-01-21 06:57:59 +00006170 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006171 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006172 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006173
Craig Topper04f74a12013-01-21 07:25:16 +00006174 if ((EltIdx < 0 || EltIdx == (int)i) &&
6175 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006176 continue;
6177
Craig Topper9b33ef72013-01-21 06:57:59 +00006178 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006179 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006180 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6181 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006182 else
Craig Topper1842ba02012-04-23 06:38:28 +00006183 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006184 }
6185
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006186 // Convert i32 vectors to floating point if it is not AVX2.
6187 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006188 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006189 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006190 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6191 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006192 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6193 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6194 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006195
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006196 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6197 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006198 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006199}
6200
Nate Begemanb9a47b82009-02-23 08:49:38 +00006201// v8i16 shuffles - Prefer shuffles in the following order:
6202// 1. [all] pshuflw, pshufhw, optional move
6203// 2. [ssse3] 1 x pshufb
6204// 3. [ssse3] 2 x pshufb + 1 x por
6205// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006206static SDValue
6207LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6208 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006209 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006210 SDValue V1 = SVOp->getOperand(0);
6211 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006212 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006213 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006214
Nate Begemanb9a47b82009-02-23 08:49:38 +00006215 // Determine if more than 1 of the words in each of the low and high quadwords
6216 // of the result come from the same quadword of one of the two inputs. Undef
6217 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006218 unsigned LoQuad[] = { 0, 0, 0, 0 };
6219 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006220 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006221 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006222 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006223 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006224 MaskVals.push_back(EltIdx);
6225 if (EltIdx < 0) {
6226 ++Quad[0];
6227 ++Quad[1];
6228 ++Quad[2];
6229 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006230 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006231 }
6232 ++Quad[EltIdx / 4];
6233 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006234 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006235
Nate Begemanb9a47b82009-02-23 08:49:38 +00006236 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006237 unsigned MaxQuad = 1;
6238 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006239 if (LoQuad[i] > MaxQuad) {
6240 BestLoQuad = i;
6241 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006242 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006243 }
6244
Nate Begemanb9a47b82009-02-23 08:49:38 +00006245 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006246 MaxQuad = 1;
6247 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006248 if (HiQuad[i] > MaxQuad) {
6249 BestHiQuad = i;
6250 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006251 }
6252 }
6253
Nate Begemanb9a47b82009-02-23 08:49:38 +00006254 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006255 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006256 // single pshufb instruction is necessary. If There are more than 2 input
6257 // quads, disable the next transformation since it does not help SSSE3.
6258 bool V1Used = InputQuads[0] || InputQuads[1];
6259 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006260 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006261 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006262 BestLoQuad = InputQuads[0] ? 0 : 1;
6263 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006264 }
6265 if (InputQuads.count() > 2) {
6266 BestLoQuad = -1;
6267 BestHiQuad = -1;
6268 }
6269 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006270
Nate Begemanb9a47b82009-02-23 08:49:38 +00006271 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6272 // the shuffle mask. If a quad is scored as -1, that means that it contains
6273 // words from all 4 input quadwords.
6274 SDValue NewV;
6275 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006276 int MaskV[] = {
6277 BestLoQuad < 0 ? 0 : BestLoQuad,
6278 BestHiQuad < 0 ? 1 : BestHiQuad
6279 };
Eric Christopherfd179292009-08-27 18:07:15 +00006280 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006281 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6282 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6283 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006284
Nate Begemanb9a47b82009-02-23 08:49:38 +00006285 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6286 // source words for the shuffle, to aid later transformations.
6287 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006288 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006289 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006290 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006291 if (idx != (int)i)
6292 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006293 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006294 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006295 AllWordsInNewV = false;
6296 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006297 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006298
Nate Begemanb9a47b82009-02-23 08:49:38 +00006299 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6300 if (AllWordsInNewV) {
6301 for (int i = 0; i != 8; ++i) {
6302 int idx = MaskVals[i];
6303 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006304 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006305 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006306 if ((idx != i) && idx < 4)
6307 pshufhw = false;
6308 if ((idx != i) && idx > 3)
6309 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006310 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006311 V1 = NewV;
6312 V2Used = false;
6313 BestLoQuad = 0;
6314 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006315 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006316
Nate Begemanb9a47b82009-02-23 08:49:38 +00006317 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6318 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006319 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006320 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6321 unsigned TargetMask = 0;
6322 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006323 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006324 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6325 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6326 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006327 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006328 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006329 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006330 }
Eric Christopherfd179292009-08-27 18:07:15 +00006331
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006332 // Promote splats to a larger type which usually leads to more efficient code.
6333 // FIXME: Is this true if pshufb is available?
6334 if (SVOp->isSplat())
6335 return PromoteSplat(SVOp, DAG);
6336
Nate Begemanb9a47b82009-02-23 08:49:38 +00006337 // If we have SSSE3, and all words of the result are from 1 input vector,
6338 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6339 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006340 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006341 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006342
Nate Begemanb9a47b82009-02-23 08:49:38 +00006343 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006344 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006345 // mask, and elements that come from V1 in the V2 mask, so that the two
6346 // results can be OR'd together.
6347 bool TwoInputs = V1Used && V2Used;
6348 for (unsigned i = 0; i != 8; ++i) {
6349 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006350 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6351 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006352 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006353 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006354 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006355 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006356 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006357 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006358 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006359 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006360 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006361
Nate Begemanb9a47b82009-02-23 08:49:38 +00006362 // Calculate the shuffle mask for the second input, shuffle it, and
6363 // OR it with the first shuffled input.
6364 pshufbMask.clear();
6365 for (unsigned i = 0; i != 8; ++i) {
6366 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006367 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6368 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6369 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6370 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006371 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006372 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006373 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006374 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006375 MVT::v16i8, &pshufbMask[0], 16));
6376 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006377 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006378 }
6379
6380 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6381 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006382 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006383 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006384 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006385 for (int i = 0; i != 4; ++i) {
6386 int idx = MaskVals[i];
6387 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006388 InOrder.set(i);
6389 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006390 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006391 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006392 }
6393 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006394 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006395 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006396
Craig Topperdd637ae2012-02-19 05:41:45 +00006397 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6398 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006399 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006400 NewV.getOperand(0),
6401 getShufflePSHUFLWImmediate(SVOp), DAG);
6402 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006403 }
Eric Christopherfd179292009-08-27 18:07:15 +00006404
Nate Begemanb9a47b82009-02-23 08:49:38 +00006405 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6406 // and update MaskVals with the new element order.
6407 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006408 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006409 for (unsigned i = 4; i != 8; ++i) {
6410 int idx = MaskVals[i];
6411 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006412 InOrder.set(i);
6413 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006414 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006415 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006416 }
6417 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006418 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006419 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006420
Craig Topperdd637ae2012-02-19 05:41:45 +00006421 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6422 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006423 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006424 NewV.getOperand(0),
6425 getShufflePSHUFHWImmediate(SVOp), DAG);
6426 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006427 }
Eric Christopherfd179292009-08-27 18:07:15 +00006428
Nate Begemanb9a47b82009-02-23 08:49:38 +00006429 // In case BestHi & BestLo were both -1, which means each quadword has a word
6430 // from each of the four input quadwords, calculate the InOrder bitvector now
6431 // before falling through to the insert/extract cleanup.
6432 if (BestLoQuad == -1 && BestHiQuad == -1) {
6433 NewV = V1;
6434 for (int i = 0; i != 8; ++i)
6435 if (MaskVals[i] < 0 || MaskVals[i] == i)
6436 InOrder.set(i);
6437 }
Eric Christopherfd179292009-08-27 18:07:15 +00006438
Nate Begemanb9a47b82009-02-23 08:49:38 +00006439 // The other elements are put in the right place using pextrw and pinsrw.
6440 for (unsigned i = 0; i != 8; ++i) {
6441 if (InOrder[i])
6442 continue;
6443 int EltIdx = MaskVals[i];
6444 if (EltIdx < 0)
6445 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006446 SDValue ExtOp = (EltIdx < 8) ?
6447 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6448 DAG.getIntPtrConstant(EltIdx)) :
6449 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006450 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006451 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006452 DAG.getIntPtrConstant(i));
6453 }
6454 return NewV;
6455}
6456
6457// v16i8 shuffles - Prefer shuffles in the following order:
6458// 1. [ssse3] 1 x pshufb
6459// 2. [ssse3] 2 x pshufb + 1 x por
6460// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006461static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6462 const X86Subtarget* Subtarget,
6463 SelectionDAG &DAG) {
6464 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006465 SDValue V1 = SVOp->getOperand(0);
6466 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006467 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006468 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006469
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006470 // Promote splats to a larger type which usually leads to more efficient code.
6471 // FIXME: Is this true if pshufb is available?
6472 if (SVOp->isSplat())
6473 return PromoteSplat(SVOp, DAG);
6474
Nate Begemanb9a47b82009-02-23 08:49:38 +00006475 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006476 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006477 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006478
Nate Begemanb9a47b82009-02-23 08:49:38 +00006479 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006480 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006481 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006482
Nate Begemanb9a47b82009-02-23 08:49:38 +00006483 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006484 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006485 //
6486 // Otherwise, we have elements from both input vectors, and must zero out
6487 // elements that come from V2 in the first mask, and V1 in the second mask
6488 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006489 for (unsigned i = 0; i != 16; ++i) {
6490 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006491 if (EltIdx < 0 || EltIdx >= 16)
6492 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006493 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006494 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006495 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006496 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006497 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006498
6499 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6500 // the 2nd operand if it's undefined or zero.
6501 if (V2.getOpcode() == ISD::UNDEF ||
6502 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006503 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006504
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 // Calculate the shuffle mask for the second input, shuffle it, and
6506 // OR it with the first shuffled input.
6507 pshufbMask.clear();
6508 for (unsigned i = 0; i != 16; ++i) {
6509 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006510 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006511 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006512 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006513 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006514 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006515 MVT::v16i8, &pshufbMask[0], 16));
6516 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006517 }
Eric Christopherfd179292009-08-27 18:07:15 +00006518
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 // No SSSE3 - Calculate in place words and then fix all out of place words
6520 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6521 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006522 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6523 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006524 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006525 for (int i = 0; i != 8; ++i) {
6526 int Elt0 = MaskVals[i*2];
6527 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006528
Nate Begemanb9a47b82009-02-23 08:49:38 +00006529 // This word of the result is all undef, skip it.
6530 if (Elt0 < 0 && Elt1 < 0)
6531 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006532
Nate Begemanb9a47b82009-02-23 08:49:38 +00006533 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006534 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006535 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006536
Nate Begemanb9a47b82009-02-23 08:49:38 +00006537 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6538 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6539 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006540
6541 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6542 // using a single extract together, load it and store it.
6543 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006544 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006545 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006546 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006547 DAG.getIntPtrConstant(i));
6548 continue;
6549 }
6550
Nate Begemanb9a47b82009-02-23 08:49:38 +00006551 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006552 // source byte is not also odd, shift the extracted word left 8 bits
6553 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006554 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006555 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006556 DAG.getIntPtrConstant(Elt1 / 2));
6557 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006558 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006559 DAG.getConstant(8,
6560 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006561 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006562 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6563 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006564 }
6565 // If Elt0 is defined, extract it from the appropriate source. If the
6566 // source byte is not also even, shift the extracted word right 8 bits. If
6567 // Elt1 was also defined, OR the extracted values together before
6568 // inserting them in the result.
6569 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006570 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006571 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6572 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006573 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006574 DAG.getConstant(8,
6575 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006576 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006577 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6578 DAG.getConstant(0x00FF, MVT::i16));
6579 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006580 : InsElt0;
6581 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006583 DAG.getIntPtrConstant(i));
6584 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006585 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006586}
6587
Elena Demikhovsky41789462012-09-06 12:42:01 +00006588// v32i8 shuffles - Translate to VPSHUFB if possible.
6589static
6590SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006591 const X86Subtarget *Subtarget,
6592 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006593 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006594 SDValue V1 = SVOp->getOperand(0);
6595 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006596 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006597 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006598
6599 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006600 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6601 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006602
Michael Liao471b9172012-10-03 23:43:52 +00006603 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006604 // (1) one of input vector is undefined or zeroinitializer.
6605 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6606 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006607 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006608 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006609 return SDValue();
6610
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006611 if (V1IsAllZero && !V2IsAllZero) {
6612 CommuteVectorShuffleMask(MaskVals, 32);
6613 V1 = V2;
6614 }
6615 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006616 for (unsigned i = 0; i != 32; i++) {
6617 int EltIdx = MaskVals[i];
6618 if (EltIdx < 0 || EltIdx >= 32)
6619 EltIdx = 0x80;
6620 else {
6621 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6622 // Cross lane is not allowed.
6623 return SDValue();
6624 EltIdx &= 0xf;
6625 }
6626 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6627 }
6628 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6629 DAG.getNode(ISD::BUILD_VECTOR, dl,
6630 MVT::v32i8, &pshufbMask[0], 32));
6631}
6632
Evan Cheng7a831ce2007-12-15 03:00:47 +00006633/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006634/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006635/// done when every pair / quad of shuffle mask elements point to elements in
6636/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006637/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006638static
Nate Begeman9008ca62009-04-27 18:41:29 +00006639SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006640 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006641 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006642 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006643 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006644 MVT NewVT;
6645 unsigned Scale;
6646 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006647 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006648 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6649 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6650 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6651 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6652 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6653 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006654 }
6655
Nate Begeman9008ca62009-04-27 18:41:29 +00006656 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006657 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006658 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006659 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006660 int EltIdx = SVOp->getMaskElt(i+j);
6661 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006662 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006663 if (StartIdx < 0)
6664 StartIdx = (EltIdx / Scale);
6665 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006666 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006667 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006668 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006669 }
6670
Craig Topper11ac1f82012-05-04 04:08:44 +00006671 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6672 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006673 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006674}
6675
Evan Chengd880b972008-05-09 21:53:03 +00006676/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006677///
Craig Topper8d725b92013-08-15 05:33:45 +00006678static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006679 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006680 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006681 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006682 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006683 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006684 LD = dyn_cast<LoadSDNode>(SrcOp);
6685 if (!LD) {
6686 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6687 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006688 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006689 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006690 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006691 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006692 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006693 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006694 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006695 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006696 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6697 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6698 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006699 SrcOp.getOperand(0)
6700 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006701 }
6702 }
6703 }
6704
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006705 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006706 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006707 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006708 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006709}
6710
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006711/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6712/// which could not be matched by any known target speficic shuffle
6713static SDValue
6714LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006715
6716 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6717 if (NewOp.getNode())
6718 return NewOp;
6719
Craig Topper5a0910b2013-08-15 02:33:50 +00006720 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006721
Craig Topper8f35c132012-01-20 09:29:03 +00006722 unsigned NumElems = VT.getVectorNumElements();
6723 unsigned NumLaneElems = NumElems / 2;
6724
Andrew Trickac6d9be2013-05-25 02:42:55 +00006725 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006726 MVT EltVT = VT.getVectorElementType();
6727 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006728 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006729
Craig Topper9a2b6e12012-04-06 07:45:23 +00006730 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006731 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006732 // Build a shuffle mask for the output, discovering on the fly which
6733 // input vectors to use as shuffle operands (recorded in InputUsed).
6734 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006735 // out with UseBuildVector set.
6736 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006737 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006738 unsigned LaneStart = l * NumLaneElems;
6739 for (unsigned i = 0; i != NumLaneElems; ++i) {
6740 // The mask element. This indexes into the input.
6741 int Idx = SVOp->getMaskElt(i+LaneStart);
6742 if (Idx < 0) {
6743 // the mask element does not index into any input vector.
6744 Mask.push_back(-1);
6745 continue;
6746 }
Craig Topper8f35c132012-01-20 09:29:03 +00006747
Craig Topper9a2b6e12012-04-06 07:45:23 +00006748 // The input vector this mask element indexes into.
6749 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006750
Craig Topper9a2b6e12012-04-06 07:45:23 +00006751 // Turn the index into an offset from the start of the input vector.
6752 Idx -= Input * NumLaneElems;
6753
6754 // Find or create a shuffle vector operand to hold this input.
6755 unsigned OpNo;
6756 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6757 if (InputUsed[OpNo] == Input)
6758 // This input vector is already an operand.
6759 break;
6760 if (InputUsed[OpNo] < 0) {
6761 // Create a new operand for this input vector.
6762 InputUsed[OpNo] = Input;
6763 break;
6764 }
6765 }
6766
6767 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006768 // More than two input vectors used! Give up on trying to create a
6769 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6770 UseBuildVector = true;
6771 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006772 }
6773
6774 // Add the mask index for the new shuffle vector.
6775 Mask.push_back(Idx + OpNo * NumLaneElems);
6776 }
6777
Craig Topper8ae97ba2012-05-21 06:40:16 +00006778 if (UseBuildVector) {
6779 SmallVector<SDValue, 16> SVOps;
6780 for (unsigned i = 0; i != NumLaneElems; ++i) {
6781 // The mask element. This indexes into the input.
6782 int Idx = SVOp->getMaskElt(i+LaneStart);
6783 if (Idx < 0) {
6784 SVOps.push_back(DAG.getUNDEF(EltVT));
6785 continue;
6786 }
6787
6788 // The input vector this mask element indexes into.
6789 int Input = Idx / NumElems;
6790
6791 // Turn the index into an offset from the start of the input vector.
6792 Idx -= Input * NumElems;
6793
6794 // Extract the vector element by hand.
6795 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6796 SVOp->getOperand(Input),
6797 DAG.getIntPtrConstant(Idx)));
6798 }
6799
6800 // Construct the output using a BUILD_VECTOR.
6801 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6802 SVOps.size());
6803 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006804 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006805 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006806 } else {
6807 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006808 (InputUsed[0] % 2) * NumLaneElems,
6809 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006810 // If only one input was used, use an undefined vector for the other.
6811 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6812 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006813 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006814 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006815 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006816 }
6817
6818 Mask.clear();
6819 }
Craig Topper8f35c132012-01-20 09:29:03 +00006820
6821 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006822 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006823}
6824
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006825/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6826/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006827static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006828LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006829 SDValue V1 = SVOp->getOperand(0);
6830 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006831 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006832 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006833
Craig Topper7a9a28b2012-08-12 02:23:29 +00006834 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006835
Benjamin Kramer9c683542012-01-30 15:16:21 +00006836 std::pair<int, int> Locs[4];
6837 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006838 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006839
Evan Chengace3c172008-07-22 21:13:36 +00006840 unsigned NumHi = 0;
6841 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006842 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006843 int Idx = PermMask[i];
6844 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006845 Locs[i] = std::make_pair(-1, -1);
6846 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006847 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6848 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006849 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006850 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006851 NumLo++;
6852 } else {
6853 Locs[i] = std::make_pair(1, NumHi);
6854 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006855 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006856 NumHi++;
6857 }
6858 }
6859 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006860
Evan Chengace3c172008-07-22 21:13:36 +00006861 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006862 // If no more than two elements come from either vector. This can be
6863 // implemented with two shuffles. First shuffle gather the elements.
6864 // The second shuffle, which takes the first shuffle as both of its
6865 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006866 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006867
Benjamin Kramer9c683542012-01-30 15:16:21 +00006868 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006869
Benjamin Kramer9c683542012-01-30 15:16:21 +00006870 for (unsigned i = 0; i != 4; ++i)
6871 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006872 unsigned Idx = (i < 2) ? 0 : 4;
6873 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006874 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006875 }
Evan Chengace3c172008-07-22 21:13:36 +00006876
Nate Begeman9008ca62009-04-27 18:41:29 +00006877 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006878 }
6879
6880 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006881 // Otherwise, we must have three elements from one vector, call it X, and
6882 // one element from the other, call it Y. First, use a shufps to build an
6883 // intermediate vector with the one element from Y and the element from X
6884 // that will be in the same half in the final destination (the indexes don't
6885 // matter). Then, use a shufps to build the final vector, taking the half
6886 // containing the element from Y from the intermediate, and the other half
6887 // from X.
6888 if (NumHi == 3) {
6889 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006890 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006891 std::swap(V1, V2);
6892 }
6893
6894 // Find the element from V2.
6895 unsigned HiIndex;
6896 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006897 int Val = PermMask[HiIndex];
6898 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006899 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006900 if (Val >= 4)
6901 break;
6902 }
6903
Nate Begeman9008ca62009-04-27 18:41:29 +00006904 Mask1[0] = PermMask[HiIndex];
6905 Mask1[1] = -1;
6906 Mask1[2] = PermMask[HiIndex^1];
6907 Mask1[3] = -1;
6908 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006909
6910 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006911 Mask1[0] = PermMask[0];
6912 Mask1[1] = PermMask[1];
6913 Mask1[2] = HiIndex & 1 ? 6 : 4;
6914 Mask1[3] = HiIndex & 1 ? 4 : 6;
6915 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006916 }
Craig Topper69947b92012-04-23 06:57:04 +00006917
6918 Mask1[0] = HiIndex & 1 ? 2 : 0;
6919 Mask1[1] = HiIndex & 1 ? 0 : 2;
6920 Mask1[2] = PermMask[2];
6921 Mask1[3] = PermMask[3];
6922 if (Mask1[2] >= 0)
6923 Mask1[2] += 4;
6924 if (Mask1[3] >= 0)
6925 Mask1[3] += 4;
6926 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006927 }
6928
6929 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006930 int LoMask[] = { -1, -1, -1, -1 };
6931 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006932
Benjamin Kramer9c683542012-01-30 15:16:21 +00006933 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006934 unsigned MaskIdx = 0;
6935 unsigned LoIdx = 0;
6936 unsigned HiIdx = 2;
6937 for (unsigned i = 0; i != 4; ++i) {
6938 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006939 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006940 MaskIdx = 1;
6941 LoIdx = 0;
6942 HiIdx = 2;
6943 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006944 int Idx = PermMask[i];
6945 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006946 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006947 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006948 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006949 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006950 LoIdx++;
6951 } else {
6952 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006953 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006954 HiIdx++;
6955 }
6956 }
6957
Nate Begeman9008ca62009-04-27 18:41:29 +00006958 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6959 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006960 int MaskOps[] = { -1, -1, -1, -1 };
6961 for (unsigned i = 0; i != 4; ++i)
6962 if (Locs[i].first != -1)
6963 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006964 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006965}
6966
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006967static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006968 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006969 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006970
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006971 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6972 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006973 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6974 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6975 // BUILD_VECTOR (load), undef
6976 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006977
6978 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006979}
6980
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006981static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006982SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006983 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00006984
6985 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006986 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6987 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006988 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6989 V1, DAG));
6990}
6991
6992static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006993SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006994 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006995 SDValue V1 = Op.getOperand(0);
6996 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00006997 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006998
6999 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7000
Craig Topper1accb7e2012-01-10 06:54:16 +00007001 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007002 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7003
Evan Cheng0899f5c2011-08-31 02:05:24 +00007004 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7005 return DAG.getNode(ISD::BITCAST, dl, VT,
7006 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7007 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7008 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007009}
7010
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007011static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007012SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007013 SDValue V1 = Op.getOperand(0);
7014 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007015 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007016
7017 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7018 "unsupported shuffle type");
7019
7020 if (V2.getOpcode() == ISD::UNDEF)
7021 V2 = V1;
7022
7023 // v4i32 or v4f32
7024 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7025}
7026
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007027static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007028SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007029 SDValue V1 = Op.getOperand(0);
7030 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007031 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007032 unsigned NumElems = VT.getVectorNumElements();
7033
7034 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7035 // operand of these instructions is only memory, so check if there's a
7036 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7037 // same masks.
7038 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007039
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007040 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007041 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007042 CanFoldLoad = true;
7043
7044 // When V1 is a load, it can be folded later into a store in isel, example:
7045 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7046 // turns into:
7047 // (MOVLPSmr addr:$src1, VR128:$src2)
7048 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007049 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007050 CanFoldLoad = true;
7051
Dan Gohman65fd6562011-11-03 21:49:52 +00007052 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007053 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007054 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007055 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7056
7057 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007058 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007059 if (SVOp->getMaskElt(1) != -1)
7060 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007061 }
7062
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007063 // movl and movlp will both match v2i64, but v2i64 is never matched by
7064 // movl earlier because we make it strict to avoid messing with the movlp load
7065 // folding logic (see the code above getMOVLP call). Match it here then,
7066 // this is horrible, but will stay like this until we move all shuffle
7067 // matching to x86 specific nodes. Note that for the 1st condition all
7068 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007069 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007070 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7071 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007072 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007073 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007074 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007075 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007076
7077 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7078
7079 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007080 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007081 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007082}
7083
Michael Liaod9d09602012-10-23 17:34:00 +00007084// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007085static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7086 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007087 // PMOVZX is only available from SSE41.
7088 if (!Subtarget->hasSSE41())
7089 return SDValue();
7090
Craig Topper8d725b92013-08-15 05:33:45 +00007091 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007092
7093 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007094 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007095 return SDValue();
7096
7097 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007098 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007099 SDValue V1 = Op.getOperand(0);
7100 SDValue V2 = Op.getOperand(1);
7101 unsigned NumElems = VT.getVectorNumElements();
7102
7103 // Extending is an unary operation and the element type of the source vector
7104 // won't be equal to or larger than i64.
7105 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7106 VT.getVectorElementType() == MVT::i64)
7107 return SDValue();
7108
7109 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7110 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007111 while ((1U << Shift) < NumElems) {
7112 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007113 break;
7114 Shift += 1;
7115 // The maximal ratio is 8, i.e. from i8 to i64.
7116 if (Shift > 3)
7117 return SDValue();
7118 }
7119
7120 // Check the shuffle mask.
7121 unsigned Mask = (1U << Shift) - 1;
7122 for (unsigned i = 0; i != NumElems; ++i) {
7123 int EltIdx = SVOp->getMaskElt(i);
7124 if ((i & Mask) != 0 && EltIdx != -1)
7125 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007126 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007127 return SDValue();
7128 }
7129
7130 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007131 MVT NeVT = MVT::getIntegerVT(NBits);
7132 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007133
Craig Topper158ec072013-08-14 07:34:43 +00007134 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007135 return SDValue();
7136
7137 // Simplify the operand as it's prepared to be fed into shuffle.
7138 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7139 if (V1.getOpcode() == ISD::BITCAST &&
7140 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7141 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007142 V1.getOperand(0).getOperand(0)
7143 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007144 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7145 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007146 ConstantSDNode *CIdx =
7147 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007148 // If it's foldable, i.e. normal load with single use, we will let code
7149 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007150 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007151 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007152 MVT FullVT = V.getSimpleValueType();
7153 MVT V1VT = V1.getSimpleValueType();
7154 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007155 // The "ext_vec_elt" node is wider than the result node.
7156 // In this case we should extract subvector from V.
7157 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007158 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7159 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007160 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007161 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007162 DAG.getIntPtrConstant(0));
7163 }
Craig Topper8d725b92013-08-15 05:33:45 +00007164 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007165 }
Michael Liaod9d09602012-10-23 17:34:00 +00007166 }
7167
7168 return DAG.getNode(ISD::BITCAST, DL, VT,
7169 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7170}
7171
Craig Topper158ec072013-08-14 07:34:43 +00007172static SDValue
7173NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7174 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007175 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007176 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007177 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007178 SDValue V1 = Op.getOperand(0);
7179 SDValue V2 = Op.getOperand(1);
7180
7181 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007182 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007183
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007184 // Handle splat operations
7185 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007186 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007187 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007188 if (Broadcast.getNode())
7189 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007190 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007191
Michael Liaod9d09602012-10-23 17:34:00 +00007192 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007193 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007194 if (NewOp.getNode())
7195 return NewOp;
7196
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007197 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7198 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007199 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7200 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007201 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007202 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007203 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007204 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007205 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007206 // FIXME: Figure out a cleaner way to do this.
7207 // Try to make use of movq to zero out the top part.
7208 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007209 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007210 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007211 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007212 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7213 NewVT, true, false))
7214 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007215 DAG, Subtarget, dl);
7216 }
7217 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007218 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007219 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007220 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007221 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7222 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7223 DAG, Subtarget, dl);
7224 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007225 }
7226 }
7227 return SDValue();
7228}
7229
Dan Gohman475871a2008-07-27 21:46:04 +00007230SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007231X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007232 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007233 SDValue V1 = Op.getOperand(0);
7234 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007235 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007236 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007237 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007238 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007239 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007240 bool V1IsSplat = false;
7241 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007242 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007243 bool HasFp256 = Subtarget->hasFp256();
7244 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007245 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007246 bool OptForSize = MF.getFunction()->getAttributes().
7247 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007248
Craig Topper3426a3e2011-11-14 06:46:21 +00007249 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007250
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007251 if (V1IsUndef && V2IsUndef)
7252 return DAG.getUNDEF(VT);
7253
7254 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007255
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007256 // Vector shuffle lowering takes 3 steps:
7257 //
7258 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7259 // narrowing and commutation of operands should be handled.
7260 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7261 // shuffle nodes.
7262 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7263 // so the shuffle can be broken into other shuffles and the legalizer can
7264 // try the lowering again.
7265 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007266 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007267 // be matched during isel, all of them must be converted to a target specific
7268 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007269
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007270 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7271 // narrowing and commutation of operands should be handled. The actual code
7272 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007273 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007274 if (NewOp.getNode())
7275 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007276
Craig Topper5aaffa82012-02-19 02:53:47 +00007277 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7278
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007279 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7280 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007281 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007282 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007283 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007284 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007285
Craig Topperdd637ae2012-02-19 05:41:45 +00007286 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007287 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007288 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007289
Craig Topperdd637ae2012-02-19 05:41:45 +00007290 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007291 return getMOVHighToLow(Op, dl, DAG);
7292
7293 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007294 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007295 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007296 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007297
Craig Topper5aaffa82012-02-19 02:53:47 +00007298 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007299 // The actual implementation will match the mask in the if above and then
7300 // during isel it can match several different instructions, not only pshufd
7301 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007302 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7303 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007304
Craig Topper5aaffa82012-02-19 02:53:47 +00007305 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007306
Craig Topper1accb7e2012-01-10 06:54:16 +00007307 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007308 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7309
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007310 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7311 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7312 DAG);
7313
Craig Topperb3982da2011-12-31 23:50:21 +00007314 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007315 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007316 }
Eric Christopherfd179292009-08-27 18:07:15 +00007317
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007318 if (isPALIGNRMask(M, VT, Subtarget))
7319 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7320 getShufflePALIGNRImmediate(SVOp),
7321 DAG);
7322
Evan Chengf26ffe92008-05-29 08:22:04 +00007323 // Check if this can be converted into a logical shift.
7324 bool isLeft = false;
7325 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007326 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007327 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007328 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007329 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007330 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007331 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007332 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007333 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007334 }
Eric Christopherfd179292009-08-27 18:07:15 +00007335
Craig Topper5aaffa82012-02-19 02:53:47 +00007336 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007337 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007338 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007339 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007340 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007341 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7342
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007343 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007344 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7345 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007346 }
Eric Christopherfd179292009-08-27 18:07:15 +00007347
Nate Begeman9008ca62009-04-27 18:41:29 +00007348 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007349 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007350 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007351
Craig Topperdd637ae2012-02-19 05:41:45 +00007352 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007353 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007354
Craig Topperdd637ae2012-02-19 05:41:45 +00007355 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007356 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007357
Craig Topperdd637ae2012-02-19 05:41:45 +00007358 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007359 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007360
Craig Topperdd637ae2012-02-19 05:41:45 +00007361 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007362 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007363
Craig Topperdd637ae2012-02-19 05:41:45 +00007364 if (ShouldXformToMOVHLPS(M, VT) ||
7365 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007366 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007367
Evan Chengf26ffe92008-05-29 08:22:04 +00007368 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007369 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007370 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007371 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007372 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007373 }
Eric Christopherfd179292009-08-27 18:07:15 +00007374
Evan Cheng9eca5e82006-10-25 21:49:50 +00007375 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007376 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7377 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007378 V1IsSplat = isSplatVector(V1.getNode());
7379 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007380
Chris Lattner8a594482007-11-25 00:24:49 +00007381 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007382 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7383 CommuteVectorShuffleMask(M, NumElems);
7384 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007385 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007386 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007387 }
7388
Craig Topperbeabc6c2011-12-05 06:56:46 +00007389 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007390 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007391 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007392 return V1;
7393 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7394 // the instruction selector will not match, so get a canonical MOVL with
7395 // swapped operands to undo the commute.
7396 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007397 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007398
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007399 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007400 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007401
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007402 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007403 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007404
Evan Cheng9bbbb982006-10-25 20:48:19 +00007405 if (V2IsSplat) {
7406 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007407 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007408 // new vector_shuffle with the corrected mask.p
7409 SmallVector<int, 8> NewMask(M.begin(), M.end());
7410 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007411 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007412 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007413 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007414 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007415 }
7416
Evan Cheng9eca5e82006-10-25 21:49:50 +00007417 if (Commuted) {
7418 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007419 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007420 CommuteVectorShuffleMask(M, NumElems);
7421 std::swap(V1, V2);
7422 std::swap(V1IsSplat, V2IsSplat);
7423 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007424
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007425 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007426 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007427
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007428 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007429 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007430 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007431
Nate Begeman9008ca62009-04-27 18:41:29 +00007432 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007433 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007434 return CommuteVectorShuffle(SVOp, DAG);
7435
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007436 // The checks below are all present in isShuffleMaskLegal, but they are
7437 // inlined here right now to enable us to directly emit target specific
7438 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007439
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007440 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7441 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007442 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007443 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007444 }
7445
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007446 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007447 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007448 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007449 DAG);
7450
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007451 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007452 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007453 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007454 DAG);
7455
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007456 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007457 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007458 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007459
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007460 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007461 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007462 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007463 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007464
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007465 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007466 // Generate target specific nodes for 128 or 256-bit shuffles only
7467 // supported in the AVX instruction set.
7468 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007469
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007470 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007471 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007472 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7473
Craig Topper70b883b2011-11-28 10:14:51 +00007474 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007475 if (isVPERMILPMask(M, VT)) {
7476 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007477 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007478 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007479 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007480 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007481 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007482
Craig Topper70b883b2011-11-28 10:14:51 +00007483 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007484 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007485 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007486 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007487
Craig Topper1842ba02012-04-23 06:38:28 +00007488 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007489 if (BlendOp.getNode())
7490 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007491
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007492 unsigned Imm8;
7493 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7494 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007495
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007496 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7497 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007498 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7499 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007500 SmallVector<SDValue, 16> permclMask;
7501 for (unsigned i = 0; i != NumElems; ++i) {
7502 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7503 }
7504
7505 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7506 &permclMask[0], NumElems);
7507 if (V2IsUndef)
7508 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7509 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7510 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7511 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7512 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7513 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007514
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007515 //===--------------------------------------------------------------------===//
7516 // Since no target specific shuffle was selected for this generic one,
7517 // lower it into other known shuffles. FIXME: this isn't true yet, but
7518 // this is the plan.
7519 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007520
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007521 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7522 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007523 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007524 if (NewOp.getNode())
7525 return NewOp;
7526 }
7527
7528 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007529 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007530 if (NewOp.getNode())
7531 return NewOp;
7532 }
7533
Elena Demikhovsky41789462012-09-06 12:42:01 +00007534 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007535 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007536 if (NewOp.getNode())
7537 return NewOp;
7538 }
7539
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007540 // Handle all 128-bit wide vectors with 4 elements, and match them with
7541 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007542 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007543 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7544
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007545 // Handle general 256-bit shuffles
7546 if (VT.is256BitVector())
7547 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7548
Dan Gohman475871a2008-07-27 21:46:04 +00007549 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007550}
7551
Craig Topperf84b7502013-01-20 00:50:58 +00007552static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007553 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007554 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007555
Craig Topper5a0910b2013-08-15 02:33:50 +00007556 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007557 return SDValue();
7558
Duncan Sands83ec4b62008-06-06 12:08:01 +00007559 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007560 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007561 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007562 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007563 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007564 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007565 }
7566
7567 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007568 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7569 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7570 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007571 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7572 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007573 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007574 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007575 Op.getOperand(0)),
7576 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007577 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007578 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007579 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007580 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007581 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007582 }
7583
7584 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007585 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7586 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007587 // result has a single use which is a store or a bitcast to i32. And in
7588 // the case of a store, it's not worth it if the index is a constant 0,
7589 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007590 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007591 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007592 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007593 if ((User->getOpcode() != ISD::STORE ||
7594 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7595 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007596 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007597 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007598 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007599 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007600 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007601 Op.getOperand(0)),
7602 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007603 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007604 }
7605
7606 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007607 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007608 if (isa<ConstantSDNode>(Op.getOperand(1)))
7609 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007610 }
Dan Gohman475871a2008-07-27 21:46:04 +00007611 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007612}
7613
Dan Gohman475871a2008-07-27 21:46:04 +00007614SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007615X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7616 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007617 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007618 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007619 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007620 SDValue Idx = Op.getOperand(1);
7621 if (!isa<ConstantSDNode>(Idx)) {
7622 if (VecVT.is512BitVector() ||
7623 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7624 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7625
7626 MVT MaskEltVT =
7627 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7628 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7629 MaskEltVT.getSizeInBits());
7630
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007631 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007632 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7633 getZeroVector(MaskVT, Subtarget, DAG, dl),
7634 Idx, DAG.getConstant(0, getPointerTy()));
7635 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7636 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7637 Perm, DAG.getConstant(0, getPointerTy()));
7638 }
7639 return SDValue();
7640 }
David Greene74a579d2011-02-10 16:57:36 +00007641
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007642 // If this is a 256-bit vector result, first extract the 128-bit vector and
7643 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007644 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007645
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007646 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007647 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007648 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007649 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007650
Elena Demikhovsky83952512013-07-31 11:35:14 +00007651 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7652
7653 //if (IdxVal >= NumElems/2)
7654 // IdxVal -= NumElems/2;
7655 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007656 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007657 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007658 }
7659
Craig Topper7a9a28b2012-08-12 02:23:29 +00007660 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007661
Craig Topperd0a31172012-01-10 06:37:29 +00007662 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007663 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007664 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007665 return Res;
7666 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007667
Craig Topper5a0910b2013-08-15 02:33:50 +00007668 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007669 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007670 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007671 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007672 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007673 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007674 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7675 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007676 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007677 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007678 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007679 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007680 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007681 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007682 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007683 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007684 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007685 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007686 }
7687
7688 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007689 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007690 if (Idx == 0)
7691 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007692
Evan Cheng0db9fe62006-04-25 20:13:52 +00007693 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007694 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007695 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007696 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007697 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007698 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007699 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007700 }
7701
7702 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007703 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7704 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7705 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007706 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007707 if (Idx == 0)
7708 return Op;
7709
7710 // UNPCKHPD the element to the lowest double word, then movsd.
7711 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7712 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007713 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007714 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007715 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007716 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007717 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007718 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719 }
7720
Dan Gohman475871a2008-07-27 21:46:04 +00007721 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007722}
7723
Craig Topperf84b7502013-01-20 00:50:58 +00007724static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007725 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007726 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007727 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007728
Dan Gohman475871a2008-07-27 21:46:04 +00007729 SDValue N0 = Op.getOperand(0);
7730 SDValue N1 = Op.getOperand(1);
7731 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007732
Craig Topper7a9a28b2012-08-12 02:23:29 +00007733 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007734 return SDValue();
7735
Dan Gohman8a55ce42009-09-23 21:02:20 +00007736 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007737 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007738 unsigned Opc;
7739 if (VT == MVT::v8i16)
7740 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007741 else if (VT == MVT::v16i8)
7742 Opc = X86ISD::PINSRB;
7743 else
7744 Opc = X86ISD::PINSRB;
7745
Nate Begeman14d12ca2008-02-11 04:19:36 +00007746 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7747 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007748 if (N1.getValueType() != MVT::i32)
7749 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7750 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007751 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007752 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007753 }
7754
7755 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007756 // Bits [7:6] of the constant are the source select. This will always be
7757 // zero here. The DAG Combiner may combine an extract_elt index into these
7758 // bits. For example (insert (extract, 3), 2) could be matched by putting
7759 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007760 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007761 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007762 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007763 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007764 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007765 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007766 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007767 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007768 }
7769
7770 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007771 // PINSR* works with constant index.
7772 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007773 }
Dan Gohman475871a2008-07-27 21:46:04 +00007774 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007775}
7776
Dan Gohman475871a2008-07-27 21:46:04 +00007777SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007778X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007779 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007780 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007781
Andrew Trickac6d9be2013-05-25 02:42:55 +00007782 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007783 SDValue N0 = Op.getOperand(0);
7784 SDValue N1 = Op.getOperand(1);
7785 SDValue N2 = Op.getOperand(2);
7786
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007787 // If this is a 256-bit vector result, first extract the 128-bit vector,
7788 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007789 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007790 if (!isa<ConstantSDNode>(N2))
7791 return SDValue();
7792
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007793 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007794 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007795 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007796
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007797 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007798 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7799 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7800
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007801 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007802 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007803
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007804 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007805 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007806 }
7807
Craig Topperd0a31172012-01-10 06:37:29 +00007808 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007809 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7810
Dan Gohman8a55ce42009-09-23 21:02:20 +00007811 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007812 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007813
Dan Gohman8a55ce42009-09-23 21:02:20 +00007814 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007815 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7816 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007817 if (N1.getValueType() != MVT::i32)
7818 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7819 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007820 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007821 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007822 }
Dan Gohman475871a2008-07-27 21:46:04 +00007823 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007824}
7825
Craig Topper55b24052012-09-11 06:15:32 +00007826static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007827 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007828 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007829
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007830 // If this is a 256-bit vector result, first insert into a 128-bit
7831 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007832 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007833 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007834 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007835 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007836 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007837
7838 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7839
7840 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007841 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007842 }
7843
Craig Topperd77d2fe2012-04-29 20:22:05 +00007844 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007845 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007846 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007847
Owen Anderson825b72b2009-08-11 20:47:22 +00007848 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007849 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007850 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007851 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007852}
7853
David Greene91585092011-01-26 15:38:49 +00007854// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7855// a simple subregister reference or explicit instructions to grab
7856// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007857static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7858 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007859 SDLoc dl(Op);
7860 SDValue In = Op.getOperand(0);
7861 SDValue Idx = Op.getOperand(1);
7862 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007863 MVT ResVT = Op.getSimpleValueType();
7864 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007865
Elena Demikhovsky83952512013-07-31 11:35:14 +00007866 if (Subtarget->hasFp256()) {
7867 if (ResVT.is128BitVector() &&
7868 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007869 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007870 return Extract128BitVector(In, IdxVal, DAG, dl);
7871 }
7872 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7873 isa<ConstantSDNode>(Idx)) {
7874 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007875 }
David Greene91585092011-01-26 15:38:49 +00007876 }
7877 return SDValue();
7878}
7879
David Greenecfe33c42011-01-26 19:13:22 +00007880// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7881// simple superregister reference or explicit instructions to insert
7882// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007883static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7884 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007885 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007886 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007887 SDValue Vec = Op.getNode()->getOperand(0);
7888 SDValue SubVec = Op.getNode()->getOperand(1);
7889 SDValue Idx = Op.getNode()->getOperand(2);
7890
Craig Topper8d725b92013-08-15 05:33:45 +00007891 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7892 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7893 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007894 isa<ConstantSDNode>(Idx)) {
7895 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7896 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007897 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007898
Craig Topper8d725b92013-08-15 05:33:45 +00007899 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7900 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007901 isa<ConstantSDNode>(Idx)) {
7902 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7903 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7904 }
David Greenecfe33c42011-01-26 19:13:22 +00007905 }
7906 return SDValue();
7907}
7908
Bill Wendling056292f2008-09-16 21:48:12 +00007909// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7910// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7911// one of the above mentioned nodes. It has to be wrapped because otherwise
7912// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7913// be used to form addressing mode. These wrapped nodes will be selected
7914// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007915SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007916X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007917 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007918
Chris Lattner41621a22009-06-26 19:22:52 +00007919 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7920 // global base reg.
7921 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007922 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007923 CodeModel::Model M = getTargetMachine().getCodeModel();
7924
Chris Lattner4f066492009-07-11 20:29:19 +00007925 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007926 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007927 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007928 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007929 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007930 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007931 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007932
Evan Cheng1606e8e2009-03-13 07:51:59 +00007933 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007934 CP->getAlignment(),
7935 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007936 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007937 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007938 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007939 if (OpFlag) {
7940 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007941 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007942 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007943 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007944 }
7945
7946 return Result;
7947}
7948
Dan Gohmand858e902010-04-17 15:26:15 +00007949SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007950 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007951
Chris Lattner18c59872009-06-27 04:16:01 +00007952 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7953 // global base reg.
7954 unsigned char OpFlag = 0;
7955 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007956 CodeModel::Model M = getTargetMachine().getCodeModel();
7957
Chris Lattner4f066492009-07-11 20:29:19 +00007958 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007959 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007960 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007961 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007962 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007963 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007964 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007965
Chris Lattner18c59872009-06-27 04:16:01 +00007966 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7967 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007968 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007969 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007970
Chris Lattner18c59872009-06-27 04:16:01 +00007971 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007972 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007973 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7974 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007975 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007976 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007977
Chris Lattner18c59872009-06-27 04:16:01 +00007978 return Result;
7979}
7980
7981SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007982X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007983 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007984
Chris Lattner18c59872009-06-27 04:16:01 +00007985 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7986 // global base reg.
7987 unsigned char OpFlag = 0;
7988 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007989 CodeModel::Model M = getTargetMachine().getCodeModel();
7990
Chris Lattner4f066492009-07-11 20:29:19 +00007991 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007992 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7993 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7994 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007995 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007996 } else if (Subtarget->isPICStyleGOT()) {
7997 OpFlag = X86II::MO_GOT;
7998 } else if (Subtarget->isPICStyleStubPIC()) {
7999 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8000 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8001 OpFlag = X86II::MO_DARWIN_NONLAZY;
8002 }
Eric Christopherfd179292009-08-27 18:07:15 +00008003
Chris Lattner18c59872009-06-27 04:16:01 +00008004 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008005
Andrew Trickac6d9be2013-05-25 02:42:55 +00008006 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008007 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008008
Chris Lattner18c59872009-06-27 04:16:01 +00008009 // With PIC, the address is actually $g + Offset.
8010 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008011 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008012 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8013 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008014 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008015 Result);
8016 }
Eric Christopherfd179292009-08-27 18:07:15 +00008017
Eli Friedman586272d2011-08-11 01:48:05 +00008018 // For symbols that require a load from a stub to get the address, emit the
8019 // load.
8020 if (isGlobalStubReference(OpFlag))
8021 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008022 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008023
Chris Lattner18c59872009-06-27 04:16:01 +00008024 return Result;
8025}
8026
Dan Gohman475871a2008-07-27 21:46:04 +00008027SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008028X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008029 // Create the TargetBlockAddressAddress node.
8030 unsigned char OpFlags =
8031 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008032 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008033 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008034 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008035 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008036 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8037 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008038
Dan Gohmanf705adb2009-10-30 01:28:02 +00008039 if (Subtarget->isPICStyleRIPRel() &&
8040 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008041 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8042 else
8043 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008044
Dan Gohman29cbade2009-11-20 23:18:13 +00008045 // With PIC, the address is actually $g + Offset.
8046 if (isGlobalRelativeToPICBase(OpFlags)) {
8047 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8048 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8049 Result);
8050 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008051
8052 return Result;
8053}
8054
8055SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008056X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008057 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008058 // Create the TargetGlobalAddress node, folding in the constant
8059 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008060 unsigned char OpFlags =
8061 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008062 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008063 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008064 if (OpFlags == X86II::MO_NO_FLAG &&
8065 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008066 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008067 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008068 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008069 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008070 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008071 }
Eric Christopherfd179292009-08-27 18:07:15 +00008072
Chris Lattner4f066492009-07-11 20:29:19 +00008073 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008074 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008075 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8076 else
8077 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008078
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008079 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008080 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008081 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8082 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008083 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008084 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008085
Chris Lattner36c25012009-07-10 07:34:39 +00008086 // For globals that require a load from a stub to get the address, emit the
8087 // load.
8088 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008089 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008090 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008091
Dan Gohman6520e202008-10-18 02:06:02 +00008092 // If there was a non-zero offset that we didn't fold, create an explicit
8093 // addition for it.
8094 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008095 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008096 DAG.getConstant(Offset, getPointerTy()));
8097
Evan Cheng0db9fe62006-04-25 20:13:52 +00008098 return Result;
8099}
8100
Evan Chengda43bcf2008-09-24 00:05:32 +00008101SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008102X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008103 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008104 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008105 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008106}
8107
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008108static SDValue
8109GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008110 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008111 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008112 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008113 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008114 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008115 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008116 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008117 GA->getOffset(),
8118 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008119
8120 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8121 : X86ISD::TLSADDR;
8122
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008123 if (InFlag) {
8124 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008125 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008126 } else {
8127 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008128 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008129 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008130
8131 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008132 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008133
Rafael Espindola15f1b662009-04-24 12:59:40 +00008134 SDValue Flag = Chain.getValue(1);
8135 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008136}
8137
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008138// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008139static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008140LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008141 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008142 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008143 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008144 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008145 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008146 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008147 InFlag = Chain.getValue(1);
8148
Chris Lattnerb903bed2009-06-26 21:20:29 +00008149 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008150}
8151
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008152// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008153static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008154LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008155 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008156 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8157 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008158}
8159
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008160static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8161 SelectionDAG &DAG,
8162 const EVT PtrVT,
8163 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008164 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008165
8166 // Get the start address of the TLS block for this module.
8167 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8168 .getInfo<X86MachineFunctionInfo>();
8169 MFI->incNumLocalDynamicTLSAccesses();
8170
8171 SDValue Base;
8172 if (is64Bit) {
8173 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8174 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8175 } else {
8176 SDValue InFlag;
8177 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008178 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008179 InFlag = Chain.getValue(1);
8180 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8181 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8182 }
8183
8184 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8185 // of Base.
8186
8187 // Build x@dtpoff.
8188 unsigned char OperandFlags = X86II::MO_DTPOFF;
8189 unsigned WrapperKind = X86ISD::Wrapper;
8190 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8191 GA->getValueType(0),
8192 GA->getOffset(), OperandFlags);
8193 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8194
8195 // Add x@dtpoff with the base.
8196 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8197}
8198
Hans Wennborg228756c2012-05-11 10:11:01 +00008199// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008200static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008201 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008202 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008203 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008204
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008205 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8206 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8207 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008208
Eric Christopher739eb9d2013-10-14 21:52:23 +00008209 SDValue ThreadPointer =
8210 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8211 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008212
Chris Lattnerb903bed2009-06-26 21:20:29 +00008213 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008214 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8215 // initialexec.
8216 unsigned WrapperKind = X86ISD::Wrapper;
8217 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008218 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008219 } else if (model == TLSModel::InitialExec) {
8220 if (is64Bit) {
8221 OperandFlags = X86II::MO_GOTTPOFF;
8222 WrapperKind = X86ISD::WrapperRIP;
8223 } else {
8224 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8225 }
Chris Lattner18c59872009-06-27 04:16:01 +00008226 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008227 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008228 }
Eric Christopherfd179292009-08-27 18:07:15 +00008229
Hans Wennborg228756c2012-05-11 10:11:01 +00008230 // emit "addl x@ntpoff,%eax" (local exec)
8231 // or "addl x@indntpoff,%eax" (initial exec)
8232 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008233 SDValue TGA =
8234 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8235 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008236 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008237
Hans Wennborg228756c2012-05-11 10:11:01 +00008238 if (model == TLSModel::InitialExec) {
8239 if (isPIC && !is64Bit) {
8240 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008241 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008242 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008243 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008244
8245 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008246 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008247 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008248
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008249 // The address of the thread local variable is the add of the thread
8250 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008251 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008252}
8253
Dan Gohman475871a2008-07-27 21:46:04 +00008254SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008255X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008256
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008257 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008258 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008259
Eric Christopher30ef0e52010-06-03 04:07:48 +00008260 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008261 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008262
Eric Christopher30ef0e52010-06-03 04:07:48 +00008263 switch (model) {
8264 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008265 if (Subtarget->is64Bit())
8266 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8267 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008268 case TLSModel::LocalDynamic:
8269 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8270 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008271 case TLSModel::InitialExec:
8272 case TLSModel::LocalExec:
8273 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008274 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008275 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008276 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008277 llvm_unreachable("Unknown TLS model.");
8278 }
8279
8280 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008281 // Darwin only has one model of TLS. Lower to that.
8282 unsigned char OpFlag = 0;
8283 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8284 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008285
Eric Christopher30ef0e52010-06-03 04:07:48 +00008286 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8287 // global base reg.
8288 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8289 !Subtarget->is64Bit();
8290 if (PIC32)
8291 OpFlag = X86II::MO_TLVP_PIC_BASE;
8292 else
8293 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008294 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008295 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008296 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008297 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008298 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008299
Eric Christopher30ef0e52010-06-03 04:07:48 +00008300 // With PIC32, the address is actually $g + Offset.
8301 if (PIC32)
8302 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8303 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008304 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008305 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008306
Eric Christopher30ef0e52010-06-03 04:07:48 +00008307 // Lowering the machine isd will make sure everything is in the right
8308 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008309 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008310 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008311 SDValue Args[] = { Chain, Offset };
8312 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008313
Eric Christopher30ef0e52010-06-03 04:07:48 +00008314 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8315 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8316 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008317
Eric Christopher30ef0e52010-06-03 04:07:48 +00008318 // And our return value (tls address) is in the standard call return value
8319 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008320 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008321 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8322 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008323 }
8324
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008325 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008326 // Just use the implicit TLS architecture
8327 // Need to generate someting similar to:
8328 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8329 // ; from TEB
8330 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8331 // mov rcx, qword [rdx+rcx*8]
8332 // mov eax, .tls$:tlsvar
8333 // [rax+rcx] contains the address
8334 // Windows 64bit: gs:0x58
8335 // Windows 32bit: fs:__tls_array
8336
8337 // If GV is an alias then use the aliasee for determining
8338 // thread-localness.
8339 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8340 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008341 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008342 SDValue Chain = DAG.getEntryNode();
8343
8344 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008345 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8346 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008347 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8348 ? Type::getInt8PtrTy(*DAG.getContext(),
8349 256)
8350 : Type::getInt32PtrTy(*DAG.getContext(),
8351 257));
8352
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008353 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8354 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8355 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8356
8357 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008358 MachinePointerInfo(Ptr),
8359 false, false, false, 0);
8360
8361 // Load the _tls_index variable
8362 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8363 if (Subtarget->is64Bit())
8364 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8365 IDX, MachinePointerInfo(), MVT::i32,
8366 false, false, 0);
8367 else
8368 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8369 false, false, false, 0);
8370
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008371 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008372 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008373 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8374
8375 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8376 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8377 false, false, false, 0);
8378
8379 // Get the offset of start of .tls section
8380 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8381 GA->getValueType(0),
8382 GA->getOffset(), X86II::MO_SECREL);
8383 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8384
8385 // The address of the thread local variable is the add of the thread
8386 // pointer with the offset of the variable.
8387 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008388 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008389
David Blaikie4d6ccb52012-01-20 21:51:11 +00008390 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008391}
8392
Chad Rosierb90d2a92012-01-03 23:19:12 +00008393/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8394/// and take a 2 x i32 value to shift plus a shift amount.
8395SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008396 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008397 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008398 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008399 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008400 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008401 SDValue ShOpLo = Op.getOperand(0);
8402 SDValue ShOpHi = Op.getOperand(1);
8403 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008404 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008405 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008406 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008407
Dan Gohman475871a2008-07-27 21:46:04 +00008408 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008409 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008410 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8411 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008412 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008413 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8414 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008415 }
Evan Chenge3413162006-01-09 18:33:28 +00008416
Owen Anderson825b72b2009-08-11 20:47:22 +00008417 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8418 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008419 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008420 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008421
Dan Gohman475871a2008-07-27 21:46:04 +00008422 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008423 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008424 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8425 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008426
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008427 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008428 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8429 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008430 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008431 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8432 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008433 }
8434
Dan Gohman475871a2008-07-27 21:46:04 +00008435 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008436 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008437}
Evan Chenga3195e82006-01-12 22:54:21 +00008438
Dan Gohmand858e902010-04-17 15:26:15 +00008439SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8440 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008441 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008442
Dale Johannesen0488fb62010-09-30 23:57:10 +00008443 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008444 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008445
Owen Anderson825b72b2009-08-11 20:47:22 +00008446 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008447 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Eli Friedman36df4992009-05-27 00:47:34 +00008449 // These are really Legal; return the operand so the caller accepts it as
8450 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008451 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008452 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008453 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008454 Subtarget->is64Bit()) {
8455 return Op;
8456 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008457
Andrew Trickac6d9be2013-05-25 02:42:55 +00008458 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008459 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008460 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008461 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008462 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008463 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008464 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008465 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008466 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008467 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8468}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008469
Owen Andersone50ed302009-08-10 22:56:29 +00008470SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008471 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008472 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008473 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008474 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008475 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008476 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008477 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008478 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008479 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008480 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008481
Chris Lattner492a43e2010-09-22 01:28:21 +00008482 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008483
Stuart Hastings84be9582011-06-02 15:57:11 +00008484 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8485 MachineMemOperand *MMO;
8486 if (FI) {
8487 int SSFI = FI->getIndex();
8488 MMO =
8489 DAG.getMachineFunction()
8490 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8491 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8492 } else {
8493 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8494 StackSlot = StackSlot.getOperand(1);
8495 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008496 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008497 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8498 X86ISD::FILD, DL,
8499 Tys, Ops, array_lengthof(Ops),
8500 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008501
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008502 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008503 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008504 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008505
8506 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8507 // shouldn't be necessary except that RFP cannot be live across
8508 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008509 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008510 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8511 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008512 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008513 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008514 SDValue Ops[] = {
8515 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8516 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008517 MachineMemOperand *MMO =
8518 DAG.getMachineFunction()
8519 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008520 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008521
Chris Lattner492a43e2010-09-22 01:28:21 +00008522 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8523 Ops, array_lengthof(Ops),
8524 Op.getValueType(), MMO);
8525 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008526 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008527 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008528 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008529
Evan Cheng0db9fe62006-04-25 20:13:52 +00008530 return Result;
8531}
8532
Bill Wendling8b8a6362009-01-17 03:56:04 +00008533// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008534SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8535 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008536 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008537 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008538 movq %rax, %xmm0
8539 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8540 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8541 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008542 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008543 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008544 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008545 addpd %xmm1, %xmm0
8546 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008547 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008548
Andrew Trickac6d9be2013-05-25 02:42:55 +00008549 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008550 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008551
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008552 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008553 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008554 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008555 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008556
Chris Lattner97484792012-01-25 09:56:22 +00008557 SmallVector<Constant*,2> CV1;
8558 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008559 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8560 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008561 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008562 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8563 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008564 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008565 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008566
Bill Wendling397ae212012-01-05 02:13:20 +00008567 // Load the 64-bit value into an XMM register.
8568 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8569 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008570 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008571 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008572 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008573 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8574 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8575 CLod0);
8576
Owen Anderson825b72b2009-08-11 20:47:22 +00008577 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008578 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008579 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008580 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008581 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008582 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008583
Craig Topperd0a31172012-01-10 06:37:29 +00008584 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008585 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8586 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8587 } else {
8588 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8589 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8590 S2F, 0x4E, DAG);
8591 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8592 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8593 Sub);
8594 }
8595
8596 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008597 DAG.getIntPtrConstant(0));
8598}
8599
Bill Wendling8b8a6362009-01-17 03:56:04 +00008600// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008601SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8602 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008603 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008604 // FP constant to bias correct the final result.
8605 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008606 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008607
8608 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008609 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008610 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008611
Eli Friedmanf3704762011-08-29 21:15:46 +00008612 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008613 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008614
Owen Anderson825b72b2009-08-11 20:47:22 +00008615 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008616 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008617 DAG.getIntPtrConstant(0));
8618
8619 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008620 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008621 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008622 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008623 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008624 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008625 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008626 MVT::v2f64, Bias)));
8627 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008628 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008629 DAG.getIntPtrConstant(0));
8630
8631 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008632 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008633
8634 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008635 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008636
Craig Topper69947b92012-04-23 06:57:04 +00008637 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008638 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008639 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008640 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008641 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008642
8643 // Handle final rounding.
8644 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008645}
8646
Michael Liaoa7554632012-10-23 17:36:08 +00008647SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8648 SelectionDAG &DAG) const {
8649 SDValue N0 = Op.getOperand(0);
8650 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008651 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008652
8653 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8654 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8655 "Custom UINT_TO_FP is not supported!");
8656
Craig Topperb99bafe2013-01-21 06:21:54 +00008657 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8658 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008659 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8660 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8661}
8662
Dan Gohmand858e902010-04-17 15:26:15 +00008663SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8664 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008665 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008666 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008667
Michael Liaoa7554632012-10-23 17:36:08 +00008668 if (Op.getValueType().isVector())
8669 return lowerUINT_TO_FP_vec(Op, DAG);
8670
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008671 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008672 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8673 // the optimization here.
8674 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008675 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008676
Owen Andersone50ed302009-08-10 22:56:29 +00008677 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008678 EVT DstVT = Op.getValueType();
8679 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008680 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008681 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008682 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008683 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008684 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008685
8686 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008687 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008688 if (SrcVT == MVT::i32) {
8689 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8690 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8691 getPointerTy(), StackSlot, WordOff);
8692 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008693 StackSlot, MachinePointerInfo(),
8694 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008695 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008696 OffsetSlot, MachinePointerInfo(),
8697 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008698 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8699 return Fild;
8700 }
8701
8702 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8703 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008704 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008705 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008706 // For i64 source, we need to add the appropriate power of 2 if the input
8707 // was negative. This is the same as the optimization in
8708 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8709 // we must be careful to do the computation in x87 extended precision, not
8710 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008711 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8712 MachineMemOperand *MMO =
8713 DAG.getMachineFunction()
8714 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8715 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008716
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008717 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8718 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008719 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8720 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008721
8722 APInt FF(32, 0x5F800000ULL);
8723
8724 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008725 SDValue SignSet = DAG.getSetCC(dl,
8726 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008727 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8728 ISD::SETLT);
8729
8730 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8731 SDValue FudgePtr = DAG.getConstantPool(
8732 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8733 getPointerTy());
8734
8735 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8736 SDValue Zero = DAG.getIntPtrConstant(0);
8737 SDValue Four = DAG.getIntPtrConstant(4);
8738 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8739 Zero, Four);
8740 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8741
8742 // Load the value out, extending it from f32 to f80.
8743 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008744 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008745 FudgePtr, MachinePointerInfo::getConstantPool(),
8746 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008747 // Extend everything to 80 bits to force it to be done on x87.
8748 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8749 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008750}
8751
Craig Topperb99bafe2013-01-21 06:21:54 +00008752std::pair<SDValue,SDValue>
8753X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8754 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008755 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008756
Owen Andersone50ed302009-08-10 22:56:29 +00008757 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008758
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008759 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008760 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8761 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008762 }
8763
Owen Anderson825b72b2009-08-11 20:47:22 +00008764 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8765 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008766 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008767
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008768 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008769 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008770 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008771 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008772 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008773 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008774 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008775 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008776
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008777 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8778 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008779 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008780 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008781 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008782 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008783
Evan Cheng0db9fe62006-04-25 20:13:52 +00008784 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008785 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8786 Opc = X86ISD::WIN_FTOL;
8787 else
8788 switch (DstTy.getSimpleVT().SimpleTy) {
8789 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8790 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8791 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8792 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8793 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008794
Dan Gohman475871a2008-07-27 21:46:04 +00008795 SDValue Chain = DAG.getEntryNode();
8796 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008797 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008798 // FIXME This causes a redundant load/store if the SSE-class value is already
8799 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008800 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008801 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008802 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008803 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008804 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008805 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008806 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008807 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008808 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008809
Chris Lattner492a43e2010-09-22 01:28:21 +00008810 MachineMemOperand *MMO =
8811 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8812 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008813 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8814 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008815 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008816 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008817 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8818 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008819
Chris Lattner07290932010-09-22 01:05:16 +00008820 MachineMemOperand *MMO =
8821 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8822 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008823
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008824 if (Opc != X86ISD::WIN_FTOL) {
8825 // Build the FP_TO_INT*_IN_MEM
8826 SDValue Ops[] = { Chain, Value, StackSlot };
8827 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008828 Ops, array_lengthof(Ops), DstTy,
8829 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008830 return std::make_pair(FIST, StackSlot);
8831 } else {
8832 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8833 DAG.getVTList(MVT::Other, MVT::Glue),
8834 Chain, Value);
8835 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8836 MVT::i32, ftol.getValue(1));
8837 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8838 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008839 SDValue Ops[] = { eax, edx };
8840 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008841 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8842 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008843 return std::make_pair(pair, SDValue());
8844 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008845}
8846
Nadav Rotem0509db22012-12-28 05:45:24 +00008847static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8848 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008849 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008850 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008851 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008852 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008853
8854 // Optimize vectors in AVX mode:
8855 //
8856 // v8i16 -> v8i32
8857 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8858 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8859 // Concat upper and lower parts.
8860 //
8861 // v4i32 -> v4i64
8862 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8863 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8864 // Concat upper and lower parts.
8865 //
8866
8867 if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8868 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8869 return SDValue();
8870
8871 if (Subtarget->hasInt256())
8872 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8873
8874 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8875 SDValue Undef = DAG.getUNDEF(InVT);
8876 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8877 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8878 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8879
Craig Toppera080daf2013-01-20 21:50:27 +00008880 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008881 VT.getVectorNumElements()/2);
8882
8883 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8884 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8885
8886 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8887}
8888
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008889static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8890 SelectionDAG &DAG) {
8891 MVT VT = Op->getValueType(0).getSimpleVT();
8892 SDValue In = Op->getOperand(0);
8893 MVT InVT = In.getValueType().getSimpleVT();
8894 SDLoc DL(Op);
8895 unsigned int NumElts = VT.getVectorNumElements();
8896 if (NumElts != 8 && NumElts != 16)
8897 return SDValue();
8898
8899 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8900 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8901
8902 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8903 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8904 // Now we have only mask extension
8905 assert(InVT.getVectorElementType() == MVT::i1);
8906 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8907 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8908 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8909 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8910 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8911 MachinePointerInfo::getConstantPool(),
8912 false, false, false, Alignment);
8913
8914 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8915 if (VT.is512BitVector())
8916 return Brcst;
8917 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8918}
8919
Craig Topperff79bc62013-08-18 08:53:01 +00008920static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8921 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008922 if (Subtarget->hasFp256()) {
8923 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8924 if (Res.getNode())
8925 return Res;
8926 }
8927
8928 return SDValue();
8929}
Craig Topperff79bc62013-08-18 08:53:01 +00008930
8931static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8932 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008933 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008934 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008935 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008936 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008937
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008938 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8939 return LowerZERO_EXTEND_AVX512(Op, DAG);
8940
Nadav Rotem0509db22012-12-28 05:45:24 +00008941 if (Subtarget->hasFp256()) {
8942 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8943 if (Res.getNode())
8944 return Res;
8945 }
8946
Michael Liaoa7554632012-10-23 17:36:08 +00008947 if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8948 VT.getVectorNumElements() != SVT.getVectorNumElements())
8949 return SDValue();
8950
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008951 assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
Michael Liaoa7554632012-10-23 17:36:08 +00008952
8953 // AVX2 has better support of integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008954 if (Subtarget->hasInt256())
Michael Liaoa7554632012-10-23 17:36:08 +00008955 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8956
8957 SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8958 static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8959 SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008960 DAG.getVectorShuffle(MVT::v8i16, DL, In,
8961 DAG.getUNDEF(MVT::v8i16),
8962 &Mask[0]));
Michael Liaoa7554632012-10-23 17:36:08 +00008963
8964 return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8965}
8966
Craig Topperd713c0f2013-01-20 21:34:37 +00008967SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008968 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008969 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008970 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008971 MVT InVT = In.getSimpleValueType();
8972 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8973 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008974
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008975 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8976 if (VT.getVectorElementType().getSizeInBits() >=8)
8977 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8978
8979 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8980 unsigned NumElts = InVT.getVectorNumElements();
8981 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8982 if (InVT.getSizeInBits() < 512) {
8983 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8984 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8985 InVT = ExtVT;
8986 }
8987 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8988 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8989 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8990 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8991 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8992 MachinePointerInfo::getConstantPool(),
8993 false, false, false, Alignment);
8994 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8995 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8996 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8997 }
8998
8999 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009000 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9001 if (Subtarget->hasInt256()) {
9002 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9003 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9004 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9005 ShufMask);
9006 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9007 DAG.getIntPtrConstant(0));
9008 }
9009
9010 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9011 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9012 DAG.getIntPtrConstant(0));
9013 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9014 DAG.getIntPtrConstant(2));
9015
9016 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9017 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9018
9019 // The PSHUFD mask:
9020 static const int ShufMask1[] = {0, 2, 0, 0};
9021 SDValue Undef = DAG.getUNDEF(VT);
9022 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9023 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9024
9025 // The MOVLHPS mask:
9026 static const int ShufMask2[] = {0, 1, 4, 5};
9027 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9028 }
9029
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009030 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009031 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9032 if (Subtarget->hasInt256()) {
9033 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9034
9035 SmallVector<SDValue,32> pshufbMask;
9036 for (unsigned i = 0; i < 2; ++i) {
9037 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9038 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9039 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9040 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9041 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9042 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9043 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9044 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9045 for (unsigned j = 0; j < 8; ++j)
9046 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9047 }
9048 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9049 &pshufbMask[0], 32);
9050 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9051 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9052
9053 static const int ShufMask[] = {0, 2, -1, -1};
9054 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9055 &ShufMask[0]);
9056 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9057 DAG.getIntPtrConstant(0));
9058 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9059 }
9060
9061 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9062 DAG.getIntPtrConstant(0));
9063
9064 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9065 DAG.getIntPtrConstant(4));
9066
9067 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9068 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9069
9070 // The PSHUFB mask:
9071 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9072 -1, -1, -1, -1, -1, -1, -1, -1};
9073
9074 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9075 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9076 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9077
9078 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9079 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9080
9081 // The MOVLHPS Mask:
9082 static const int ShufMask2[] = {0, 1, 4, 5};
9083 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9084 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9085 }
9086
9087 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009088 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009089 return SDValue();
9090
Nadav Rotem3c22a442012-12-27 07:45:10 +00009091 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009092
9093 unsigned NumElems = VT.getVectorNumElements();
9094 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9095 NumElems * 2);
9096
Michael Liaobedcbd42012-10-16 18:14:11 +00009097 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9098 // Prepare truncation shuffle mask
9099 for (unsigned i = 0; i != NumElems; ++i)
9100 MaskVec[i] = i * 2;
9101 SDValue V = DAG.getVectorShuffle(NVT, DL,
9102 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9103 DAG.getUNDEF(NVT), &MaskVec[0]);
9104 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9105 DAG.getIntPtrConstant(0));
9106}
9107
Dan Gohmand858e902010-04-17 15:26:15 +00009108SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9109 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009110 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009111 if (VT.isVector()) {
9112 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009113 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9114 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009115 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009116 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009117 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009118
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009119 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9120 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009121 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009122 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9123 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009124
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009125 if (StackSlot.getNode())
9126 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009127 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009128 FIST, StackSlot, MachinePointerInfo(),
9129 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009130
9131 // The node is the result.
9132 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009133}
9134
Dan Gohmand858e902010-04-17 15:26:15 +00009135SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9136 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009137 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9138 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009139 SDValue FIST = Vals.first, StackSlot = Vals.second;
9140 assert(FIST.getNode() && "Unexpected failure");
9141
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009142 if (StackSlot.getNode())
9143 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009144 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009145 FIST, StackSlot, MachinePointerInfo(),
9146 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009147
9148 // The node is the result.
9149 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009150}
9151
Craig Topperb84b4232013-01-21 06:13:28 +00009152static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009153 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009154 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009155 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009156 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009157
9158 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9159
9160 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9161 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9162 In, DAG.getUNDEF(SVT)));
9163}
9164
Craig Topper43620672012-09-08 07:31:51 +00009165SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009166 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009167 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009168 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009169 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009170 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9171 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009172 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009173 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009174 }
Craig Topper43620672012-09-08 07:31:51 +00009175 Constant *C;
9176 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009177 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9178 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009179 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009180 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9181 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009182 C = ConstantVector::getSplat(NumElts, C);
9183 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9184 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009185 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009186 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009187 false, false, false, Alignment);
9188 if (VT.isVector()) {
9189 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9190 return DAG.getNode(ISD::BITCAST, dl, VT,
9191 DAG.getNode(ISD::AND, dl, ANDVT,
9192 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9193 Op.getOperand(0)),
9194 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9195 }
Dale Johannesenace16102009-02-03 19:33:06 +00009196 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009197}
9198
Dan Gohmand858e902010-04-17 15:26:15 +00009199SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009200 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009201 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009202 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009203 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009204 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9205 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009206 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009207 NumElts = VT.getVectorNumElements();
9208 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009209 Constant *C;
9210 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009211 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9212 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009213 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009214 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9215 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009216 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009217 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9218 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009219 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009220 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009221 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009222 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009223 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009224 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009225 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009226 DAG.getNode(ISD::BITCAST, dl, XORVT,
9227 Op.getOperand(0)),
9228 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009229 }
Craig Topper69947b92012-04-23 06:57:04 +00009230
9231 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009232}
9233
Dan Gohmand858e902010-04-17 15:26:15 +00009234SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009235 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009236 SDValue Op0 = Op.getOperand(0);
9237 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009238 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009239 MVT VT = Op.getSimpleValueType();
9240 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009241
9242 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009243 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009244 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009245 SrcVT = VT;
9246 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009247 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009248 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009249 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009250 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009251 }
9252
9253 // At this point the operands and the result should have the same
9254 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009255
Evan Cheng68c47cb2007-01-05 07:55:56 +00009256 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009257 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009258 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009259 const fltSemantics &Sem = APFloat::IEEEdouble;
9260 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9261 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009262 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009263 const fltSemantics &Sem = APFloat::IEEEsingle;
9264 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9265 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9266 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9267 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009268 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009269 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009270 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009271 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009272 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009273 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009274 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009275
9276 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009277 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009278 // Op0 is MVT::f32, Op1 is MVT::f64.
9279 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9280 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9281 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009282 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009283 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009284 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009285 }
9286
Evan Cheng73d6cf12007-01-05 21:37:56 +00009287 // Clear first operand sign bit.
9288 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009289 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009290 const fltSemantics &Sem = APFloat::IEEEdouble;
9291 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9292 APInt(64, ~(1ULL << 63)))));
9293 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009294 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009295 const fltSemantics &Sem = APFloat::IEEEsingle;
9296 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9297 APInt(32, ~(1U << 31)))));
9298 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9299 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9300 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009301 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009302 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009303 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009304 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009305 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009306 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009307 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009308
9309 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009310 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009311}
9312
Craig Topper55b24052012-09-11 06:15:32 +00009313static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009314 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009315 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009316 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009317
9318 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9319 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9320 DAG.getConstant(1, VT));
9321 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9322}
9323
Michael Liaof966e4e2012-09-13 20:24:54 +00009324// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9325//
Craig Topper158ec072013-08-14 07:34:43 +00009326static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9327 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009328 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9329
9330 if (!Subtarget->hasSSE41())
9331 return SDValue();
9332
9333 if (!Op->hasOneUse())
9334 return SDValue();
9335
9336 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009337 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009338
9339 SmallVector<SDValue, 8> Opnds;
9340 DenseMap<SDValue, unsigned> VecInMap;
9341 EVT VT = MVT::Other;
9342
9343 // Recognize a special case where a vector is casted into wide integer to
9344 // test all 0s.
9345 Opnds.push_back(N->getOperand(0));
9346 Opnds.push_back(N->getOperand(1));
9347
9348 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009349 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009350 // BFS traverse all OR'd operands.
9351 if (I->getOpcode() == ISD::OR) {
9352 Opnds.push_back(I->getOperand(0));
9353 Opnds.push_back(I->getOperand(1));
9354 // Re-evaluate the number of nodes to be traversed.
9355 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9356 continue;
9357 }
9358
9359 // Quit if a non-EXTRACT_VECTOR_ELT
9360 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9361 return SDValue();
9362
9363 // Quit if without a constant index.
9364 SDValue Idx = I->getOperand(1);
9365 if (!isa<ConstantSDNode>(Idx))
9366 return SDValue();
9367
9368 SDValue ExtractedFromVec = I->getOperand(0);
9369 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9370 if (M == VecInMap.end()) {
9371 VT = ExtractedFromVec.getValueType();
9372 // Quit if not 128/256-bit vector.
9373 if (!VT.is128BitVector() && !VT.is256BitVector())
9374 return SDValue();
9375 // Quit if not the same type.
9376 if (VecInMap.begin() != VecInMap.end() &&
9377 VT != VecInMap.begin()->first.getValueType())
9378 return SDValue();
9379 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9380 }
9381 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9382 }
9383
9384 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009385 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009386
9387 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9388 SmallVector<SDValue, 8> VecIns;
9389
9390 for (DenseMap<SDValue, unsigned>::const_iterator
9391 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9392 // Quit if not all elements are used.
9393 if (I->second != FullMask)
9394 return SDValue();
9395 VecIns.push_back(I->first);
9396 }
9397
9398 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9399
9400 // Cast all vectors into TestVT for PTEST.
9401 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9402 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9403
9404 // If more than one full vectors are evaluated, OR them first before PTEST.
9405 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9406 // Each iteration will OR 2 nodes and append the result until there is only
9407 // 1 node left, i.e. the final OR'd value of all vectors.
9408 SDValue LHS = VecIns[Slot];
9409 SDValue RHS = VecIns[Slot + 1];
9410 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9411 }
9412
9413 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9414 VecIns.back(), VecIns.back());
9415}
9416
Dan Gohman076aee32009-03-04 19:44:21 +00009417/// Emit nodes that will be selected as "test Op0,Op0", or something
9418/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009419SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009420 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009421 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009422
Dan Gohman31125812009-03-07 01:58:32 +00009423 // CF and OF aren't always set the way we want. Determine which
9424 // of these we need.
9425 bool NeedCF = false;
9426 bool NeedOF = false;
9427 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009428 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009429 case X86::COND_A: case X86::COND_AE:
9430 case X86::COND_B: case X86::COND_BE:
9431 NeedCF = true;
9432 break;
9433 case X86::COND_G: case X86::COND_GE:
9434 case X86::COND_L: case X86::COND_LE:
9435 case X86::COND_O: case X86::COND_NO:
9436 NeedOF = true;
9437 break;
Dan Gohman31125812009-03-07 01:58:32 +00009438 }
9439
Dan Gohman076aee32009-03-04 19:44:21 +00009440 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009441 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9442 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009443 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9444 // Emit a CMP with 0, which is the TEST pattern.
9445 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9446 DAG.getConstant(0, Op.getValueType()));
9447
9448 unsigned Opcode = 0;
9449 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009450
9451 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009452 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009453 // of the arithmetic instruction and use a reduced bit-width instruction.
9454 bool NeedTruncation = false;
9455 SDValue ArithOp = Op;
9456 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9457 SDValue Arith = Op->getOperand(0);
9458 // Both the trunc and the arithmetic op need to have one user each.
9459 if (Arith->hasOneUse())
9460 switch (Arith.getOpcode()) {
9461 default: break;
9462 case ISD::ADD:
9463 case ISD::SUB:
9464 case ISD::AND:
9465 case ISD::OR:
9466 case ISD::XOR: {
9467 NeedTruncation = true;
9468 ArithOp = Arith;
9469 }
9470 }
9471 }
9472
9473 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9474 // which may be the result of a CAST. We use the variable 'Op', which is the
9475 // non-casted variable when we check for possible users.
9476 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009477 case ISD::ADD:
9478 // Due to an isel shortcoming, be conservative if this add is likely to be
9479 // selected as part of a load-modify-store instruction. When the root node
9480 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9481 // uses of other nodes in the match, such as the ADD in this case. This
9482 // leads to the ADD being left around and reselected, with the result being
9483 // two adds in the output. Alas, even if none our users are stores, that
9484 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9485 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9486 // climbing the DAG back to the root, and it doesn't seem to be worth the
9487 // effort.
9488 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009489 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9490 if (UI->getOpcode() != ISD::CopyToReg &&
9491 UI->getOpcode() != ISD::SETCC &&
9492 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009493 goto default_case;
9494
9495 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009496 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009497 // An add of one will be selected as an INC.
9498 if (C->getAPIntValue() == 1) {
9499 Opcode = X86ISD::INC;
9500 NumOperands = 1;
9501 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009502 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009503
9504 // An add of negative one (subtract of one) will be selected as a DEC.
9505 if (C->getAPIntValue().isAllOnesValue()) {
9506 Opcode = X86ISD::DEC;
9507 NumOperands = 1;
9508 break;
9509 }
Dan Gohman076aee32009-03-04 19:44:21 +00009510 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009511
9512 // Otherwise use a regular EFLAGS-setting add.
9513 Opcode = X86ISD::ADD;
9514 NumOperands = 2;
9515 break;
9516 case ISD::AND: {
9517 // If the primary and result isn't used, don't bother using X86ISD::AND,
9518 // because a TEST instruction will be better.
9519 bool NonFlagUse = false;
9520 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9521 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9522 SDNode *User = *UI;
9523 unsigned UOpNo = UI.getOperandNo();
9524 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9525 // Look pass truncate.
9526 UOpNo = User->use_begin().getOperandNo();
9527 User = *User->use_begin();
9528 }
9529
9530 if (User->getOpcode() != ISD::BRCOND &&
9531 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009532 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009533 NonFlagUse = true;
9534 break;
9535 }
Dan Gohman076aee32009-03-04 19:44:21 +00009536 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009537
9538 if (!NonFlagUse)
9539 break;
9540 }
9541 // FALL THROUGH
9542 case ISD::SUB:
9543 case ISD::OR:
9544 case ISD::XOR:
9545 // Due to the ISEL shortcoming noted above, be conservative if this op is
9546 // likely to be selected as part of a load-modify-store instruction.
9547 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9548 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9549 if (UI->getOpcode() == ISD::STORE)
9550 goto default_case;
9551
9552 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009553 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009554 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009555 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009556 case ISD::XOR: Opcode = X86ISD::XOR; break;
9557 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009558 case ISD::OR: {
9559 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009560 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009561 if (EFLAGS.getNode())
9562 return EFLAGS;
9563 }
9564 Opcode = X86ISD::OR;
9565 break;
9566 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009567 }
9568
9569 NumOperands = 2;
9570 break;
9571 case X86ISD::ADD:
9572 case X86ISD::SUB:
9573 case X86ISD::INC:
9574 case X86ISD::DEC:
9575 case X86ISD::OR:
9576 case X86ISD::XOR:
9577 case X86ISD::AND:
9578 return SDValue(Op.getNode(), 1);
9579 default:
9580 default_case:
9581 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009582 }
9583
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009584 // If we found that truncation is beneficial, perform the truncation and
9585 // update 'Op'.
9586 if (NeedTruncation) {
9587 EVT VT = Op.getValueType();
9588 SDValue WideVal = Op->getOperand(0);
9589 EVT WideVT = WideVal.getValueType();
9590 unsigned ConvertedOp = 0;
9591 // Use a target machine opcode to prevent further DAGCombine
9592 // optimizations that may separate the arithmetic operations
9593 // from the setcc node.
9594 switch (WideVal.getOpcode()) {
9595 default: break;
9596 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9597 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9598 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9599 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9600 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9601 }
9602
9603 if (ConvertedOp) {
9604 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9605 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9606 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9607 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9608 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9609 }
9610 }
9611 }
9612
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009613 if (Opcode == 0)
9614 // Emit a CMP with 0, which is the TEST pattern.
9615 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9616 DAG.getConstant(0, Op.getValueType()));
9617
9618 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9619 SmallVector<SDValue, 4> Ops;
9620 for (unsigned i = 0; i != NumOperands; ++i)
9621 Ops.push_back(Op.getOperand(i));
9622
9623 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9624 DAG.ReplaceAllUsesWith(Op, New);
9625 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009626}
9627
9628/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9629/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009630SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009631 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009632 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9633 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009634 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009635
Andrew Trickac6d9be2013-05-25 02:42:55 +00009636 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009637 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9638 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9639 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9640 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9641 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9642 Op0, Op1);
9643 return SDValue(Sub.getNode(), 1);
9644 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009645 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009646}
9647
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009648/// Convert a comparison if required by the subtarget.
9649SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9650 SelectionDAG &DAG) const {
9651 // If the subtarget does not support the FUCOMI instruction, floating-point
9652 // comparisons have to be converted.
9653 if (Subtarget->hasCMov() ||
9654 Cmp.getOpcode() != X86ISD::CMP ||
9655 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9656 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9657 return Cmp;
9658
9659 // The instruction selector will select an FUCOM instruction instead of
9660 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9661 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9662 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009663 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009664 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9665 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9666 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9667 DAG.getConstant(8, MVT::i8));
9668 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9669 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9670}
9671
Evan Cheng4e544802012-12-05 00:10:38 +00009672static bool isAllOnes(SDValue V) {
9673 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9674 return C && C->isAllOnesValue();
9675}
9676
Evan Chengd40d03e2010-01-06 19:38:29 +00009677/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9678/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009679SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009680 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009681 SDValue Op0 = And.getOperand(0);
9682 SDValue Op1 = And.getOperand(1);
9683 if (Op0.getOpcode() == ISD::TRUNCATE)
9684 Op0 = Op0.getOperand(0);
9685 if (Op1.getOpcode() == ISD::TRUNCATE)
9686 Op1 = Op1.getOperand(0);
9687
Evan Chengd40d03e2010-01-06 19:38:29 +00009688 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009689 if (Op1.getOpcode() == ISD::SHL)
9690 std::swap(Op0, Op1);
9691 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009692 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9693 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009694 // If we looked past a truncate, check that it's only truncating away
9695 // known zeros.
9696 unsigned BitWidth = Op0.getValueSizeInBits();
9697 unsigned AndBitWidth = And.getValueSizeInBits();
9698 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009699 APInt Zeros, Ones;
9700 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009701 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9702 return SDValue();
9703 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009704 LHS = Op1;
9705 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009706 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009707 } else if (Op1.getOpcode() == ISD::Constant) {
9708 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009709 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009710 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009711
9712 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009713 LHS = AndLHS.getOperand(0);
9714 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009715 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009716
9717 // Use BT if the immediate can't be encoded in a TEST instruction.
9718 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9719 LHS = AndLHS;
9720 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9721 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009722 }
Evan Cheng0488db92007-09-25 01:57:46 +00009723
Evan Chengd40d03e2010-01-06 19:38:29 +00009724 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009725 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009726 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009727 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009728 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009729 // Also promote i16 to i32 for performance / code size reason.
9730 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009731 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009732 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009733
Evan Chengd40d03e2010-01-06 19:38:29 +00009734 // If the operand types disagree, extend the shift amount to match. Since
9735 // BT ignores high bits (like shifts) we can use anyextend.
9736 if (LHS.getValueType() != RHS.getValueType())
9737 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009738
Evan Chengd40d03e2010-01-06 19:38:29 +00009739 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009740 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009741 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9742 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009743 }
9744
Evan Cheng54de3ea2010-01-05 06:52:31 +00009745 return SDValue();
9746}
9747
Benjamin Kramer75311b72013-08-04 12:05:16 +00009748/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9749/// mask CMPs.
9750static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9751 SDValue &Op1) {
9752 unsigned SSECC;
9753 bool Swap = false;
9754
9755 // SSE Condition code mapping:
9756 // 0 - EQ
9757 // 1 - LT
9758 // 2 - LE
9759 // 3 - UNORD
9760 // 4 - NEQ
9761 // 5 - NLT
9762 // 6 - NLE
9763 // 7 - ORD
9764 switch (SetCCOpcode) {
9765 default: llvm_unreachable("Unexpected SETCC condition");
9766 case ISD::SETOEQ:
9767 case ISD::SETEQ: SSECC = 0; break;
9768 case ISD::SETOGT:
9769 case ISD::SETGT: Swap = true; // Fallthrough
9770 case ISD::SETLT:
9771 case ISD::SETOLT: SSECC = 1; break;
9772 case ISD::SETOGE:
9773 case ISD::SETGE: Swap = true; // Fallthrough
9774 case ISD::SETLE:
9775 case ISD::SETOLE: SSECC = 2; break;
9776 case ISD::SETUO: SSECC = 3; break;
9777 case ISD::SETUNE:
9778 case ISD::SETNE: SSECC = 4; break;
9779 case ISD::SETULE: Swap = true; // Fallthrough
9780 case ISD::SETUGE: SSECC = 5; break;
9781 case ISD::SETULT: Swap = true; // Fallthrough
9782 case ISD::SETUGT: SSECC = 6; break;
9783 case ISD::SETO: SSECC = 7; break;
9784 case ISD::SETUEQ:
9785 case ISD::SETONE: SSECC = 8; break;
9786 }
9787 if (Swap)
9788 std::swap(Op0, Op1);
9789
9790 return SSECC;
9791}
9792
Craig Topper89af15e2011-09-18 08:03:58 +00009793// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009794// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009795static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009796 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009797
Craig Topper7a9a28b2012-08-12 02:23:29 +00009798 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009799 "Unsupported value type for operation");
9800
Craig Topper66ddd152012-04-27 22:54:43 +00009801 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009802 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009803 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009804
9805 // Extract the LHS vectors
9806 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009807 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9808 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009809
9810 // Extract the RHS vectors
9811 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009812 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9813 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009814
9815 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009816 MVT EltVT = VT.getVectorElementType();
9817 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009818 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9819 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9820 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9821}
9822
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009823static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009824 SDValue Op0 = Op.getOperand(0);
9825 SDValue Op1 = Op.getOperand(1);
9826 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009827 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009828
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009829 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009830 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009831 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009832
9833 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9834 SDLoc dl(Op);
9835
9836 bool Unsigned = false;
9837 unsigned SSECC;
9838 switch (SetCCOpcode) {
9839 default: llvm_unreachable("Unexpected SETCC condition");
9840 case ISD::SETNE: SSECC = 4; break;
9841 case ISD::SETEQ: SSECC = 0; break;
9842 case ISD::SETUGT: Unsigned = true;
9843 case ISD::SETGT: SSECC = 6; break; // NLE
9844 case ISD::SETULT: Unsigned = true;
9845 case ISD::SETLT: SSECC = 1; break;
9846 case ISD::SETUGE: Unsigned = true;
9847 case ISD::SETGE: SSECC = 5; break; // NLT
9848 case ISD::SETULE: Unsigned = true;
9849 case ISD::SETLE: SSECC = 2; break;
9850 }
9851 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9852 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9853 DAG.getConstant(SSECC, MVT::i8));
9854
9855}
9856
Craig Topper26827f32013-01-20 09:02:22 +00009857static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9858 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009859 SDValue Op0 = Op.getOperand(0);
9860 SDValue Op1 = Op.getOperand(1);
9861 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009862 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009863 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009864 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009865 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009866
9867 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009868#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009869 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009870 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9871#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009872
Benjamin Kramer75311b72013-08-04 12:05:16 +00009873 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009874 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009875 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009876 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009877 Opc = X86ISD::CMPM;
9878 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009879 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009880 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009881 unsigned CC0, CC1;
9882 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009883 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009884 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9885 } else {
9886 assert(SetCCOpcode == ISD::SETONE);
9887 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009888 }
Craig Topper523908d2012-08-13 02:34:03 +00009889
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009890 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009891 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009892 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009893 DAG.getConstant(CC1, MVT::i8));
9894 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009895 }
9896 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009897 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009898 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009899 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009900
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009901 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009902 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009903 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009904
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009905 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9906 EVT OpVT = Op1.getValueType();
9907 if (Subtarget->hasAVX512()) {
9908 if (Op1.getValueType().is512BitVector() ||
9909 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9910 return LowerIntVSETCC_AVX512(Op, DAG);
9911
9912 // In AVX-512 architecture setcc returns mask with i1 elements,
9913 // But there is no compare instruction for i8 and i16 elements.
9914 // We are not talking about 512-bit operands in this case, these
9915 // types are illegal.
9916 if (MaskResult &&
9917 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9918 OpVT.getVectorElementType().getSizeInBits() >= 8))
9919 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9920 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9921 }
9922
Nate Begeman30a0de92008-07-17 16:51:19 +00009923 // We are handling one of the integer comparisons here. Since SSE only has
9924 // GT and EQ comparisons for integer, swapping operands and multiple
9925 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009926 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009927 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9928
Nate Begeman30a0de92008-07-17 16:51:19 +00009929 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009930 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009931 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009932 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009933 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009934 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009935 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009936 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9937 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009938 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009939 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9940 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009941 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009942 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9943 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009944 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009945
9946 // Special case: Use min/max operations for SETULE/SETUGE
9947 MVT VET = VT.getVectorElementType();
9948 bool hasMinMax =
9949 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9950 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9951
9952 if (hasMinMax) {
9953 switch (SetCCOpcode) {
9954 default: break;
9955 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9956 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9957 }
9958
9959 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9960 }
9961
Nate Begeman30a0de92008-07-17 16:51:19 +00009962 if (Swap)
9963 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009964
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009965 // Check that the operation in question is available (most are plain SSE2,
9966 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009967 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009968 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9969 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9970
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009971 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009972 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9973 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9974
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009975 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009976 // bits of the inputs before performing those operations. The lower
9977 // compare is always unsigned.
9978 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009979 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009980 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9981 } else {
9982 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9983 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9984 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9985 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009986 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009987 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9988 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009989
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009990 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9991 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9992 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9993
9994 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009995 static const int MaskHi[] = { 1, 1, 3, 3 };
9996 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009997 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9998 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9999 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10000
10001 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10002 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10003
10004 if (Invert)
10005 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10006
10007 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10008 }
10009
Benjamin Kramer382ed782012-12-25 12:54:19 +000010010 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10011 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +000010012 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010013 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10014
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010015 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010016 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10017 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10018
10019 // Do the compare.
10020 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10021
10022 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010023 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010024 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10025 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010026
10027 if (Invert)
10028 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10029
10030 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10031 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010032 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010033
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010034 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10035 // bits of the inputs before performing those operations.
10036 if (FlipSigns) {
10037 EVT EltVT = VT.getVectorElementType();
10038 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10039 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10040 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10041 }
10042
Dale Johannesenace16102009-02-03 19:33:06 +000010043 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010044
10045 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010046 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010047 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010048
10049 if (MinMax)
10050 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010051
Nate Begeman30a0de92008-07-17 16:51:19 +000010052 return Result;
10053}
Evan Cheng0488db92007-09-25 01:57:46 +000010054
Craig Topper26827f32013-01-20 09:02:22 +000010055SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10056
Craig Topper5a0910b2013-08-15 02:33:50 +000010057 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010058
10059 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10060
10061 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10062 SDValue Op0 = Op.getOperand(0);
10063 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010064 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010065 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10066
10067 // Optimize to BT if possible.
10068 // Lower (X & (1 << N)) == 0 to BT(X, N).
10069 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10070 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10071 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10072 Op1.getOpcode() == ISD::Constant &&
10073 cast<ConstantSDNode>(Op1)->isNullValue() &&
10074 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10075 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10076 if (NewSetCC.getNode())
10077 return NewSetCC;
10078 }
10079
10080 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10081 // these.
10082 if (Op1.getOpcode() == ISD::Constant &&
10083 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10084 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10085 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10086
10087 // If the input is a setcc, then reuse the input setcc or use a new one with
10088 // the inverted condition.
10089 if (Op0.getOpcode() == X86ISD::SETCC) {
10090 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10091 bool Invert = (CC == ISD::SETNE) ^
10092 cast<ConstantSDNode>(Op1)->isNullValue();
10093 if (!Invert) return Op0;
10094
10095 CCode = X86::GetOppositeBranchCondition(CCode);
10096 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10097 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10098 }
10099 }
10100
Craig Topper5a0910b2013-08-15 02:33:50 +000010101 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010102 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10103 if (X86CC == X86::COND_INVALID)
10104 return SDValue();
10105
10106 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10107 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10108 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10109 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10110}
10111
Evan Cheng370e5342008-12-03 08:38:43 +000010112// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010113static bool isX86LogicalCmp(SDValue Op) {
10114 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010115 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10116 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010117 return true;
10118 if (Op.getResNo() == 1 &&
10119 (Opc == X86ISD::ADD ||
10120 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010121 Opc == X86ISD::ADC ||
10122 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010123 Opc == X86ISD::SMUL ||
10124 Opc == X86ISD::UMUL ||
10125 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010126 Opc == X86ISD::DEC ||
10127 Opc == X86ISD::OR ||
10128 Opc == X86ISD::XOR ||
10129 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010130 return true;
10131
Chris Lattner9637d5b2010-12-05 07:49:54 +000010132 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10133 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010134
Dan Gohman076aee32009-03-04 19:44:21 +000010135 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010136}
10137
Chris Lattnera2b56002010-12-05 01:23:24 +000010138static bool isZero(SDValue V) {
10139 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10140 return C && C->isNullValue();
10141}
10142
Evan Chengb64dd5f2012-08-07 22:21:00 +000010143static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10144 if (V.getOpcode() != ISD::TRUNCATE)
10145 return false;
10146
10147 SDValue VOp0 = V.getOperand(0);
10148 unsigned InBits = VOp0.getValueSizeInBits();
10149 unsigned Bits = V.getValueSizeInBits();
10150 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10151}
10152
Dan Gohmand858e902010-04-17 15:26:15 +000010153SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010154 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010155 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010156 SDValue Op1 = Op.getOperand(1);
10157 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010158 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010159 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010160 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010161
Benjamin Kramer75311b72013-08-04 12:05:16 +000010162 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10163 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10164 // sequence later on.
10165 if (Cond.getOpcode() == ISD::SETCC &&
10166 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10167 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10168 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10169 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10170 int SSECC = translateX86FSETCC(
10171 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10172
10173 if (SSECC != 8) {
10174 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10175 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10176 DAG.getConstant(SSECC, MVT::i8));
10177 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10178 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10179 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10180 }
10181 }
10182
Dan Gohman1a492952009-10-20 16:22:37 +000010183 if (Cond.getOpcode() == ISD::SETCC) {
10184 SDValue NewCond = LowerSETCC(Cond, DAG);
10185 if (NewCond.getNode())
10186 Cond = NewCond;
10187 }
Evan Cheng734503b2006-09-11 02:19:56 +000010188
Chris Lattnera2b56002010-12-05 01:23:24 +000010189 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010190 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010191 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010192 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010193 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010194 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10195 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010196 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010197
Chris Lattnera2b56002010-12-05 01:23:24 +000010198 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010199
10200 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010201 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10202 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010203
10204 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010205 // Apply further optimizations for special cases
10206 // (select (x != 0), -1, 0) -> neg & sbb
10207 // (select (x == 0), 0, -1) -> neg & sbb
10208 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010209 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010210 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10211 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010212 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10213 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010214 CmpOp0);
10215 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10216 DAG.getConstant(X86::COND_B, MVT::i8),
10217 SDValue(Neg.getNode(), 1));
10218 return Res;
10219 }
10220
Chris Lattnera2b56002010-12-05 01:23:24 +000010221 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10222 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010223 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010224
Chris Lattner96908b12010-12-05 02:00:51 +000010225 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010226 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10227 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010228
Chris Lattner96908b12010-12-05 02:00:51 +000010229 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10230 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010231
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010232 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010233 if (N2C == 0 || !N2C->isNullValue())
10234 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10235 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010236 }
10237 }
10238
Chris Lattnera2b56002010-12-05 01:23:24 +000010239 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010240 if (Cond.getOpcode() == ISD::AND &&
10241 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10242 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010243 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010244 Cond = Cond.getOperand(0);
10245 }
10246
Evan Cheng3f41d662007-10-08 22:16:29 +000010247 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10248 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010249 unsigned CondOpcode = Cond.getOpcode();
10250 if (CondOpcode == X86ISD::SETCC ||
10251 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010252 CC = Cond.getOperand(0);
10253
Dan Gohman475871a2008-07-27 21:46:04 +000010254 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010255 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010256 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010257
Evan Cheng3f41d662007-10-08 22:16:29 +000010258 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010259 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010260 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010261 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010262
Chris Lattnerd1980a52009-03-12 06:52:53 +000010263 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10264 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010265 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010266 addTest = false;
10267 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010268 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10269 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10270 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10271 Cond.getOperand(0).getValueType() != MVT::i8)) {
10272 SDValue LHS = Cond.getOperand(0);
10273 SDValue RHS = Cond.getOperand(1);
10274 unsigned X86Opcode;
10275 unsigned X86Cond;
10276 SDVTList VTs;
10277 switch (CondOpcode) {
10278 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10279 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10280 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10281 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10282 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10283 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10284 default: llvm_unreachable("unexpected overflowing operator");
10285 }
10286 if (CondOpcode == ISD::UMULO)
10287 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10288 MVT::i32);
10289 else
10290 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10291
10292 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10293
10294 if (CondOpcode == ISD::UMULO)
10295 Cond = X86Op.getValue(2);
10296 else
10297 Cond = X86Op.getValue(1);
10298
10299 CC = DAG.getConstant(X86Cond, MVT::i8);
10300 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010301 }
10302
10303 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010304 // Look pass the truncate if the high bits are known zero.
10305 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10306 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010307
10308 // We know the result of AND is compared against zero. Try to match
10309 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010310 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010311 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010312 if (NewSetCC.getNode()) {
10313 CC = NewSetCC.getOperand(0);
10314 Cond = NewSetCC.getOperand(1);
10315 addTest = false;
10316 }
10317 }
10318 }
10319
10320 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010321 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010322 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010323 }
10324
Benjamin Kramere915ff32010-12-22 23:09:28 +000010325 // a < b ? -1 : 0 -> RES = ~setcc_carry
10326 // a < b ? 0 : -1 -> RES = setcc_carry
10327 // a >= b ? -1 : 0 -> RES = setcc_carry
10328 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010329 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010330 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010331 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10332
10333 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10334 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10335 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10336 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10337 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10338 return DAG.getNOT(DL, Res, Res.getValueType());
10339 return Res;
10340 }
10341 }
10342
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010343 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10344 // widen the cmov and push the truncate through. This avoids introducing a new
10345 // branch during isel and doesn't add any extensions.
10346 if (Op.getValueType() == MVT::i8 &&
10347 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10348 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10349 if (T1.getValueType() == T2.getValueType() &&
10350 // Blacklist CopyFromReg to avoid partial register stalls.
10351 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10352 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010353 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010354 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10355 }
10356 }
10357
Evan Cheng0488db92007-09-25 01:57:46 +000010358 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10359 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010360 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010361 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010362 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010363}
10364
Craig Topperff79bc62013-08-18 08:53:01 +000010365static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10366 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010367 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010368 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010369 SDLoc dl(Op);
10370
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010371 unsigned int NumElts = VT.getVectorNumElements();
10372 if (NumElts != 8 && NumElts != 16)
10373 return SDValue();
10374
10375 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010376 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10377
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010378 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10379 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10380
10381 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10382 Constant *C = ConstantInt::get(*DAG.getContext(),
10383 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10384
10385 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10386 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10387 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10388 MachinePointerInfo::getConstantPool(),
10389 false, false, false, Alignment);
10390 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10391 if (VT.is512BitVector())
10392 return Brcst;
10393 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010394}
10395
Craig Topperff79bc62013-08-18 08:53:01 +000010396static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10397 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010398 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010399 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010400 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010401 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010402
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010403 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10404 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10405
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010406 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10407 (VT != MVT::v8i32 || InVT != MVT::v8i16))
10408 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010409
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010410 if (Subtarget->hasInt256())
10411 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010412
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010413 // Optimize vectors in AVX mode
10414 // Sign extend v8i16 to v8i32 and
10415 // v4i32 to v4i64
10416 //
10417 // Divide input vector into two parts
10418 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10419 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10420 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010421
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010422 unsigned NumElems = InVT.getVectorNumElements();
10423 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010424
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010425 SmallVector<int,8> ShufMask1(NumElems, -1);
10426 for (unsigned i = 0; i != NumElems/2; ++i)
10427 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010428
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010429 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010430
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010431 SmallVector<int,8> ShufMask2(NumElems, -1);
10432 for (unsigned i = 0; i != NumElems/2; ++i)
10433 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010434
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010435 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010436
Craig Toppera080daf2013-01-20 21:50:27 +000010437 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010438 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010439
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010440 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10441 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010442
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010443 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010444}
10445
Evan Cheng370e5342008-12-03 08:38:43 +000010446// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10447// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10448// from the AND / OR.
10449static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10450 Opc = Op.getOpcode();
10451 if (Opc != ISD::OR && Opc != ISD::AND)
10452 return false;
10453 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10454 Op.getOperand(0).hasOneUse() &&
10455 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10456 Op.getOperand(1).hasOneUse());
10457}
10458
Evan Cheng961d6d42009-02-02 08:19:07 +000010459// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10460// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010461static bool isXor1OfSetCC(SDValue Op) {
10462 if (Op.getOpcode() != ISD::XOR)
10463 return false;
10464 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10465 if (N1C && N1C->getAPIntValue() == 1) {
10466 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10467 Op.getOperand(0).hasOneUse();
10468 }
10469 return false;
10470}
10471
Dan Gohmand858e902010-04-17 15:26:15 +000010472SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010473 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010474 SDValue Chain = Op.getOperand(0);
10475 SDValue Cond = Op.getOperand(1);
10476 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010477 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010478 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010479 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010480
Dan Gohman1a492952009-10-20 16:22:37 +000010481 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010482 // Check for setcc([su]{add,sub,mul}o == 0).
10483 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10484 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10485 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10486 Cond.getOperand(0).getResNo() == 1 &&
10487 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10488 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10489 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10490 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10491 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10492 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10493 Inverted = true;
10494 Cond = Cond.getOperand(0);
10495 } else {
10496 SDValue NewCond = LowerSETCC(Cond, DAG);
10497 if (NewCond.getNode())
10498 Cond = NewCond;
10499 }
Dan Gohman1a492952009-10-20 16:22:37 +000010500 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010501#if 0
10502 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010503 else if (Cond.getOpcode() == X86ISD::ADD ||
10504 Cond.getOpcode() == X86ISD::SUB ||
10505 Cond.getOpcode() == X86ISD::SMUL ||
10506 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010507 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010508#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010509
Evan Chengad9c0a32009-12-15 00:53:42 +000010510 // Look pass (and (setcc_carry (cmp ...)), 1).
10511 if (Cond.getOpcode() == ISD::AND &&
10512 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10513 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010514 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010515 Cond = Cond.getOperand(0);
10516 }
10517
Evan Cheng3f41d662007-10-08 22:16:29 +000010518 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10519 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010520 unsigned CondOpcode = Cond.getOpcode();
10521 if (CondOpcode == X86ISD::SETCC ||
10522 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010523 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010524
Dan Gohman475871a2008-07-27 21:46:04 +000010525 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010526 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010527 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010528 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010529 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010530 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010531 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010532 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010533 default: break;
10534 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010535 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010536 // These can only come from an arithmetic instruction with overflow,
10537 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010538 Cond = Cond.getNode()->getOperand(1);
10539 addTest = false;
10540 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010541 }
Evan Cheng0488db92007-09-25 01:57:46 +000010542 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010543 }
10544 CondOpcode = Cond.getOpcode();
10545 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10546 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10547 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10548 Cond.getOperand(0).getValueType() != MVT::i8)) {
10549 SDValue LHS = Cond.getOperand(0);
10550 SDValue RHS = Cond.getOperand(1);
10551 unsigned X86Opcode;
10552 unsigned X86Cond;
10553 SDVTList VTs;
10554 switch (CondOpcode) {
10555 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10556 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10557 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10558 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10559 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10560 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10561 default: llvm_unreachable("unexpected overflowing operator");
10562 }
10563 if (Inverted)
10564 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10565 if (CondOpcode == ISD::UMULO)
10566 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10567 MVT::i32);
10568 else
10569 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10570
10571 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10572
10573 if (CondOpcode == ISD::UMULO)
10574 Cond = X86Op.getValue(2);
10575 else
10576 Cond = X86Op.getValue(1);
10577
10578 CC = DAG.getConstant(X86Cond, MVT::i8);
10579 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010580 } else {
10581 unsigned CondOpc;
10582 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10583 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010584 if (CondOpc == ISD::OR) {
10585 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10586 // two branches instead of an explicit OR instruction with a
10587 // separate test.
10588 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010589 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010590 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010591 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010592 Chain, Dest, CC, Cmp);
10593 CC = Cond.getOperand(1).getOperand(0);
10594 Cond = Cmp;
10595 addTest = false;
10596 }
10597 } else { // ISD::AND
10598 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10599 // two branches instead of an explicit AND instruction with a
10600 // separate test. However, we only do this if this block doesn't
10601 // have a fall-through edge, because this requires an explicit
10602 // jmp when the condition is false.
10603 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010604 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010605 Op.getNode()->hasOneUse()) {
10606 X86::CondCode CCode =
10607 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10608 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010609 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010610 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010611 // Look for an unconditional branch following this conditional branch.
10612 // We need this because we need to reverse the successors in order
10613 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010614 if (User->getOpcode() == ISD::BR) {
10615 SDValue FalseBB = User->getOperand(1);
10616 SDNode *NewBR =
10617 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010618 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010619 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010620 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010621
Dale Johannesene4d209d2009-02-03 20:21:25 +000010622 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010623 Chain, Dest, CC, Cmp);
10624 X86::CondCode CCode =
10625 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10626 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010627 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010628 Cond = Cmp;
10629 addTest = false;
10630 }
10631 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010632 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010633 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10634 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10635 // It should be transformed during dag combiner except when the condition
10636 // is set by a arithmetics with overflow node.
10637 X86::CondCode CCode =
10638 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10639 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010640 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010641 Cond = Cond.getOperand(0).getOperand(1);
10642 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010643 } else if (Cond.getOpcode() == ISD::SETCC &&
10644 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10645 // For FCMP_OEQ, we can emit
10646 // two branches instead of an explicit AND instruction with a
10647 // separate test. However, we only do this if this block doesn't
10648 // have a fall-through edge, because this requires an explicit
10649 // jmp when the condition is false.
10650 if (Op.getNode()->hasOneUse()) {
10651 SDNode *User = *Op.getNode()->use_begin();
10652 // Look for an unconditional branch following this conditional branch.
10653 // We need this because we need to reverse the successors in order
10654 // to implement FCMP_OEQ.
10655 if (User->getOpcode() == ISD::BR) {
10656 SDValue FalseBB = User->getOperand(1);
10657 SDNode *NewBR =
10658 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10659 assert(NewBR == User);
10660 (void)NewBR;
10661 Dest = FalseBB;
10662
10663 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10664 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010665 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010666 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10667 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10668 Chain, Dest, CC, Cmp);
10669 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10670 Cond = Cmp;
10671 addTest = false;
10672 }
10673 }
10674 } else if (Cond.getOpcode() == ISD::SETCC &&
10675 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10676 // For FCMP_UNE, we can emit
10677 // two branches instead of an explicit AND instruction with a
10678 // separate test. However, we only do this if this block doesn't
10679 // have a fall-through edge, because this requires an explicit
10680 // jmp when the condition is false.
10681 if (Op.getNode()->hasOneUse()) {
10682 SDNode *User = *Op.getNode()->use_begin();
10683 // Look for an unconditional branch following this conditional branch.
10684 // We need this because we need to reverse the successors in order
10685 // to implement FCMP_UNE.
10686 if (User->getOpcode() == ISD::BR) {
10687 SDValue FalseBB = User->getOperand(1);
10688 SDNode *NewBR =
10689 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10690 assert(NewBR == User);
10691 (void)NewBR;
10692
10693 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10694 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010695 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010696 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10697 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10698 Chain, Dest, CC, Cmp);
10699 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10700 Cond = Cmp;
10701 addTest = false;
10702 Dest = FalseBB;
10703 }
10704 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010705 }
Evan Cheng0488db92007-09-25 01:57:46 +000010706 }
10707
10708 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010709 // Look pass the truncate if the high bits are known zero.
10710 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10711 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010712
10713 // We know the result of AND is compared against zero. Try to match
10714 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010715 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010716 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10717 if (NewSetCC.getNode()) {
10718 CC = NewSetCC.getOperand(0);
10719 Cond = NewSetCC.getOperand(1);
10720 addTest = false;
10721 }
10722 }
10723 }
10724
10725 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010726 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010727 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010728 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010729 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010730 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010731 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010732}
10733
Anton Korobeynikove060b532007-04-17 19:34:00 +000010734// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10735// Calls to _alloca is needed to probe the stack when allocating more than 4k
10736// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10737// that the guard pages used by the OS virtual memory manager are allocated in
10738// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010739SDValue
10740X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010741 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010742 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010743 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010744 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010745 "are being used");
10746 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010747 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010748
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010749 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010750 SDValue Chain = Op.getOperand(0);
10751 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010752 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10753 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010754
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010755 bool Is64Bit = Subtarget->is64Bit();
10756 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010757
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010758 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010759 MachineFunction &MF = DAG.getMachineFunction();
10760 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010761
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010762 if (Is64Bit) {
10763 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010764 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010765 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010766
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010767 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010768 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010769 if (I->hasNestAttr())
10770 report_fatal_error("Cannot use segmented stacks with functions that "
10771 "have nested arguments.");
10772 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010773
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010774 const TargetRegisterClass *AddrRegClass =
10775 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10776 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10777 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10778 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10779 DAG.getRegister(Vreg, SPTy));
10780 SDValue Ops1[2] = { Value, Chain };
10781 return DAG.getMergeValues(Ops1, 2, dl);
10782 } else {
10783 SDValue Flag;
10784 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010785
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010786 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10787 Flag = Chain.getValue(1);
10788 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010789
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010790 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010791
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010792 const X86RegisterInfo *RegInfo =
10793 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010794 unsigned SPReg = RegInfo->getStackRegister();
10795 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10796 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010797
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010798 if (Align) {
10799 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10800 DAG.getConstant(-(uint64_t)Align, VT));
10801 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10802 }
10803
10804 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010805 return DAG.getMergeValues(Ops1, 2, dl);
10806 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010807}
10808
Dan Gohmand858e902010-04-17 15:26:15 +000010809SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010810 MachineFunction &MF = DAG.getMachineFunction();
10811 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10812
Dan Gohman69de1932008-02-06 22:27:42 +000010813 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010814 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010815
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010816 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010817 // vastart just stores the address of the VarArgsFrameIndex slot into the
10818 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010819 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10820 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010821 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10822 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010823 }
10824
10825 // __va_list_tag:
10826 // gp_offset (0 - 6 * 8)
10827 // fp_offset (48 - 48 + 8 * 16)
10828 // overflow_arg_area (point to parameters coming in memory).
10829 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010830 SmallVector<SDValue, 8> MemOps;
10831 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010832 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010833 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010834 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10835 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010836 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010837 MemOps.push_back(Store);
10838
10839 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010840 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010841 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010842 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010843 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10844 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010845 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010846 MemOps.push_back(Store);
10847
10848 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010849 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010850 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010851 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10852 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010853 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10854 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010855 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010856 MemOps.push_back(Store);
10857
10858 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010859 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010860 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010861 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10862 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010863 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10864 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010865 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010866 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010867 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010868}
10869
Dan Gohmand858e902010-04-17 15:26:15 +000010870SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010871 assert(Subtarget->is64Bit() &&
10872 "LowerVAARG only handles 64-bit va_arg!");
10873 assert((Subtarget->isTargetLinux() ||
10874 Subtarget->isTargetDarwin()) &&
10875 "Unhandled target in LowerVAARG");
10876 assert(Op.getNode()->getNumOperands() == 4);
10877 SDValue Chain = Op.getOperand(0);
10878 SDValue SrcPtr = Op.getOperand(1);
10879 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10880 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010881 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010882
Dan Gohman320afb82010-10-12 18:00:49 +000010883 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010884 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010885 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010886 uint8_t ArgMode;
10887
10888 // Decide which area this value should be read from.
10889 // TODO: Implement the AMD64 ABI in its entirety. This simple
10890 // selection mechanism works only for the basic types.
10891 if (ArgVT == MVT::f80) {
10892 llvm_unreachable("va_arg for f80 not yet implemented");
10893 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10894 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10895 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10896 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10897 } else {
10898 llvm_unreachable("Unhandled argument type in LowerVAARG");
10899 }
10900
10901 if (ArgMode == 2) {
10902 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010903 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010904 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010905 .getFunction()->getAttributes()
10906 .hasAttribute(AttributeSet::FunctionIndex,
10907 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010908 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010909 }
10910
10911 // Insert VAARG_64 node into the DAG
10912 // VAARG_64 returns two values: Variable Argument Address, Chain
10913 SmallVector<SDValue, 11> InstOps;
10914 InstOps.push_back(Chain);
10915 InstOps.push_back(SrcPtr);
10916 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10917 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10918 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10919 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10920 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10921 VTs, &InstOps[0], InstOps.size(),
10922 MVT::i64,
10923 MachinePointerInfo(SV),
10924 /*Align=*/0,
10925 /*Volatile=*/false,
10926 /*ReadMem=*/true,
10927 /*WriteMem=*/true);
10928 Chain = VAARG.getValue(1);
10929
10930 // Load the next argument and return it
10931 return DAG.getLoad(ArgVT, dl,
10932 Chain,
10933 VAARG,
10934 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010935 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010936}
10937
Craig Topper55b24052012-09-11 06:15:32 +000010938static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10939 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010940 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010941 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010942 SDValue Chain = Op.getOperand(0);
10943 SDValue DstPtr = Op.getOperand(1);
10944 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010945 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10946 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010947 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010948
Chris Lattnere72f2022010-09-21 05:40:29 +000010949 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010950 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010951 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010952 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010953}
10954
Craig Topperff3139f2013-02-19 07:43:59 +000010955// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010956// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010957static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010958 SDValue SrcOp, SDValue ShAmt,
10959 SelectionDAG &DAG) {
10960 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10961
10962 if (isa<ConstantSDNode>(ShAmt)) {
Nadav Rotemd896e242012-07-15 20:27:43 +000010963 // Constant may be a TargetConstant. Use a regular constant.
10964 uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Craig Topper80e46362012-01-23 06:16:53 +000010965 switch (Opc) {
10966 default: llvm_unreachable("Unknown target vector shift node");
10967 case X86ISD::VSHLI:
10968 case X86ISD::VSRLI:
10969 case X86ISD::VSRAI:
Nadav Rotemd896e242012-07-15 20:27:43 +000010970 return DAG.getNode(Opc, dl, VT, SrcOp,
10971 DAG.getConstant(ShiftAmt, MVT::i32));
Craig Topper80e46362012-01-23 06:16:53 +000010972 }
10973 }
10974
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
Craig Topper5b209e82012-02-05 03:14:49 +000012405 assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12406 "Only know how to lower V2I64/V4I64 multiply");
12407
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
Craig Topper5b209e82012-02-05 03:14:49 +000012419 SDValue ShAmt = DAG.getConstant(32, MVT::i32);
Craig Topperaaa643c2011-11-09 07:28:55 +000012420
Craig Topper5b209e82012-02-05 03:14:49 +000012421 SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12422 SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
Craig Topperaaa643c2011-11-09 07:28:55 +000012423
Craig Topper5b209e82012-02-05 03:14:49 +000012424 // Bit cast to 32-bit vectors for MULUDQ
12425 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12426 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12427 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12428 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12429 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012430
Craig Topper5b209e82012-02-05 03:14:49 +000012431 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12432 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12433 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012434
Craig Topper5b209e82012-02-05 03:14:49 +000012435 AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12436 AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012437
Dale Johannesene4d209d2009-02-03 20:21:25 +000012438 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012439 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012440}
12441
Craig Topper35e194f2013-08-14 07:53:41 +000012442static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012443 EVT VT = Op.getValueType();
12444 EVT EltTy = VT.getVectorElementType();
12445 unsigned NumElts = VT.getVectorNumElements();
12446 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012447 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012448
12449 // Lower sdiv X, pow2-const.
12450 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12451 if (!C)
12452 return SDValue();
12453
12454 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012455 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012456 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012457 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12458 HasAnyUndefs) ||
12459 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012460 return SDValue();
12461
12462 if ((SplatValue != 0) &&
12463 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12464 unsigned lg2 = SplatValue.countTrailingZeros();
12465 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012466 SmallVector<SDValue, 16> Sz(NumElts,
12467 DAG.getConstant(EltTy.getSizeInBits() - 1,
12468 EltTy));
12469 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12470 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12471 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012472 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012473 SmallVector<SDValue, 16> Amt(NumElts,
12474 DAG.getConstant(EltTy.getSizeInBits() - lg2,
12475 EltTy));
12476 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12477 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12478 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012479 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Michael Liaodc8c0442013-10-15 17:51:02 +000012480 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(lg2, EltTy));
12481 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12482 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12483 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012484
12485 // If we're dividing by a positive value, we're done. Otherwise, we must
12486 // negate the result.
12487 if (SplatValue.isNonNegative())
12488 return SRA;
12489
12490 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12491 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12492 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12493 }
12494 return SDValue();
12495}
12496
Michael Liao4b7ab122013-03-20 02:20:36 +000012497static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12498 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012499 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012500 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012501 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012502 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012503
Nadav Rotem43012222011-05-11 08:12:09 +000012504 // Optimize shl/srl/sra with constant shift amount.
12505 if (isSplatVector(Amt.getNode())) {
12506 SDValue SclrAmt = Amt->getOperand(0);
12507 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12508 uint64_t ShiftAmt = C->getZExtValue();
12509
Craig Toppered2e13d2012-01-22 19:15:14 +000012510 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012511 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012512 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12513 (Subtarget->hasAVX512() &&
12514 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012515 if (Op.getOpcode() == ISD::SHL)
12516 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12517 DAG.getConstant(ShiftAmt, MVT::i32));
12518 if (Op.getOpcode() == ISD::SRL)
12519 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12520 DAG.getConstant(ShiftAmt, MVT::i32));
12521 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12522 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12523 DAG.getConstant(ShiftAmt, MVT::i32));
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012524 }
12525
Craig Toppered2e13d2012-01-22 19:15:14 +000012526 if (VT == MVT::v16i8) {
12527 if (Op.getOpcode() == ISD::SHL) {
12528 // Make a large shift.
12529 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12530 DAG.getConstant(ShiftAmt, MVT::i32));
12531 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.
12541 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12542 DAG.getConstant(ShiftAmt, MVT::i32));
12543 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12544 // Zero out the leftmost bits.
12545 SmallVector<SDValue, 16> V(16,
12546 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12547 MVT::i8));
12548 return DAG.getNode(ISD::AND, dl, VT, SRL,
12549 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12550 }
12551 if (Op.getOpcode() == ISD::SRA) {
12552 if (ShiftAmt == 7) {
12553 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012554 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012555 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012556 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012557
Craig Toppered2e13d2012-01-22 19:15:14 +000012558 // R s>> a === ((R u>> a) ^ m) - m
12559 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12560 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12561 MVT::i8));
12562 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12563 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12564 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12565 return Res;
12566 }
Craig Topper731dfd02012-04-23 03:42:40 +000012567 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012568 }
Craig Topper46154eb2011-11-11 07:39:23 +000012569
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012570 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012571 if (Op.getOpcode() == ISD::SHL) {
12572 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012573 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12574 DAG.getConstant(ShiftAmt, MVT::i32));
12575 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012576 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012577 SmallVector<SDValue, 32> V(32,
12578 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12579 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012580 return DAG.getNode(ISD::AND, dl, VT, SHL,
12581 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012582 }
Craig Topper0d86d462011-11-20 00:12:05 +000012583 if (Op.getOpcode() == ISD::SRL) {
12584 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012585 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12586 DAG.getConstant(ShiftAmt, MVT::i32));
12587 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012588 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012589 SmallVector<SDValue, 32> V(32,
12590 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12591 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012592 return DAG.getNode(ISD::AND, dl, VT, SRL,
12593 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12594 }
12595 if (Op.getOpcode() == ISD::SRA) {
12596 if (ShiftAmt == 7) {
12597 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012598 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012599 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012600 }
12601
12602 // R s>> a === ((R u>> a) ^ m) - m
12603 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12604 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12605 MVT::i8));
12606 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12607 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12608 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12609 return Res;
12610 }
Craig Topper731dfd02012-04-23 03:42:40 +000012611 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012612 }
Nadav Rotem43012222011-05-11 08:12:09 +000012613 }
12614 }
12615
Michael Liao42317cc2013-03-20 02:33:21 +000012616 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12617 if (!Subtarget->is64Bit() &&
12618 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12619 Amt.getOpcode() == ISD::BITCAST &&
12620 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12621 Amt = Amt.getOperand(0);
12622 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12623 VT.getVectorNumElements();
12624 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12625 uint64_t ShiftAmt = 0;
12626 for (unsigned i = 0; i != Ratio; ++i) {
12627 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12628 if (C == 0)
12629 return SDValue();
12630 // 6 == Log2(64)
12631 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12632 }
12633 // Check remaining shift amounts.
12634 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12635 uint64_t ShAmt = 0;
12636 for (unsigned j = 0; j != Ratio; ++j) {
12637 ConstantSDNode *C =
12638 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12639 if (C == 0)
12640 return SDValue();
12641 // 6 == Log2(64)
12642 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12643 }
12644 if (ShAmt != ShiftAmt)
12645 return SDValue();
12646 }
12647 switch (Op.getOpcode()) {
12648 default:
12649 llvm_unreachable("Unknown shift opcode!");
12650 case ISD::SHL:
12651 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12652 DAG.getConstant(ShiftAmt, MVT::i32));
12653 case ISD::SRL:
12654 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12655 DAG.getConstant(ShiftAmt, MVT::i32));
12656 case ISD::SRA:
12657 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12658 DAG.getConstant(ShiftAmt, MVT::i32));
12659 }
12660 }
12661
12662 return SDValue();
12663}
12664
12665static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12666 const X86Subtarget* Subtarget) {
12667 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012668 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012669 SDValue R = Op.getOperand(0);
12670 SDValue Amt = Op.getOperand(1);
12671
12672 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12673 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12674 (Subtarget->hasInt256() &&
12675 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012676 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12677 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012678 SDValue BaseShAmt;
12679 EVT EltVT = VT.getVectorElementType();
12680
12681 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12682 unsigned NumElts = VT.getVectorNumElements();
12683 unsigned i, j;
12684 for (i = 0; i != NumElts; ++i) {
12685 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12686 continue;
12687 break;
12688 }
12689 for (j = i; j != NumElts; ++j) {
12690 SDValue Arg = Amt.getOperand(j);
12691 if (Arg.getOpcode() == ISD::UNDEF) continue;
12692 if (Arg != Amt.getOperand(i))
12693 break;
12694 }
12695 if (i != NumElts && j == NumElts)
12696 BaseShAmt = Amt.getOperand(i);
12697 } else {
12698 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12699 Amt = Amt.getOperand(0);
12700 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12701 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12702 SDValue InVec = Amt.getOperand(0);
12703 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12704 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12705 unsigned i = 0;
12706 for (; i != NumElts; ++i) {
12707 SDValue Arg = InVec.getOperand(i);
12708 if (Arg.getOpcode() == ISD::UNDEF) continue;
12709 BaseShAmt = Arg;
12710 break;
12711 }
12712 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12713 if (ConstantSDNode *C =
12714 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12715 unsigned SplatIdx =
12716 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12717 if (C->getZExtValue() == SplatIdx)
12718 BaseShAmt = InVec.getOperand(1);
12719 }
12720 }
12721 if (BaseShAmt.getNode() == 0)
12722 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12723 DAG.getIntPtrConstant(0));
12724 }
12725 }
12726
12727 if (BaseShAmt.getNode()) {
12728 if (EltVT.bitsGT(MVT::i32))
12729 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12730 else if (EltVT.bitsLT(MVT::i32))
12731 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12732
12733 switch (Op.getOpcode()) {
12734 default:
12735 llvm_unreachable("Unknown shift opcode!");
12736 case ISD::SHL:
12737 switch (VT.getSimpleVT().SimpleTy) {
12738 default: return SDValue();
12739 case MVT::v2i64:
12740 case MVT::v4i32:
12741 case MVT::v8i16:
12742 case MVT::v4i64:
12743 case MVT::v8i32:
12744 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012745 case MVT::v16i32:
12746 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012747 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12748 }
12749 case ISD::SRA:
12750 switch (VT.getSimpleVT().SimpleTy) {
12751 default: return SDValue();
12752 case MVT::v4i32:
12753 case MVT::v8i16:
12754 case MVT::v8i32:
12755 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012756 case MVT::v16i32:
12757 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012758 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12759 }
12760 case ISD::SRL:
12761 switch (VT.getSimpleVT().SimpleTy) {
12762 default: return SDValue();
12763 case MVT::v2i64:
12764 case MVT::v4i32:
12765 case MVT::v8i16:
12766 case MVT::v4i64:
12767 case MVT::v8i32:
12768 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012769 case MVT::v16i32:
12770 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012771 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12772 }
12773 }
12774 }
12775 }
12776
12777 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12778 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012779 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12780 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012781 Amt.getOpcode() == ISD::BITCAST &&
12782 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12783 Amt = Amt.getOperand(0);
12784 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12785 VT.getVectorNumElements();
12786 std::vector<SDValue> Vals(Ratio);
12787 for (unsigned i = 0; i != Ratio; ++i)
12788 Vals[i] = Amt.getOperand(i);
12789 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12790 for (unsigned j = 0; j != Ratio; ++j)
12791 if (Vals[j] != Amt.getOperand(i + j))
12792 return SDValue();
12793 }
12794 switch (Op.getOpcode()) {
12795 default:
12796 llvm_unreachable("Unknown shift opcode!");
12797 case ISD::SHL:
12798 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12799 case ISD::SRL:
12800 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12801 case ISD::SRA:
12802 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12803 }
12804 }
12805
Michael Liao4b7ab122013-03-20 02:20:36 +000012806 return SDValue();
12807}
12808
Craig Topper35e194f2013-08-14 07:53:41 +000012809static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12810 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012811
12812 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012813 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012814 SDValue R = Op.getOperand(0);
12815 SDValue Amt = Op.getOperand(1);
12816 SDValue V;
12817
12818 if (!Subtarget->hasSSE2())
12819 return SDValue();
12820
12821 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12822 if (V.getNode())
12823 return V;
12824
Michael Liao42317cc2013-03-20 02:33:21 +000012825 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12826 if (V.getNode())
12827 return V;
12828
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012829 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12830 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012831 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12832 if (Subtarget->hasInt256()) {
12833 if (Op.getOpcode() == ISD::SRL &&
12834 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12835 VT == MVT::v4i64 || VT == MVT::v8i32))
12836 return Op;
12837 if (Op.getOpcode() == ISD::SHL &&
12838 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12839 VT == MVT::v4i64 || VT == MVT::v8i32))
12840 return Op;
12841 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12842 return Op;
12843 }
12844
Nadav Rotem43012222011-05-11 08:12:09 +000012845 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012846 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012847 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012848
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012849 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012850 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012851 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12852 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12853 }
Nadav Rotem43012222011-05-11 08:12:09 +000012854 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012855 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012856
Nate Begeman51409212010-07-28 00:21:48 +000012857 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012858 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012859 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012860
Lang Hames8b99c1e2011-12-17 01:08:46 +000012861 // Turn 'a' into a mask suitable for VSELECT
12862 SDValue VSelM = DAG.getConstant(0x80, VT);
12863 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012864 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012865
Lang Hames8b99c1e2011-12-17 01:08:46 +000012866 SDValue CM1 = DAG.getConstant(0x0f, VT);
12867 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012868
Lang Hames8b99c1e2011-12-17 01:08:46 +000012869 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12870 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Craig Toppered2e13d2012-01-22 19:15:14 +000012871 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12872 DAG.getConstant(4, MVT::i32), DAG);
12873 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012874 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12875
Nate Begeman51409212010-07-28 00:21:48 +000012876 // a += a
12877 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012878 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012879 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012880
Lang Hames8b99c1e2011-12-17 01:08:46 +000012881 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12882 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Craig Toppered2e13d2012-01-22 19:15:14 +000012883 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12884 DAG.getConstant(2, MVT::i32), DAG);
12885 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012886 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12887
Nate Begeman51409212010-07-28 00:21:48 +000012888 // a += a
12889 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012890 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012891 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012892
Lang Hames8b99c1e2011-12-17 01:08:46 +000012893 // return VSELECT(r, r+r, a);
12894 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012895 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012896 return R;
12897 }
Craig Topper46154eb2011-11-11 07:39:23 +000012898
12899 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012900 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012901 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012902 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12903 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12904
12905 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012906 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12907 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012908
12909 // Recreate the shift amount vectors
12910 SDValue Amt1, Amt2;
12911 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12912 // Constant shift amount
12913 SmallVector<SDValue, 4> Amt1Csts;
12914 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012915 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012916 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012917 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012918 Amt2Csts.push_back(Amt->getOperand(i));
12919
12920 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12921 &Amt1Csts[0], NumElems/2);
12922 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12923 &Amt2Csts[0], NumElems/2);
12924 } else {
12925 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012926 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12927 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012928 }
12929
12930 // Issue new vector shifts for the smaller types
12931 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12932 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12933
12934 // Concatenate the result back
12935 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12936 }
12937
Nate Begeman51409212010-07-28 00:21:48 +000012938 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012939}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012940
Craig Topper55b24052012-09-11 06:15:32 +000012941static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012942 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12943 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012944 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12945 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012946 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012947 SDValue LHS = N->getOperand(0);
12948 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012949 unsigned BaseOp = 0;
12950 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012951 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012952 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012953 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012954 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012955 // A subtract of one will be selected as a INC. Note that INC doesn't
12956 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012957 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12958 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012959 BaseOp = X86ISD::INC;
12960 Cond = X86::COND_O;
12961 break;
12962 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012963 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012964 Cond = X86::COND_O;
12965 break;
12966 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012967 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012968 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012969 break;
12970 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012971 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12972 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012973 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12974 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012975 BaseOp = X86ISD::DEC;
12976 Cond = X86::COND_O;
12977 break;
12978 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012979 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012980 Cond = X86::COND_O;
12981 break;
12982 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012983 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012984 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012985 break;
12986 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000012987 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000012988 Cond = X86::COND_O;
12989 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012990 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12991 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12992 MVT::i32);
12993 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012994
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012995 SDValue SetCC =
12996 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12997 DAG.getConstant(X86::COND_O, MVT::i32),
12998 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012999
Dan Gohman6e5fda22011-07-22 18:45:15 +000013000 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013001 }
Bill Wendling74c37652008-12-09 22:08:41 +000013002 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013003
Bill Wendling61edeb52008-12-02 01:06:39 +000013004 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013005 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013006 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013007
Bill Wendling61edeb52008-12-02 01:06:39 +000013008 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013009 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13010 DAG.getConstant(Cond, MVT::i32),
13011 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013012
Dan Gohman6e5fda22011-07-22 18:45:15 +000013013 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013014}
13015
Chad Rosier30450e82011-12-22 22:35:21 +000013016SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13017 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013018 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013019 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13020 EVT VT = Op.getValueType();
13021
Craig Toppered2e13d2012-01-22 19:15:14 +000013022 if (!Subtarget->hasSSE2() || !VT.isVector())
13023 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013024
Craig Toppered2e13d2012-01-22 19:15:14 +000013025 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13026 ExtraVT.getScalarType().getSizeInBits();
13027 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
13028
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.
13077 Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000013078 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013079 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013080 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013081}
13082
Craig Topper55b24052012-09-11 06:15:32 +000013083static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13084 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013085 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013086 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13087 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13088 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13089 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13090
13091 // The only fence that needs an instruction is a sequentially-consistent
13092 // cross-thread fence.
13093 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13094 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13095 // no-sse2). There isn't any reason to disable it if the target processor
13096 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013097 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013098 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13099
13100 SDValue Chain = Op.getOperand(0);
13101 SDValue Zero = DAG.getConstant(0, MVT::i32);
13102 SDValue Ops[] = {
13103 DAG.getRegister(X86::ESP, MVT::i32), // Base
13104 DAG.getTargetConstant(1, MVT::i8), // Scale
13105 DAG.getRegister(0, MVT::i32), // Index
13106 DAG.getTargetConstant(0, MVT::i32), // Disp
13107 DAG.getRegister(0, MVT::i32), // Segment.
13108 Zero,
13109 Chain
13110 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013111 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013112 return SDValue(Res, 0);
13113 }
13114
13115 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13116 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13117}
13118
Craig Topper55b24052012-09-11 06:15:32 +000013119static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13120 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013121 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013122 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013123 unsigned Reg = 0;
13124 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013125 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013126 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013127 case MVT::i8: Reg = X86::AL; size = 1; break;
13128 case MVT::i16: Reg = X86::AX; size = 2; break;
13129 case MVT::i32: Reg = X86::EAX; size = 4; break;
13130 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013131 assert(Subtarget->is64Bit() && "Node not type legal!");
13132 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013133 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013134 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013135 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013136 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013137 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013138 Op.getOperand(1),
13139 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013140 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013141 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013142 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013143 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13144 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013145 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013146 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013147 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013148 return cpOut;
13149}
13150
Craig Topper55b24052012-09-11 06:15:32 +000013151static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13152 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013153 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013154 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013155 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013156 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013157 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013158 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13159 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013160 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013161 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13162 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013163 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013164 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013165 rdx.getValue(1)
13166 };
Michael Liao0ee17002013-04-19 04:03:37 +000013167 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013168}
13169
Craig Topper35e194f2013-08-14 07:53:41 +000013170static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13171 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013172 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13173 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013174 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013175 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013176 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013177 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013178 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013179 // i64 <=> MMX conversions are Legal.
13180 if (SrcVT==MVT::i64 && DstVT.isVector())
13181 return Op;
13182 if (DstVT==MVT::i64 && SrcVT.isVector())
13183 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013184 // MMX <=> MMX conversions are Legal.
13185 if (SrcVT.isVector() && DstVT.isVector())
13186 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013187 // All other conversions need to be expanded.
13188 return SDValue();
13189}
Chris Lattner5b856542010-12-20 00:59:46 +000013190
Craig Topper55b24052012-09-11 06:15:32 +000013191static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013192 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013193 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013194 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013195 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013196 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013197 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013198 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013199 Node->getOperand(0),
13200 Node->getOperand(1), negOp,
13201 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013202 cast<AtomicSDNode>(Node)->getAlignment(),
13203 cast<AtomicSDNode>(Node)->getOrdering(),
13204 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013205}
13206
Eli Friedman327236c2011-08-24 20:50:09 +000013207static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13208 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013209 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013210 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013211
13212 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013213 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13214 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13215 // (The only way to get a 16-byte store is cmpxchg16b)
13216 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13217 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13218 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013219 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13220 cast<AtomicSDNode>(Node)->getMemoryVT(),
13221 Node->getOperand(0),
13222 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013223 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013224 cast<AtomicSDNode>(Node)->getOrdering(),
13225 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013226 return Swap.getValue(1);
13227 }
13228 // Other atomic stores have a simple pattern.
13229 return Op;
13230}
13231
Chris Lattner5b856542010-12-20 00:59:46 +000013232static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13233 EVT VT = Op.getNode()->getValueType(0);
13234
13235 // Let legalize expand this if it isn't a legal type yet.
13236 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13237 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013238
Chris Lattner5b856542010-12-20 00:59:46 +000013239 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013240
Chris Lattner5b856542010-12-20 00:59:46 +000013241 unsigned Opc;
13242 bool ExtraOp = false;
13243 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013244 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013245 case ISD::ADDC: Opc = X86ISD::ADD; break;
13246 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13247 case ISD::SUBC: Opc = X86ISD::SUB; break;
13248 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13249 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013250
Chris Lattner5b856542010-12-20 00:59:46 +000013251 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013252 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013253 Op.getOperand(1));
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), Op.getOperand(2));
13256}
13257
Craig Topper35e194f2013-08-14 07:53:41 +000013258static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13259 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013260 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013261
Evan Cheng8688a582013-01-29 02:32:37 +000013262 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013263 // which returns the values as { float, float } (in XMM0) or
13264 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013265 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013266 SDValue Arg = Op.getOperand(0);
13267 EVT ArgVT = Arg.getValueType();
13268 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013269
Craig Topper35e194f2013-08-14 07:53:41 +000013270 TargetLowering::ArgListTy Args;
13271 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013272
Evan Cheng8688a582013-01-29 02:32:37 +000013273 Entry.Node = Arg;
13274 Entry.Ty = ArgTy;
13275 Entry.isSExt = false;
13276 Entry.isZExt = false;
13277 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013278
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013279 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013280 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13281 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13282 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013283 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013284 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13285 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013286
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013287 Type *RetTy = isF64
13288 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13289 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013290 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013291 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13292 false, false, false, false, 0,
13293 CallingConv::C, /*isTaillCall=*/false,
13294 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13295 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013296 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013297
13298 if (isF64)
13299 // Returned in xmm0 and xmm1.
13300 return CallResult.first;
13301
13302 // Returned in bits 0:31 and 32:64 xmm0.
13303 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13304 CallResult.first, DAG.getIntPtrConstant(0));
13305 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13306 CallResult.first, DAG.getIntPtrConstant(1));
13307 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13308 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013309}
13310
Evan Cheng0db9fe62006-04-25 20:13:52 +000013311/// LowerOperation - Provide custom lowering hooks for some operations.
13312///
Dan Gohmand858e902010-04-17 15:26:15 +000013313SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013314 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013315 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013316 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013317 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13318 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013319 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013320 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013321 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013322 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013323 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13324 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13325 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013326 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13327 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013328 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13329 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13330 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013331 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013332 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013333 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013334 case ISD::SHL_PARTS:
13335 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013336 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013337 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013338 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013339 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013340 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13341 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13342 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013343 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013344 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013345 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013346 case ISD::FABS: return LowerFABS(Op, DAG);
13347 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013348 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013349 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013350 case ISD::SETCC: return LowerSETCC(Op, DAG);
13351 case ISD::SELECT: return LowerSELECT(Op, DAG);
13352 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013353 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013354 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013355 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013356 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013357 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013358 case ISD::INTRINSIC_VOID:
13359 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013360 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13361 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013362 case ISD::FRAME_TO_ARGS_OFFSET:
13363 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013364 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013365 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013366 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13367 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013368 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13369 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013370 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013371 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013372 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013373 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013374 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013375 case ISD::SRA:
13376 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013377 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013378 case ISD::SADDO:
13379 case ISD::UADDO:
13380 case ISD::SSUBO:
13381 case ISD::USUBO:
13382 case ISD::SMULO:
13383 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013384 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013385 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013386 case ISD::ADDC:
13387 case ISD::ADDE:
13388 case ISD::SUBC:
13389 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013390 case ISD::ADD: return LowerADD(Op, DAG);
13391 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013392 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013393 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013394 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013395}
13396
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013397static void ReplaceATOMIC_LOAD(SDNode *Node,
13398 SmallVectorImpl<SDValue> &Results,
13399 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013400 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013401 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13402
13403 // Convert wide load -> cmpxchg8b/cmpxchg16b
13404 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13405 // (The only way to get a 16-byte load is cmpxchg16b)
13406 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013407 SDValue Zero = DAG.getConstant(0, VT);
13408 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013409 Node->getOperand(0),
13410 Node->getOperand(1), Zero, Zero,
13411 cast<AtomicSDNode>(Node)->getMemOperand(),
13412 cast<AtomicSDNode>(Node)->getOrdering(),
13413 cast<AtomicSDNode>(Node)->getSynchScope());
13414 Results.push_back(Swap.getValue(0));
13415 Results.push_back(Swap.getValue(1));
13416}
13417
Craig Topperc0878702012-08-17 06:55:11 +000013418static void
Duncan Sands1607f052008-12-01 11:39:25 +000013419ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013420 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013421 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013422 assert (Node->getValueType(0) == MVT::i64 &&
13423 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013424
13425 SDValue Chain = Node->getOperand(0);
13426 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013427 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013428 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013429 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013430 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013431 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013432 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013433 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013434 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013435 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013436 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013437 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013438 Results.push_back(Result.getValue(2));
13439}
13440
Duncan Sands126d9072008-07-04 11:47:58 +000013441/// ReplaceNodeResults - Replace a node with an illegal result type
13442/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013443void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13444 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013445 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013446 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013447 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013448 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013449 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013450 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013451 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013452 case ISD::ADDC:
13453 case ISD::ADDE:
13454 case ISD::SUBC:
13455 case ISD::SUBE:
13456 // We don't want to expand or promote these.
13457 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013458 case ISD::FP_TO_SINT:
13459 case ISD::FP_TO_UINT: {
13460 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13461
13462 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13463 return;
13464
Eli Friedman948e95a2009-05-23 09:59:16 +000013465 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013466 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013467 SDValue FIST = Vals.first, StackSlot = Vals.second;
13468 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013469 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013470 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013471 if (StackSlot.getNode() != 0)
13472 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13473 MachinePointerInfo(),
13474 false, false, false, 0));
13475 else
13476 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013477 }
13478 return;
13479 }
Michael Liao991b6a22012-10-24 04:09:32 +000013480 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013481 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13482 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013483 N->getValueType(0) != MVT::v2f32)
13484 return;
13485 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13486 N->getOperand(0));
13487 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13488 MVT::f64);
13489 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13490 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13491 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13492 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13493 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13494 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13495 return;
13496 }
Michael Liao44c2d612012-10-10 16:53:28 +000013497 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013498 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13499 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013500 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13501 Results.push_back(V);
13502 return;
13503 }
Duncan Sands1607f052008-12-01 11:39:25 +000013504 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013505 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013506 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013507 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013508 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013509 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013510 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013511 eax.getValue(2));
13512 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13513 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013514 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13515 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013516 Results.push_back(edx.getValue(1));
13517 return;
13518 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013519 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013520 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013521 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013522 bool Regs64bit = T == MVT::i128;
13523 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013524 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013525 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13526 DAG.getConstant(0, HalfT));
13527 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13528 DAG.getConstant(1, HalfT));
13529 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13530 Regs64bit ? X86::RAX : X86::EAX,
13531 cpInL, SDValue());
13532 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13533 Regs64bit ? X86::RDX : X86::EDX,
13534 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013535 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013536 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13537 DAG.getConstant(0, HalfT));
13538 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13539 DAG.getConstant(1, HalfT));
13540 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13541 Regs64bit ? X86::RBX : X86::EBX,
13542 swapInL, cpInH.getValue(1));
13543 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013544 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013545 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013546 SDValue Ops[] = { swapInH.getValue(0),
13547 N->getOperand(1),
13548 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013549 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013550 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013551 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13552 X86ISD::LCMPXCHG8_DAG;
13553 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013554 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013555 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13556 Regs64bit ? X86::RAX : X86::EAX,
13557 HalfT, Result.getValue(1));
13558 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13559 Regs64bit ? X86::RDX : X86::EDX,
13560 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013561 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013562 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013563 Results.push_back(cpOutH.getValue(1));
13564 return;
13565 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013566 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013567 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013568 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013569 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013570 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013571 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013572 case ISD::ATOMIC_LOAD_MAX:
13573 case ISD::ATOMIC_LOAD_MIN:
13574 case ISD::ATOMIC_LOAD_UMAX:
13575 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013576 case ISD::ATOMIC_SWAP: {
13577 unsigned Opc;
13578 switch (N->getOpcode()) {
13579 default: llvm_unreachable("Unexpected opcode");
13580 case ISD::ATOMIC_LOAD_ADD:
13581 Opc = X86ISD::ATOMADD64_DAG;
13582 break;
13583 case ISD::ATOMIC_LOAD_AND:
13584 Opc = X86ISD::ATOMAND64_DAG;
13585 break;
13586 case ISD::ATOMIC_LOAD_NAND:
13587 Opc = X86ISD::ATOMNAND64_DAG;
13588 break;
13589 case ISD::ATOMIC_LOAD_OR:
13590 Opc = X86ISD::ATOMOR64_DAG;
13591 break;
13592 case ISD::ATOMIC_LOAD_SUB:
13593 Opc = X86ISD::ATOMSUB64_DAG;
13594 break;
13595 case ISD::ATOMIC_LOAD_XOR:
13596 Opc = X86ISD::ATOMXOR64_DAG;
13597 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013598 case ISD::ATOMIC_LOAD_MAX:
13599 Opc = X86ISD::ATOMMAX64_DAG;
13600 break;
13601 case ISD::ATOMIC_LOAD_MIN:
13602 Opc = X86ISD::ATOMMIN64_DAG;
13603 break;
13604 case ISD::ATOMIC_LOAD_UMAX:
13605 Opc = X86ISD::ATOMUMAX64_DAG;
13606 break;
13607 case ISD::ATOMIC_LOAD_UMIN:
13608 Opc = X86ISD::ATOMUMIN64_DAG;
13609 break;
Craig Topperc0878702012-08-17 06:55:11 +000013610 case ISD::ATOMIC_SWAP:
13611 Opc = X86ISD::ATOMSWAP64_DAG;
13612 break;
13613 }
13614 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013615 return;
Craig Topperc0878702012-08-17 06:55:11 +000013616 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013617 case ISD::ATOMIC_LOAD:
13618 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013619 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013620}
13621
Evan Cheng72261582005-12-20 06:22:03 +000013622const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13623 switch (Opcode) {
13624 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013625 case X86ISD::BSF: return "X86ISD::BSF";
13626 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013627 case X86ISD::SHLD: return "X86ISD::SHLD";
13628 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013629 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013630 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013631 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013632 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013633 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013634 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013635 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013636 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13637 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13638 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013639 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013640 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013641 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013642 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013643 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013644 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013645 case X86ISD::COMI: return "X86ISD::COMI";
13646 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013647 case X86ISD::CMPM: return "X86ISD::CMPM";
13648 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013649 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013650 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013651 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13652 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013653 case X86ISD::CMOV: return "X86ISD::CMOV";
13654 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013655 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013656 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13657 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013658 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013659 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013660 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013661 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013662 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013663 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13664 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013665 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013666 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013667 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013668 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013669 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013670 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013671 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013672 case X86ISD::HADD: return "X86ISD::HADD";
13673 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013674 case X86ISD::FHADD: return "X86ISD::FHADD";
13675 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013676 case X86ISD::UMAX: return "X86ISD::UMAX";
13677 case X86ISD::UMIN: return "X86ISD::UMIN";
13678 case X86ISD::SMAX: return "X86ISD::SMAX";
13679 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013680 case X86ISD::FMAX: return "X86ISD::FMAX";
13681 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013682 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13683 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013684 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13685 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013686 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013687 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013688 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013689 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13690 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013691 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013692 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013693 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013694 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013695 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13696 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013697 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13698 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13699 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13700 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13701 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13702 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013703 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013704 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013705 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013706 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13707 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013708 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13709 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013710 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013711 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013712 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013713 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13714 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013715 case X86ISD::VSHL: return "X86ISD::VSHL";
13716 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013717 case X86ISD::VSRA: return "X86ISD::VSRA";
13718 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13719 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13720 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013721 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013722 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13723 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013724 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13725 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013726 case X86ISD::ADD: return "X86ISD::ADD";
13727 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013728 case X86ISD::ADC: return "X86ISD::ADC";
13729 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013730 case X86ISD::SMUL: return "X86ISD::SMUL";
13731 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013732 case X86ISD::INC: return "X86ISD::INC";
13733 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013734 case X86ISD::OR: return "X86ISD::OR";
13735 case X86ISD::XOR: return "X86ISD::XOR";
13736 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013737 case X86ISD::BLSI: return "X86ISD::BLSI";
13738 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13739 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013740 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013741 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013742 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013743 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013744 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013745 case X86ISD::TESTM: return "X86ISD::TESTM";
13746 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13747 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013748 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013749 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13750 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013751 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013752 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013753 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013754 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013755 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013756 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13757 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013758 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13759 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13760 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013761 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13762 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013763 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13764 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013765 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013766 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013767 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013768 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013769 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013770 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013771 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013772 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013773 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013774 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013775 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013776 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013777 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013778 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013779 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013780 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013781 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013782 case X86ISD::FMADD: return "X86ISD::FMADD";
13783 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13784 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13785 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13786 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13787 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013788 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13789 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013790 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013791 }
13792}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013793
Chris Lattnerc9addb72007-03-30 23:15:24 +000013794// isLegalAddressingMode - Return true if the addressing mode represented
13795// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013796bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013797 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013798 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013799 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013800 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013801
Chris Lattnerc9addb72007-03-30 23:15:24 +000013802 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013803 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013804 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013805
Chris Lattnerc9addb72007-03-30 23:15:24 +000013806 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013807 unsigned GVFlags =
13808 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013809
Chris Lattnerdfed4132009-07-10 07:38:24 +000013810 // If a reference to this global requires an extra load, we can't fold it.
13811 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013812 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013813
Chris Lattnerdfed4132009-07-10 07:38:24 +000013814 // If BaseGV requires a register for the PIC base, we cannot also have a
13815 // BaseReg specified.
13816 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013817 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013818
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013819 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013820 if ((M != CodeModel::Small || R != Reloc::Static) &&
13821 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013822 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013823 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013824
Chris Lattnerc9addb72007-03-30 23:15:24 +000013825 switch (AM.Scale) {
13826 case 0:
13827 case 1:
13828 case 2:
13829 case 4:
13830 case 8:
13831 // These scales always work.
13832 break;
13833 case 3:
13834 case 5:
13835 case 9:
13836 // These scales are formed with basereg+scalereg. Only accept if there is
13837 // no basereg yet.
13838 if (AM.HasBaseReg)
13839 return false;
13840 break;
13841 default: // Other stuff never works.
13842 return false;
13843 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013844
Chris Lattnerc9addb72007-03-30 23:15:24 +000013845 return true;
13846}
13847
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013848bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013849 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013850 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013851 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13852 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013853 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013854}
13855
Tim Northoverd1134482013-08-06 09:12:35 +000013856bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13857 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13858 return false;
13859
13860 if (!isTypeLegal(EVT::getEVT(Ty1)))
13861 return false;
13862
13863 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13864
13865 // Assuming the caller doesn't have a zeroext or signext return parameter,
13866 // truncation all the way down to i1 is valid.
13867 return true;
13868}
13869
Evan Cheng70e10d32012-07-17 06:53:39 +000013870bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013871 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013872}
13873
13874bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013875 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013876 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013877}
13878
Owen Andersone50ed302009-08-10 22:56:29 +000013879bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013880 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013881 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013882 unsigned NumBits1 = VT1.getSizeInBits();
13883 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013884 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013885}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013886
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013887bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013888 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013889 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013890}
13891
Owen Andersone50ed302009-08-10 22:56:29 +000013892bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013893 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013894 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013895}
13896
Evan Cheng2766a472012-12-06 19:13:27 +000013897bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13898 EVT VT1 = Val.getValueType();
13899 if (isZExtFree(VT1, VT2))
13900 return true;
13901
13902 if (Val.getOpcode() != ISD::LOAD)
13903 return false;
13904
13905 if (!VT1.isSimple() || !VT1.isInteger() ||
13906 !VT2.isSimple() || !VT2.isInteger())
13907 return false;
13908
13909 switch (VT1.getSimpleVT().SimpleTy) {
13910 default: break;
13911 case MVT::i8:
13912 case MVT::i16:
13913 case MVT::i32:
13914 // X86 has 8, 16, and 32-bit zero-extending loads.
13915 return true;
13916 }
13917
13918 return false;
13919}
13920
Stephen Line54885a2013-07-09 18:16:56 +000013921bool
13922X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13923 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13924 return false;
13925
13926 VT = VT.getScalarType();
13927
13928 if (!VT.isSimple())
13929 return false;
13930
13931 switch (VT.getSimpleVT().SimpleTy) {
13932 case MVT::f32:
13933 case MVT::f64:
13934 return true;
13935 default:
13936 break;
13937 }
13938
13939 return false;
13940}
13941
Owen Andersone50ed302009-08-10 22:56:29 +000013942bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013943 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013944 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013945}
13946
Evan Cheng60c07e12006-07-05 22:17:51 +000013947/// isShuffleMaskLegal - Targets can use this to indicate that they only
13948/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13949/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13950/// are assumed to be legal.
13951bool
Eric Christopherfd179292009-08-27 18:07:15 +000013952X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013953 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013954 if (!VT.isSimple())
13955 return false;
13956
13957 MVT SVT = VT.getSimpleVT();
13958
Eric Christophercff6f852010-04-15 01:40:20 +000013959 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013960 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013961 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013962
Nate Begemana09008b2009-10-19 02:17:23 +000013963 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013964 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013965 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013966 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013967 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013968 isPSHUFDMask(M, SVT) ||
13969 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13970 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13971 isPALIGNRMask(M, SVT, Subtarget) ||
13972 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13973 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13974 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13975 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013976}
13977
Dan Gohman7d8143f2008-04-09 20:09:42 +000013978bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013979X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013980 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013981 if (!VT.isSimple())
13982 return false;
13983
13984 MVT SVT = VT.getSimpleVT();
13985 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000013986 // FIXME: This collection of masks seems suspect.
13987 if (NumElts == 2)
13988 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000013989 if (NumElts == 4 && SVT.is128BitVector()) {
13990 return (isMOVLMask(Mask, SVT) ||
13991 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013992 isSHUFPMask(Mask, SVT) ||
13993 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000013994 }
13995 return false;
13996}
13997
13998//===----------------------------------------------------------------------===//
13999// X86 Scheduler Hooks
14000//===----------------------------------------------------------------------===//
14001
Michael Liaobe02a902012-11-08 07:28:54 +000014002/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014003static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14004 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014005 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014006
14007 const BasicBlock *BB = MBB->getBasicBlock();
14008 MachineFunction::iterator I = MBB;
14009 ++I;
14010
14011 // For the v = xbegin(), we generate
14012 //
14013 // thisMBB:
14014 // xbegin sinkMBB
14015 //
14016 // mainMBB:
14017 // eax = -1
14018 //
14019 // sinkMBB:
14020 // v = eax
14021
14022 MachineBasicBlock *thisMBB = MBB;
14023 MachineFunction *MF = MBB->getParent();
14024 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14025 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14026 MF->insert(I, mainMBB);
14027 MF->insert(I, sinkMBB);
14028
14029 // Transfer the remainder of BB and its successor edges to sinkMBB.
14030 sinkMBB->splice(sinkMBB->begin(), MBB,
14031 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14032 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14033
14034 // thisMBB:
14035 // xbegin sinkMBB
14036 // # fallthrough to mainMBB
14037 // # abortion to sinkMBB
14038 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14039 thisMBB->addSuccessor(mainMBB);
14040 thisMBB->addSuccessor(sinkMBB);
14041
14042 // mainMBB:
14043 // EAX = -1
14044 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14045 mainMBB->addSuccessor(sinkMBB);
14046
14047 // sinkMBB:
14048 // EAX is live into the sinkMBB
14049 sinkMBB->addLiveIn(X86::EAX);
14050 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14051 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14052 .addReg(X86::EAX);
14053
14054 MI->eraseFromParent();
14055 return sinkMBB;
14056}
14057
Michael Liaob118a072012-09-20 03:06:15 +000014058// Get CMPXCHG opcode for the specified data type.
14059static unsigned getCmpXChgOpcode(EVT VT) {
14060 switch (VT.getSimpleVT().SimpleTy) {
14061 case MVT::i8: return X86::LCMPXCHG8;
14062 case MVT::i16: return X86::LCMPXCHG16;
14063 case MVT::i32: return X86::LCMPXCHG32;
14064 case MVT::i64: return X86::LCMPXCHG64;
14065 default:
14066 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014067 }
Michael Liaob118a072012-09-20 03:06:15 +000014068 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014069}
14070
Michael Liaob118a072012-09-20 03:06:15 +000014071// Get LOAD opcode for the specified data type.
14072static unsigned getLoadOpcode(EVT VT) {
14073 switch (VT.getSimpleVT().SimpleTy) {
14074 case MVT::i8: return X86::MOV8rm;
14075 case MVT::i16: return X86::MOV16rm;
14076 case MVT::i32: return X86::MOV32rm;
14077 case MVT::i64: return X86::MOV64rm;
14078 default:
14079 break;
14080 }
14081 llvm_unreachable("Invalid operand size!");
14082}
14083
14084// Get opcode of the non-atomic one from the specified atomic instruction.
14085static unsigned getNonAtomicOpcode(unsigned Opc) {
14086 switch (Opc) {
14087 case X86::ATOMAND8: return X86::AND8rr;
14088 case X86::ATOMAND16: return X86::AND16rr;
14089 case X86::ATOMAND32: return X86::AND32rr;
14090 case X86::ATOMAND64: return X86::AND64rr;
14091 case X86::ATOMOR8: return X86::OR8rr;
14092 case X86::ATOMOR16: return X86::OR16rr;
14093 case X86::ATOMOR32: return X86::OR32rr;
14094 case X86::ATOMOR64: return X86::OR64rr;
14095 case X86::ATOMXOR8: return X86::XOR8rr;
14096 case X86::ATOMXOR16: return X86::XOR16rr;
14097 case X86::ATOMXOR32: return X86::XOR32rr;
14098 case X86::ATOMXOR64: return X86::XOR64rr;
14099 }
14100 llvm_unreachable("Unhandled atomic-load-op opcode!");
14101}
14102
14103// Get opcode of the non-atomic one from the specified atomic instruction with
14104// extra opcode.
14105static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14106 unsigned &ExtraOpc) {
14107 switch (Opc) {
14108 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14109 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14110 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14111 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014112 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014113 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14114 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14115 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014116 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014117 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14118 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14119 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014120 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014121 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14122 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14123 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014124 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014125 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14126 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14127 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14128 }
14129 llvm_unreachable("Unhandled atomic-load-op opcode!");
14130}
14131
14132// Get opcode of the non-atomic one from the specified atomic instruction for
14133// 64-bit data type on 32-bit target.
14134static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14135 switch (Opc) {
14136 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14137 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14138 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14139 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14140 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14141 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014142 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14143 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14144 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14145 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014146 }
14147 llvm_unreachable("Unhandled atomic-load-op opcode!");
14148}
14149
14150// Get opcode of the non-atomic one from the specified atomic instruction for
14151// 64-bit data type on 32-bit target with extra opcode.
14152static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14153 unsigned &HiOpc,
14154 unsigned &ExtraOpc) {
14155 switch (Opc) {
14156 case X86::ATOMNAND6432:
14157 ExtraOpc = X86::NOT32r;
14158 HiOpc = X86::AND32rr;
14159 return X86::AND32rr;
14160 }
14161 llvm_unreachable("Unhandled atomic-load-op opcode!");
14162}
14163
14164// Get pseudo CMOV opcode from the specified data type.
14165static unsigned getPseudoCMOVOpc(EVT VT) {
14166 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014167 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014168 case MVT::i16: return X86::CMOV_GR16;
14169 case MVT::i32: return X86::CMOV_GR32;
14170 default:
14171 break;
14172 }
14173 llvm_unreachable("Unknown CMOV opcode!");
14174}
14175
14176// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14177// They will be translated into a spin-loop or compare-exchange loop from
14178//
14179// ...
14180// dst = atomic-fetch-op MI.addr, MI.val
14181// ...
14182//
14183// to
14184//
14185// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014186// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014187// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014188// t4 = phi(t1, t3 / loop)
14189// t2 = OP MI.val, t4
14190// EAX = t4
14191// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14192// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014193// JNE loop
14194// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014195// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014196// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014197MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014198X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14199 MachineBasicBlock *MBB) const {
14200 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14201 DebugLoc DL = MI->getDebugLoc();
14202
14203 MachineFunction *MF = MBB->getParent();
14204 MachineRegisterInfo &MRI = MF->getRegInfo();
14205
14206 const BasicBlock *BB = MBB->getBasicBlock();
14207 MachineFunction::iterator I = MBB;
14208 ++I;
14209
Michael Liao13d08bf2013-01-22 21:47:38 +000014210 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014211 "Unexpected number of operands");
14212
14213 assert(MI->hasOneMemOperand() &&
14214 "Expected atomic-load-op to have one memoperand");
14215
14216 // Memory Reference
14217 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14218 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14219
14220 unsigned DstReg, SrcReg;
14221 unsigned MemOpndSlot;
14222
14223 unsigned CurOp = 0;
14224
14225 DstReg = MI->getOperand(CurOp++).getReg();
14226 MemOpndSlot = CurOp;
14227 CurOp += X86::AddrNumOperands;
14228 SrcReg = MI->getOperand(CurOp++).getReg();
14229
14230 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014231 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014232 unsigned t1 = MRI.createVirtualRegister(RC);
14233 unsigned t2 = MRI.createVirtualRegister(RC);
14234 unsigned t3 = MRI.createVirtualRegister(RC);
14235 unsigned t4 = MRI.createVirtualRegister(RC);
14236 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014237
14238 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14239 unsigned LOADOpc = getLoadOpcode(VT);
14240
14241 // For the atomic load-arith operator, we generate
14242 //
14243 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014244 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014245 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014246 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014247 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014248 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014249 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014250 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014251 // JNE mainMBB
14252 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014253 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014254
14255 MachineBasicBlock *thisMBB = MBB;
14256 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14257 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14258 MF->insert(I, mainMBB);
14259 MF->insert(I, sinkMBB);
14260
14261 MachineInstrBuilder MIB;
14262
14263 // Transfer the remainder of BB and its successor edges to sinkMBB.
14264 sinkMBB->splice(sinkMBB->begin(), MBB,
14265 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14266 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14267
14268 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014269 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14270 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14271 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14272 if (NewMO.isReg())
14273 NewMO.setIsKill(false);
14274 MIB.addOperand(NewMO);
14275 }
14276 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14277 unsigned flags = (*MMOI)->getFlags();
14278 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14279 MachineMemOperand *MMO =
14280 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14281 (*MMOI)->getSize(),
14282 (*MMOI)->getBaseAlignment(),
14283 (*MMOI)->getTBAAInfo(),
14284 (*MMOI)->getRanges());
14285 MIB.addMemOperand(MMO);
14286 }
Michael Liaob118a072012-09-20 03:06:15 +000014287
14288 thisMBB->addSuccessor(mainMBB);
14289
14290 // mainMBB:
14291 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014292
Michael Liaoc537f792013-03-06 00:17:04 +000014293 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014294 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14295 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014296
Michael Liaob118a072012-09-20 03:06:15 +000014297 unsigned Opc = MI->getOpcode();
14298 switch (Opc) {
14299 default:
14300 llvm_unreachable("Unhandled atomic-load-op opcode!");
14301 case X86::ATOMAND8:
14302 case X86::ATOMAND16:
14303 case X86::ATOMAND32:
14304 case X86::ATOMAND64:
14305 case X86::ATOMOR8:
14306 case X86::ATOMOR16:
14307 case X86::ATOMOR32:
14308 case X86::ATOMOR64:
14309 case X86::ATOMXOR8:
14310 case X86::ATOMXOR16:
14311 case X86::ATOMXOR32:
14312 case X86::ATOMXOR64: {
14313 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014314 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14315 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014316 break;
14317 }
14318 case X86::ATOMNAND8:
14319 case X86::ATOMNAND16:
14320 case X86::ATOMNAND32:
14321 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014322 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014323 unsigned NOTOpc;
14324 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014325 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14326 .addReg(t4);
14327 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014328 break;
14329 }
Michael Liao08382492012-09-21 03:00:17 +000014330 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014331 case X86::ATOMMAX16:
14332 case X86::ATOMMAX32:
14333 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014334 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014335 case X86::ATOMMIN16:
14336 case X86::ATOMMIN32:
14337 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014338 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014339 case X86::ATOMUMAX16:
14340 case X86::ATOMUMAX32:
14341 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014342 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014343 case X86::ATOMUMIN16:
14344 case X86::ATOMUMIN32:
14345 case X86::ATOMUMIN64: {
14346 unsigned CMPOpc;
14347 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14348
14349 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14350 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014351 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014352
14353 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014354 if (VT != MVT::i8) {
14355 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014356 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014357 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014358 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014359 } else {
14360 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014361 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14362 const TargetRegisterClass *RC32 =
14363 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014364 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14365 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014366 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014367
14368 unsigned Undef = MRI.createVirtualRegister(RC32);
14369 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14370
14371 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14372 .addReg(Undef)
14373 .addReg(SrcReg)
14374 .addImm(X86::sub_8bit);
14375 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14376 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014377 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014378 .addImm(X86::sub_8bit);
14379
Michael Liaoc537f792013-03-06 00:17:04 +000014380 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014381 .addReg(SrcReg32)
14382 .addReg(AccReg32);
14383
Michael Liaoc537f792013-03-06 00:17:04 +000014384 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14385 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014386 }
Michael Liaob118a072012-09-20 03:06:15 +000014387 } else {
14388 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014389 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014390 "Invalid atomic-load-op transformation!");
14391 unsigned SelOpc = getPseudoCMOVOpc(VT);
14392 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14393 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014394 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14395 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014396 .addImm(CC);
14397 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014398 // Replace the original PHI node as mainMBB is changed after CMOV
14399 // lowering.
14400 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14401 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14402 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014403 }
14404 break;
14405 }
14406 }
14407
Michael Liaoc537f792013-03-06 00:17:04 +000014408 // Copy PhyReg back from virtual register.
14409 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14410 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014411
14412 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014413 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14414 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14415 if (NewMO.isReg())
14416 NewMO.setIsKill(false);
14417 MIB.addOperand(NewMO);
14418 }
14419 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014420 MIB.setMemRefs(MMOBegin, MMOEnd);
14421
Michael Liaoc537f792013-03-06 00:17:04 +000014422 // Copy PhyReg back to virtual register.
14423 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14424 .addReg(PhyReg);
14425
Michael Liaob118a072012-09-20 03:06:15 +000014426 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14427
14428 mainMBB->addSuccessor(origMainMBB);
14429 mainMBB->addSuccessor(sinkMBB);
14430
14431 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014432 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14433 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014434 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014435
14436 MI->eraseFromParent();
14437 return sinkMBB;
14438}
14439
14440// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14441// instructions. They will be translated into a spin-loop or compare-exchange
14442// loop from
14443//
14444// ...
14445// dst = atomic-fetch-op MI.addr, MI.val
14446// ...
14447//
14448// to
14449//
14450// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014451// t1L = LOAD [MI.addr + 0]
14452// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014453// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014454// t4L = phi(t1L, t3L / loop)
14455// t4H = phi(t1H, t3H / loop)
14456// t2L = OP MI.val.lo, t4L
14457// t2H = OP MI.val.hi, t4H
14458// EAX = t4L
14459// EDX = t4H
14460// EBX = t2L
14461// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014462// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014463// t3L = EAX
14464// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014465// JNE loop
14466// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014467// dstL = t3L
14468// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014469// ...
14470MachineBasicBlock *
14471X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14472 MachineBasicBlock *MBB) const {
14473 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14474 DebugLoc DL = MI->getDebugLoc();
14475
14476 MachineFunction *MF = MBB->getParent();
14477 MachineRegisterInfo &MRI = MF->getRegInfo();
14478
14479 const BasicBlock *BB = MBB->getBasicBlock();
14480 MachineFunction::iterator I = MBB;
14481 ++I;
14482
Michael Liao13d08bf2013-01-22 21:47:38 +000014483 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014484 "Unexpected number of operands");
14485
14486 assert(MI->hasOneMemOperand() &&
14487 "Expected atomic-load-op32 to have one memoperand");
14488
14489 // Memory Reference
14490 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14491 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14492
14493 unsigned DstLoReg, DstHiReg;
14494 unsigned SrcLoReg, SrcHiReg;
14495 unsigned MemOpndSlot;
14496
14497 unsigned CurOp = 0;
14498
14499 DstLoReg = MI->getOperand(CurOp++).getReg();
14500 DstHiReg = MI->getOperand(CurOp++).getReg();
14501 MemOpndSlot = CurOp;
14502 CurOp += X86::AddrNumOperands;
14503 SrcLoReg = MI->getOperand(CurOp++).getReg();
14504 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014505
Craig Topperc9099502012-04-20 06:31:50 +000014506 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014507 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014508
Michael Liaoc537f792013-03-06 00:17:04 +000014509 unsigned t1L = MRI.createVirtualRegister(RC);
14510 unsigned t1H = MRI.createVirtualRegister(RC);
14511 unsigned t2L = MRI.createVirtualRegister(RC);
14512 unsigned t2H = MRI.createVirtualRegister(RC);
14513 unsigned t3L = MRI.createVirtualRegister(RC);
14514 unsigned t3H = MRI.createVirtualRegister(RC);
14515 unsigned t4L = MRI.createVirtualRegister(RC);
14516 unsigned t4H = MRI.createVirtualRegister(RC);
14517
Michael Liaob118a072012-09-20 03:06:15 +000014518 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14519 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014520
Michael Liaob118a072012-09-20 03:06:15 +000014521 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014522 //
Michael Liaob118a072012-09-20 03:06:15 +000014523 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014524 // t1L = LOAD [MI.addr + 0]
14525 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014526 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014527 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14528 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14529 // t2L = OP MI.val.lo, t4L
14530 // t2H = OP MI.val.hi, t4H
14531 // EBX = t2L
14532 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014533 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014534 // t3L = EAX
14535 // t3H = EDX
14536 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014537 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014538 // dstL = t3L
14539 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014540
Mon P Wang63307c32008-05-05 19:05:59 +000014541 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014542 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14543 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14544 MF->insert(I, mainMBB);
14545 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014546
Michael Liaob118a072012-09-20 03:06:15 +000014547 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014548
Michael Liaob118a072012-09-20 03:06:15 +000014549 // Transfer the remainder of BB and its successor edges to sinkMBB.
14550 sinkMBB->splice(sinkMBB->begin(), MBB,
14551 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14552 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014553
Michael Liaob118a072012-09-20 03:06:15 +000014554 // thisMBB:
14555 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014556 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014557 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014558 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14559 if (NewMO.isReg())
14560 NewMO.setIsKill(false);
14561 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014562 }
Michael Liaoc537f792013-03-06 00:17:04 +000014563 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14564 unsigned flags = (*MMOI)->getFlags();
14565 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14566 MachineMemOperand *MMO =
14567 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14568 (*MMOI)->getSize(),
14569 (*MMOI)->getBaseAlignment(),
14570 (*MMOI)->getTBAAInfo(),
14571 (*MMOI)->getRanges());
14572 MIB.addMemOperand(MMO);
14573 };
14574 MachineInstr *LowMI = MIB;
14575
14576 // Hi
14577 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14578 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14579 if (i == X86::AddrDisp) {
14580 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14581 } else {
14582 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14583 if (NewMO.isReg())
14584 NewMO.setIsKill(false);
14585 MIB.addOperand(NewMO);
14586 }
14587 }
14588 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014589
Michael Liaob118a072012-09-20 03:06:15 +000014590 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014591
Michael Liaob118a072012-09-20 03:06:15 +000014592 // mainMBB:
14593 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014594
Michael Liaoc537f792013-03-06 00:17:04 +000014595 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014596 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14597 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14598 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14599 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014600
Michael Liaob118a072012-09-20 03:06:15 +000014601 unsigned Opc = MI->getOpcode();
14602 switch (Opc) {
14603 default:
14604 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14605 case X86::ATOMAND6432:
14606 case X86::ATOMOR6432:
14607 case X86::ATOMXOR6432:
14608 case X86::ATOMADD6432:
14609 case X86::ATOMSUB6432: {
14610 unsigned HiOpc;
14611 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014612 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14613 .addReg(SrcLoReg);
14614 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14615 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014616 break;
14617 }
14618 case X86::ATOMNAND6432: {
14619 unsigned HiOpc, NOTOpc;
14620 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014621 unsigned TmpL = MRI.createVirtualRegister(RC);
14622 unsigned TmpH = MRI.createVirtualRegister(RC);
14623 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14624 .addReg(t4L);
14625 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14626 .addReg(t4H);
14627 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14628 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014629 break;
14630 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014631 case X86::ATOMMAX6432:
14632 case X86::ATOMMIN6432:
14633 case X86::ATOMUMAX6432:
14634 case X86::ATOMUMIN6432: {
14635 unsigned HiOpc;
14636 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14637 unsigned cL = MRI.createVirtualRegister(RC8);
14638 unsigned cH = MRI.createVirtualRegister(RC8);
14639 unsigned cL32 = MRI.createVirtualRegister(RC);
14640 unsigned cH32 = MRI.createVirtualRegister(RC);
14641 unsigned cc = MRI.createVirtualRegister(RC);
14642 // cl := cmp src_lo, lo
14643 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014644 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014645 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14646 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14647 // ch := cmp src_hi, hi
14648 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014649 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014650 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14651 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14652 // cc := if (src_hi == hi) ? cl : ch;
14653 if (Subtarget->hasCMov()) {
14654 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14655 .addReg(cH32).addReg(cL32);
14656 } else {
14657 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14658 .addReg(cH32).addReg(cL32)
14659 .addImm(X86::COND_E);
14660 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14661 }
14662 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14663 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014664 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14665 .addReg(SrcLoReg).addReg(t4L);
14666 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14667 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014668 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014669 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14670 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014671 .addImm(X86::COND_NE);
14672 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014673 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14674 // 2nd CMOV lowering.
14675 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014676 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14677 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014678 .addImm(X86::COND_NE);
14679 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014680 // Replace the original PHI node as mainMBB is changed after CMOV
14681 // lowering.
14682 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14683 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14684 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14685 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14686 PhiL->eraseFromParent();
14687 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014688 }
14689 break;
14690 }
Michael Liaob118a072012-09-20 03:06:15 +000014691 case X86::ATOMSWAP6432: {
14692 unsigned HiOpc;
14693 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014694 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14695 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014696 break;
14697 }
14698 }
Mon P Wang63307c32008-05-05 19:05:59 +000014699
Michael Liaob118a072012-09-20 03:06:15 +000014700 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014701 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14702 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014703 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014704 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14705 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014706
Michael Liaob118a072012-09-20 03:06:15 +000014707 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014708 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14709 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14710 if (NewMO.isReg())
14711 NewMO.setIsKill(false);
14712 MIB.addOperand(NewMO);
14713 }
Michael Liaob118a072012-09-20 03:06:15 +000014714 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014715
Michael Liaoc537f792013-03-06 00:17:04 +000014716 // Copy EDX:EAX back to t3H:t3L
14717 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14718 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14719
Michael Liaob118a072012-09-20 03:06:15 +000014720 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014721
Michael Liaob118a072012-09-20 03:06:15 +000014722 mainMBB->addSuccessor(origMainMBB);
14723 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014724
Michael Liaob118a072012-09-20 03:06:15 +000014725 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014726 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14727 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014728 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014729 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14730 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014731 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014732
Michael Liaob118a072012-09-20 03:06:15 +000014733 MI->eraseFromParent();
14734 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014735}
14736
Eric Christopherf83a5de2009-08-27 18:08:16 +000014737// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014738// or XMM0_V32I8 in AVX all of this code can be replaced with that
14739// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014740static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14741 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014742 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014743 switch (MI->getOpcode()) {
14744 default: llvm_unreachable("illegal opcode!");
14745 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14746 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14747 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14748 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14749 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14750 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14751 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14752 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014753 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014754
Craig Topper8aae8dd2012-11-10 08:57:41 +000014755 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014756 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014757
Craig Topper52ea2452012-11-10 09:25:36 +000014758 unsigned NumArgs = MI->getNumOperands();
14759 for (unsigned i = 1; i < NumArgs; ++i) {
14760 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014761 if (!(Op.isReg() && Op.isImplicit()))
14762 MIB.addOperand(Op);
14763 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014764 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014765 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14766
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014767 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014768 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014769 .addReg(X86::XMM0);
14770
Dan Gohman14152b42010-07-06 20:24:04 +000014771 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014772 return BB;
14773}
14774
Craig Topper9c7ae012012-11-10 01:23:36 +000014775// FIXME: Custom handling because TableGen doesn't support multiple implicit
14776// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014777static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14778 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014779 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014780 switch (MI->getOpcode()) {
14781 default: llvm_unreachable("illegal opcode!");
14782 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14783 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14784 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14785 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14786 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14787 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14788 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14789 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014790 }
14791
Craig Topper8aae8dd2012-11-10 08:57:41 +000014792 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014793 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014794
Craig Topper52ea2452012-11-10 09:25:36 +000014795 unsigned NumArgs = MI->getNumOperands(); // remove the results
14796 for (unsigned i = 1; i < NumArgs; ++i) {
14797 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014798 if (!(Op.isReg() && Op.isImplicit()))
14799 MIB.addOperand(Op);
14800 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014801 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014802 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14803
14804 BuildMI(*BB, MI, dl,
14805 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14806 .addReg(X86::ECX);
14807
14808 MI->eraseFromParent();
14809 return BB;
14810}
14811
Craig Topper2da36912012-11-11 22:45:02 +000014812static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14813 const TargetInstrInfo *TII,
14814 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014815 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014816
Eric Christopher228232b2010-11-30 07:20:12 +000014817 // Address into RAX/EAX, other two args into ECX, EDX.
14818 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14819 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14820 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14821 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014822 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014823
Eric Christopher228232b2010-11-30 07:20:12 +000014824 unsigned ValOps = X86::AddrNumOperands;
14825 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14826 .addReg(MI->getOperand(ValOps).getReg());
14827 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14828 .addReg(MI->getOperand(ValOps+1).getReg());
14829
14830 // The instruction doesn't actually take any operands though.
14831 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014832
Eric Christopher228232b2010-11-30 07:20:12 +000014833 MI->eraseFromParent(); // The pseudo is gone now.
14834 return BB;
14835}
14836
14837MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014838X86TargetLowering::EmitVAARG64WithCustomInserter(
14839 MachineInstr *MI,
14840 MachineBasicBlock *MBB) const {
14841 // Emit va_arg instruction on X86-64.
14842
14843 // Operands to this pseudo-instruction:
14844 // 0 ) Output : destination address (reg)
14845 // 1-5) Input : va_list address (addr, i64mem)
14846 // 6 ) ArgSize : Size (in bytes) of vararg type
14847 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14848 // 8 ) Align : Alignment of type
14849 // 9 ) EFLAGS (implicit-def)
14850
14851 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14852 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14853
14854 unsigned DestReg = MI->getOperand(0).getReg();
14855 MachineOperand &Base = MI->getOperand(1);
14856 MachineOperand &Scale = MI->getOperand(2);
14857 MachineOperand &Index = MI->getOperand(3);
14858 MachineOperand &Disp = MI->getOperand(4);
14859 MachineOperand &Segment = MI->getOperand(5);
14860 unsigned ArgSize = MI->getOperand(6).getImm();
14861 unsigned ArgMode = MI->getOperand(7).getImm();
14862 unsigned Align = MI->getOperand(8).getImm();
14863
14864 // Memory Reference
14865 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14866 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14867 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14868
14869 // Machine Information
14870 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14871 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14872 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14873 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14874 DebugLoc DL = MI->getDebugLoc();
14875
14876 // struct va_list {
14877 // i32 gp_offset
14878 // i32 fp_offset
14879 // i64 overflow_area (address)
14880 // i64 reg_save_area (address)
14881 // }
14882 // sizeof(va_list) = 24
14883 // alignment(va_list) = 8
14884
14885 unsigned TotalNumIntRegs = 6;
14886 unsigned TotalNumXMMRegs = 8;
14887 bool UseGPOffset = (ArgMode == 1);
14888 bool UseFPOffset = (ArgMode == 2);
14889 unsigned MaxOffset = TotalNumIntRegs * 8 +
14890 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14891
14892 /* Align ArgSize to a multiple of 8 */
14893 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14894 bool NeedsAlign = (Align > 8);
14895
14896 MachineBasicBlock *thisMBB = MBB;
14897 MachineBasicBlock *overflowMBB;
14898 MachineBasicBlock *offsetMBB;
14899 MachineBasicBlock *endMBB;
14900
14901 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14902 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14903 unsigned OffsetReg = 0;
14904
14905 if (!UseGPOffset && !UseFPOffset) {
14906 // If we only pull from the overflow region, we don't create a branch.
14907 // We don't need to alter control flow.
14908 OffsetDestReg = 0; // unused
14909 OverflowDestReg = DestReg;
14910
14911 offsetMBB = NULL;
14912 overflowMBB = thisMBB;
14913 endMBB = thisMBB;
14914 } else {
14915 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14916 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14917 // If not, pull from overflow_area. (branch to overflowMBB)
14918 //
14919 // thisMBB
14920 // | .
14921 // | .
14922 // offsetMBB overflowMBB
14923 // | .
14924 // | .
14925 // endMBB
14926
14927 // Registers for the PHI in endMBB
14928 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14929 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14930
14931 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14932 MachineFunction *MF = MBB->getParent();
14933 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14934 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14935 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14936
14937 MachineFunction::iterator MBBIter = MBB;
14938 ++MBBIter;
14939
14940 // Insert the new basic blocks
14941 MF->insert(MBBIter, offsetMBB);
14942 MF->insert(MBBIter, overflowMBB);
14943 MF->insert(MBBIter, endMBB);
14944
14945 // Transfer the remainder of MBB and its successor edges to endMBB.
14946 endMBB->splice(endMBB->begin(), thisMBB,
14947 llvm::next(MachineBasicBlock::iterator(MI)),
14948 thisMBB->end());
14949 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14950
14951 // Make offsetMBB and overflowMBB successors of thisMBB
14952 thisMBB->addSuccessor(offsetMBB);
14953 thisMBB->addSuccessor(overflowMBB);
14954
14955 // endMBB is a successor of both offsetMBB and overflowMBB
14956 offsetMBB->addSuccessor(endMBB);
14957 overflowMBB->addSuccessor(endMBB);
14958
14959 // Load the offset value into a register
14960 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14961 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14962 .addOperand(Base)
14963 .addOperand(Scale)
14964 .addOperand(Index)
14965 .addDisp(Disp, UseFPOffset ? 4 : 0)
14966 .addOperand(Segment)
14967 .setMemRefs(MMOBegin, MMOEnd);
14968
14969 // Check if there is enough room left to pull this argument.
14970 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14971 .addReg(OffsetReg)
14972 .addImm(MaxOffset + 8 - ArgSizeA8);
14973
14974 // Branch to "overflowMBB" if offset >= max
14975 // Fall through to "offsetMBB" otherwise
14976 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14977 .addMBB(overflowMBB);
14978 }
14979
14980 // In offsetMBB, emit code to use the reg_save_area.
14981 if (offsetMBB) {
14982 assert(OffsetReg != 0);
14983
14984 // Read the reg_save_area address.
14985 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14986 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14987 .addOperand(Base)
14988 .addOperand(Scale)
14989 .addOperand(Index)
14990 .addDisp(Disp, 16)
14991 .addOperand(Segment)
14992 .setMemRefs(MMOBegin, MMOEnd);
14993
14994 // Zero-extend the offset
14995 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14996 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14997 .addImm(0)
14998 .addReg(OffsetReg)
14999 .addImm(X86::sub_32bit);
15000
15001 // Add the offset to the reg_save_area to get the final address.
15002 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15003 .addReg(OffsetReg64)
15004 .addReg(RegSaveReg);
15005
15006 // Compute the offset for the next argument
15007 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15008 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15009 .addReg(OffsetReg)
15010 .addImm(UseFPOffset ? 16 : 8);
15011
15012 // Store it back into the va_list.
15013 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15014 .addOperand(Base)
15015 .addOperand(Scale)
15016 .addOperand(Index)
15017 .addDisp(Disp, UseFPOffset ? 4 : 0)
15018 .addOperand(Segment)
15019 .addReg(NextOffsetReg)
15020 .setMemRefs(MMOBegin, MMOEnd);
15021
15022 // Jump to endMBB
15023 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15024 .addMBB(endMBB);
15025 }
15026
15027 //
15028 // Emit code to use overflow area
15029 //
15030
15031 // Load the overflow_area address into a register.
15032 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15033 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15034 .addOperand(Base)
15035 .addOperand(Scale)
15036 .addOperand(Index)
15037 .addDisp(Disp, 8)
15038 .addOperand(Segment)
15039 .setMemRefs(MMOBegin, MMOEnd);
15040
15041 // If we need to align it, do so. Otherwise, just copy the address
15042 // to OverflowDestReg.
15043 if (NeedsAlign) {
15044 // Align the overflow address
15045 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15046 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15047
15048 // aligned_addr = (addr + (align-1)) & ~(align-1)
15049 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15050 .addReg(OverflowAddrReg)
15051 .addImm(Align-1);
15052
15053 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15054 .addReg(TmpReg)
15055 .addImm(~(uint64_t)(Align-1));
15056 } else {
15057 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15058 .addReg(OverflowAddrReg);
15059 }
15060
15061 // Compute the next overflow address after this argument.
15062 // (the overflow address should be kept 8-byte aligned)
15063 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15064 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15065 .addReg(OverflowDestReg)
15066 .addImm(ArgSizeA8);
15067
15068 // Store the new overflow address.
15069 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15070 .addOperand(Base)
15071 .addOperand(Scale)
15072 .addOperand(Index)
15073 .addDisp(Disp, 8)
15074 .addOperand(Segment)
15075 .addReg(NextAddrReg)
15076 .setMemRefs(MMOBegin, MMOEnd);
15077
15078 // If we branched, emit the PHI to the front of endMBB.
15079 if (offsetMBB) {
15080 BuildMI(*endMBB, endMBB->begin(), DL,
15081 TII->get(X86::PHI), DestReg)
15082 .addReg(OffsetDestReg).addMBB(offsetMBB)
15083 .addReg(OverflowDestReg).addMBB(overflowMBB);
15084 }
15085
15086 // Erase the pseudo instruction
15087 MI->eraseFromParent();
15088
15089 return endMBB;
15090}
15091
15092MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015093X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15094 MachineInstr *MI,
15095 MachineBasicBlock *MBB) const {
15096 // Emit code to save XMM registers to the stack. The ABI says that the
15097 // number of registers to save is given in %al, so it's theoretically
15098 // possible to do an indirect jump trick to avoid saving all of them,
15099 // however this code takes a simpler approach and just executes all
15100 // of the stores if %al is non-zero. It's less code, and it's probably
15101 // easier on the hardware branch predictor, and stores aren't all that
15102 // expensive anyway.
15103
15104 // Create the new basic blocks. One block contains all the XMM stores,
15105 // and one block is the final destination regardless of whether any
15106 // stores were performed.
15107 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15108 MachineFunction *F = MBB->getParent();
15109 MachineFunction::iterator MBBIter = MBB;
15110 ++MBBIter;
15111 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15112 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15113 F->insert(MBBIter, XMMSaveMBB);
15114 F->insert(MBBIter, EndMBB);
15115
Dan Gohman14152b42010-07-06 20:24:04 +000015116 // Transfer the remainder of MBB and its successor edges to EndMBB.
15117 EndMBB->splice(EndMBB->begin(), MBB,
15118 llvm::next(MachineBasicBlock::iterator(MI)),
15119 MBB->end());
15120 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15121
Dan Gohmand6708ea2009-08-15 01:38:56 +000015122 // The original block will now fall through to the XMM save block.
15123 MBB->addSuccessor(XMMSaveMBB);
15124 // The XMMSaveMBB will fall through to the end block.
15125 XMMSaveMBB->addSuccessor(EndMBB);
15126
15127 // Now add the instructions.
15128 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15129 DebugLoc DL = MI->getDebugLoc();
15130
15131 unsigned CountReg = MI->getOperand(0).getReg();
15132 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15133 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15134
15135 if (!Subtarget->isTargetWin64()) {
15136 // If %al is 0, branch around the XMM save block.
15137 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015138 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015139 MBB->addSuccessor(EndMBB);
15140 }
15141
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015142 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015143 // In the XMM save block, save all the XMM argument registers.
15144 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15145 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015146 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015147 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015148 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015149 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015150 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015151 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015152 .addFrameIndex(RegSaveFrameIndex)
15153 .addImm(/*Scale=*/1)
15154 .addReg(/*IndexReg=*/0)
15155 .addImm(/*Disp=*/Offset)
15156 .addReg(/*Segment=*/0)
15157 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015158 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015159 }
15160
Dan Gohman14152b42010-07-06 20:24:04 +000015161 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015162
15163 return EndMBB;
15164}
Mon P Wang63307c32008-05-05 19:05:59 +000015165
Lang Hames6e3f7e42012-02-03 01:13:49 +000015166// The EFLAGS operand of SelectItr might be missing a kill marker
15167// because there were multiple uses of EFLAGS, and ISel didn't know
15168// which to mark. Figure out whether SelectItr should have had a
15169// kill marker, and set it if it should. Returns the correct kill
15170// marker value.
15171static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15172 MachineBasicBlock* BB,
15173 const TargetRegisterInfo* TRI) {
15174 // Scan forward through BB for a use/def of EFLAGS.
15175 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15176 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015177 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015178 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015179 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015180 if (mi.definesRegister(X86::EFLAGS))
15181 break; // Should have kill-flag - update below.
15182 }
15183
15184 // If we hit the end of the block, check whether EFLAGS is live into a
15185 // successor.
15186 if (miI == BB->end()) {
15187 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15188 sEnd = BB->succ_end();
15189 sItr != sEnd; ++sItr) {
15190 MachineBasicBlock* succ = *sItr;
15191 if (succ->isLiveIn(X86::EFLAGS))
15192 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015193 }
15194 }
15195
Lang Hames6e3f7e42012-02-03 01:13:49 +000015196 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15197 // out. SelectMI should have a kill flag on EFLAGS.
15198 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015199 return true;
15200}
15201
Evan Cheng60c07e12006-07-05 22:17:51 +000015202MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015203X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015204 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015205 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15206 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015207
Chris Lattner52600972009-09-02 05:57:00 +000015208 // To "insert" a SELECT_CC instruction, we actually have to insert the
15209 // diamond control-flow pattern. The incoming instruction knows the
15210 // destination vreg to set, the condition code register to branch on, the
15211 // true/false values to select between, and a branch opcode to use.
15212 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15213 MachineFunction::iterator It = BB;
15214 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015215
Chris Lattner52600972009-09-02 05:57:00 +000015216 // thisMBB:
15217 // ...
15218 // TrueVal = ...
15219 // cmpTY ccX, r1, r2
15220 // bCC copy1MBB
15221 // fallthrough --> copy0MBB
15222 MachineBasicBlock *thisMBB = BB;
15223 MachineFunction *F = BB->getParent();
15224 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15225 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015226 F->insert(It, copy0MBB);
15227 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015228
Bill Wendling730c07e2010-06-25 20:48:10 +000015229 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15230 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015231 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15232 if (!MI->killsRegister(X86::EFLAGS) &&
15233 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15234 copy0MBB->addLiveIn(X86::EFLAGS);
15235 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015236 }
15237
Dan Gohman14152b42010-07-06 20:24:04 +000015238 // Transfer the remainder of BB and its successor edges to sinkMBB.
15239 sinkMBB->splice(sinkMBB->begin(), BB,
15240 llvm::next(MachineBasicBlock::iterator(MI)),
15241 BB->end());
15242 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15243
15244 // Add the true and fallthrough blocks as its successors.
15245 BB->addSuccessor(copy0MBB);
15246 BB->addSuccessor(sinkMBB);
15247
15248 // Create the conditional branch instruction.
15249 unsigned Opc =
15250 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15251 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15252
Chris Lattner52600972009-09-02 05:57:00 +000015253 // copy0MBB:
15254 // %FalseValue = ...
15255 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015256 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015257
Chris Lattner52600972009-09-02 05:57:00 +000015258 // sinkMBB:
15259 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15260 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015261 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15262 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015263 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15264 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15265
Dan Gohman14152b42010-07-06 20:24:04 +000015266 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015267 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015268}
15269
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015270MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015271X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15272 bool Is64Bit) const {
15273 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15274 DebugLoc DL = MI->getDebugLoc();
15275 MachineFunction *MF = BB->getParent();
15276 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15277
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015278 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015279
15280 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15281 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15282
15283 // BB:
15284 // ... [Till the alloca]
15285 // If stacklet is not large enough, jump to mallocMBB
15286 //
15287 // bumpMBB:
15288 // Allocate by subtracting from RSP
15289 // Jump to continueMBB
15290 //
15291 // mallocMBB:
15292 // Allocate by call to runtime
15293 //
15294 // continueMBB:
15295 // ...
15296 // [rest of original BB]
15297 //
15298
15299 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15300 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15301 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15302
15303 MachineRegisterInfo &MRI = MF->getRegInfo();
15304 const TargetRegisterClass *AddrRegClass =
15305 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15306
15307 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15308 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15309 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015310 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015311 sizeVReg = MI->getOperand(1).getReg(),
15312 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15313
15314 MachineFunction::iterator MBBIter = BB;
15315 ++MBBIter;
15316
15317 MF->insert(MBBIter, bumpMBB);
15318 MF->insert(MBBIter, mallocMBB);
15319 MF->insert(MBBIter, continueMBB);
15320
15321 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15322 (MachineBasicBlock::iterator(MI)), BB->end());
15323 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15324
15325 // Add code to the main basic block to check if the stack limit has been hit,
15326 // and if so, jump to mallocMBB otherwise to bumpMBB.
15327 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015328 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015329 .addReg(tmpSPVReg).addReg(sizeVReg);
15330 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015331 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015332 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015333 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15334
15335 // bumpMBB simply decreases the stack pointer, since we know the current
15336 // stacklet has enough space.
15337 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015338 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015339 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015340 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015341 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15342
15343 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015344 const uint32_t *RegMask =
15345 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015346 if (Is64Bit) {
15347 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15348 .addReg(sizeVReg);
15349 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015350 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015351 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015352 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015353 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015354 } else {
15355 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15356 .addImm(12);
15357 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15358 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015359 .addExternalSymbol("__morestack_allocate_stack_space")
15360 .addRegMask(RegMask)
15361 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015362 }
15363
15364 if (!Is64Bit)
15365 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15366 .addImm(16);
15367
15368 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15369 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15370 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15371
15372 // Set up the CFG correctly.
15373 BB->addSuccessor(bumpMBB);
15374 BB->addSuccessor(mallocMBB);
15375 mallocMBB->addSuccessor(continueMBB);
15376 bumpMBB->addSuccessor(continueMBB);
15377
15378 // Take care of the PHI nodes.
15379 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15380 MI->getOperand(0).getReg())
15381 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15382 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15383
15384 // Delete the original pseudo instruction.
15385 MI->eraseFromParent();
15386
15387 // And we're done.
15388 return continueMBB;
15389}
15390
15391MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015392X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015393 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015394 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15395 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015396
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015397 assert(!Subtarget->isTargetEnvMacho());
15398
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015399 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15400 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015401
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015402 if (Subtarget->isTargetWin64()) {
15403 if (Subtarget->isTargetCygMing()) {
15404 // ___chkstk(Mingw64):
15405 // Clobbers R10, R11, RAX and EFLAGS.
15406 // Updates RSP.
15407 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15408 .addExternalSymbol("___chkstk")
15409 .addReg(X86::RAX, RegState::Implicit)
15410 .addReg(X86::RSP, RegState::Implicit)
15411 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15412 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15413 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15414 } else {
15415 // __chkstk(MSVCRT): does not update stack pointer.
15416 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015417 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15418 .addExternalSymbol("__chkstk")
15419 .addReg(X86::RAX, RegState::Implicit)
15420 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015421 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015422 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15423 .addReg(X86::RSP)
15424 .addReg(X86::RAX);
15425 }
15426 } else {
15427 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015428 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15429
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015430 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15431 .addExternalSymbol(StackProbeSymbol)
15432 .addReg(X86::EAX, RegState::Implicit)
15433 .addReg(X86::ESP, RegState::Implicit)
15434 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15435 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15436 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15437 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015438
Dan Gohman14152b42010-07-06 20:24:04 +000015439 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015440 return BB;
15441}
Chris Lattner52600972009-09-02 05:57:00 +000015442
15443MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015444X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15445 MachineBasicBlock *BB) const {
15446 // This is pretty easy. We're taking the value that we received from
15447 // our load from the relocation, sticking it in either RDI (x86-64)
15448 // or EAX and doing an indirect call. The return value will then
15449 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015450 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015451 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015452 DebugLoc DL = MI->getDebugLoc();
15453 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015454
15455 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015456 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015457
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015458 // Get a register mask for the lowered call.
15459 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15460 // proper register mask.
15461 const uint32_t *RegMask =
15462 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015463 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015464 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15465 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015466 .addReg(X86::RIP)
15467 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015468 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015469 MI->getOperand(3).getTargetFlags())
15470 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015471 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015472 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015473 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015474 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015475 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15476 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015477 .addReg(0)
15478 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015479 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015480 MI->getOperand(3).getTargetFlags())
15481 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015482 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015483 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015484 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015485 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015486 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15487 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015488 .addReg(TII->getGlobalBaseReg(F))
15489 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015490 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015491 MI->getOperand(3).getTargetFlags())
15492 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015493 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015494 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015495 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015496 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015497
Dan Gohman14152b42010-07-06 20:24:04 +000015498 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015499 return BB;
15500}
15501
15502MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015503X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15504 MachineBasicBlock *MBB) const {
15505 DebugLoc DL = MI->getDebugLoc();
15506 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15507
15508 MachineFunction *MF = MBB->getParent();
15509 MachineRegisterInfo &MRI = MF->getRegInfo();
15510
15511 const BasicBlock *BB = MBB->getBasicBlock();
15512 MachineFunction::iterator I = MBB;
15513 ++I;
15514
15515 // Memory Reference
15516 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15517 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15518
15519 unsigned DstReg;
15520 unsigned MemOpndSlot = 0;
15521
15522 unsigned CurOp = 0;
15523
15524 DstReg = MI->getOperand(CurOp++).getReg();
15525 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15526 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15527 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15528 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15529
15530 MemOpndSlot = CurOp;
15531
15532 MVT PVT = getPointerTy();
15533 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15534 "Invalid Pointer Size!");
15535
15536 // For v = setjmp(buf), we generate
15537 //
15538 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015539 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015540 // SjLjSetup restoreMBB
15541 //
15542 // mainMBB:
15543 // v_main = 0
15544 //
15545 // sinkMBB:
15546 // v = phi(main, restore)
15547 //
15548 // restoreMBB:
15549 // v_restore = 1
15550
15551 MachineBasicBlock *thisMBB = MBB;
15552 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15553 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15554 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15555 MF->insert(I, mainMBB);
15556 MF->insert(I, sinkMBB);
15557 MF->push_back(restoreMBB);
15558
15559 MachineInstrBuilder MIB;
15560
15561 // Transfer the remainder of BB and its successor edges to sinkMBB.
15562 sinkMBB->splice(sinkMBB->begin(), MBB,
15563 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15564 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15565
15566 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015567 unsigned PtrStoreOpc = 0;
15568 unsigned LabelReg = 0;
15569 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15570 Reloc::Model RM = getTargetMachine().getRelocationModel();
15571 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15572 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015573
Michael Liao281ae5a2012-10-17 02:22:27 +000015574 // Prepare IP either in reg or imm.
15575 if (!UseImmLabel) {
15576 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15577 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15578 LabelReg = MRI.createVirtualRegister(PtrRC);
15579 if (Subtarget->is64Bit()) {
15580 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15581 .addReg(X86::RIP)
15582 .addImm(0)
15583 .addReg(0)
15584 .addMBB(restoreMBB)
15585 .addReg(0);
15586 } else {
15587 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15588 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15589 .addReg(XII->getGlobalBaseReg(MF))
15590 .addImm(0)
15591 .addReg(0)
15592 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15593 .addReg(0);
15594 }
15595 } else
15596 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015597 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015598 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015599 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15600 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015601 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015602 else
15603 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15604 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015605 if (!UseImmLabel)
15606 MIB.addReg(LabelReg);
15607 else
15608 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015609 MIB.setMemRefs(MMOBegin, MMOEnd);
15610 // Setup
15611 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15612 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015613
15614 const X86RegisterInfo *RegInfo =
15615 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015616 MIB.addRegMask(RegInfo->getNoPreservedMask());
15617 thisMBB->addSuccessor(mainMBB);
15618 thisMBB->addSuccessor(restoreMBB);
15619
15620 // mainMBB:
15621 // EAX = 0
15622 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15623 mainMBB->addSuccessor(sinkMBB);
15624
15625 // sinkMBB:
15626 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15627 TII->get(X86::PHI), DstReg)
15628 .addReg(mainDstReg).addMBB(mainMBB)
15629 .addReg(restoreDstReg).addMBB(restoreMBB);
15630
15631 // restoreMBB:
15632 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15633 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15634 restoreMBB->addSuccessor(sinkMBB);
15635
15636 MI->eraseFromParent();
15637 return sinkMBB;
15638}
15639
15640MachineBasicBlock *
15641X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15642 MachineBasicBlock *MBB) const {
15643 DebugLoc DL = MI->getDebugLoc();
15644 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15645
15646 MachineFunction *MF = MBB->getParent();
15647 MachineRegisterInfo &MRI = MF->getRegInfo();
15648
15649 // Memory Reference
15650 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15651 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15652
15653 MVT PVT = getPointerTy();
15654 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15655 "Invalid Pointer Size!");
15656
15657 const TargetRegisterClass *RC =
15658 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15659 unsigned Tmp = MRI.createVirtualRegister(RC);
15660 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015661 const X86RegisterInfo *RegInfo =
15662 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015663 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15664 unsigned SP = RegInfo->getStackRegister();
15665
15666 MachineInstrBuilder MIB;
15667
Michael Liao281ae5a2012-10-17 02:22:27 +000015668 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15669 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015670
15671 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15672 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15673
15674 // Reload FP
15675 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15676 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15677 MIB.addOperand(MI->getOperand(i));
15678 MIB.setMemRefs(MMOBegin, MMOEnd);
15679 // Reload IP
15680 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15681 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15682 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015683 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015684 else
15685 MIB.addOperand(MI->getOperand(i));
15686 }
15687 MIB.setMemRefs(MMOBegin, MMOEnd);
15688 // Reload SP
15689 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15690 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15691 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015692 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015693 else
15694 MIB.addOperand(MI->getOperand(i));
15695 }
15696 MIB.setMemRefs(MMOBegin, MMOEnd);
15697 // Jump
15698 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15699
15700 MI->eraseFromParent();
15701 return MBB;
15702}
15703
15704MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015705X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015706 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015707 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015708 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015709 case X86::TAILJMPd64:
15710 case X86::TAILJMPr64:
15711 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015712 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015713 case X86::TCRETURNdi64:
15714 case X86::TCRETURNri64:
15715 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015716 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015717 case X86::WIN_ALLOCA:
15718 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015719 case X86::SEG_ALLOCA_32:
15720 return EmitLoweredSegAlloca(MI, BB, false);
15721 case X86::SEG_ALLOCA_64:
15722 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015723 case X86::TLSCall_32:
15724 case X86::TLSCall_64:
15725 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015726 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015727 case X86::CMOV_FR32:
15728 case X86::CMOV_FR64:
15729 case X86::CMOV_V4F32:
15730 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015731 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015732 case X86::CMOV_V8F32:
15733 case X86::CMOV_V4F64:
15734 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015735 case X86::CMOV_GR16:
15736 case X86::CMOV_GR32:
15737 case X86::CMOV_RFP32:
15738 case X86::CMOV_RFP64:
15739 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015740 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015741
Dale Johannesen849f2142007-07-03 00:53:03 +000015742 case X86::FP32_TO_INT16_IN_MEM:
15743 case X86::FP32_TO_INT32_IN_MEM:
15744 case X86::FP32_TO_INT64_IN_MEM:
15745 case X86::FP64_TO_INT16_IN_MEM:
15746 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015747 case X86::FP64_TO_INT64_IN_MEM:
15748 case X86::FP80_TO_INT16_IN_MEM:
15749 case X86::FP80_TO_INT32_IN_MEM:
15750 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015751 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15752 DebugLoc DL = MI->getDebugLoc();
15753
Evan Cheng60c07e12006-07-05 22:17:51 +000015754 // Change the floating point control register to use "round towards zero"
15755 // mode when truncating to an integer value.
15756 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015757 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015758 addFrameReference(BuildMI(*BB, MI, DL,
15759 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015760
15761 // Load the old value of the high byte of the control word...
15762 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015763 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015764 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015765 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015766
15767 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015768 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015769 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015770
15771 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015772 addFrameReference(BuildMI(*BB, MI, DL,
15773 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015774
15775 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015776 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015777 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015778
15779 // Get the X86 opcode to use.
15780 unsigned Opc;
15781 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015782 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015783 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15784 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15785 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15786 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15787 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15788 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015789 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15790 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15791 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015792 }
15793
15794 X86AddressMode AM;
15795 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015796 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015797 AM.BaseType = X86AddressMode::RegBase;
15798 AM.Base.Reg = Op.getReg();
15799 } else {
15800 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015801 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015802 }
15803 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015804 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015805 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015806 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015807 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015808 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015809 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015810 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015811 AM.GV = Op.getGlobal();
15812 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015813 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015814 }
Dan Gohman14152b42010-07-06 20:24:04 +000015815 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015816 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015817
15818 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015819 addFrameReference(BuildMI(*BB, MI, DL,
15820 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015821
Dan Gohman14152b42010-07-06 20:24:04 +000015822 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015823 return BB;
15824 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015825 // String/text processing lowering.
15826 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015827 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015828 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015829 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015830 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015831 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015832 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015833 case X86::VPCMPESTRM128MEM:
15834 assert(Subtarget->hasSSE42() &&
15835 "Target must have SSE4.2 or AVX features enabled");
15836 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015837
15838 // String/text processing lowering.
15839 case X86::PCMPISTRIREG:
15840 case X86::VPCMPISTRIREG:
15841 case X86::PCMPISTRIMEM:
15842 case X86::VPCMPISTRIMEM:
15843 case X86::PCMPESTRIREG:
15844 case X86::VPCMPESTRIREG:
15845 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015846 case X86::VPCMPESTRIMEM:
15847 assert(Subtarget->hasSSE42() &&
15848 "Target must have SSE4.2 or AVX features enabled");
15849 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015850
Craig Topper8aae8dd2012-11-10 08:57:41 +000015851 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015852 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015853 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015854
Michael Liaobe02a902012-11-08 07:28:54 +000015855 // xbegin
15856 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015857 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015858
Craig Topper8aae8dd2012-11-10 08:57:41 +000015859 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015860 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015861 case X86::ATOMAND16:
15862 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015863 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015864 // Fall through
15865 case X86::ATOMOR8:
15866 case X86::ATOMOR16:
15867 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015868 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015869 // Fall through
15870 case X86::ATOMXOR16:
15871 case X86::ATOMXOR8:
15872 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015873 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015874 // Fall through
15875 case X86::ATOMNAND8:
15876 case X86::ATOMNAND16:
15877 case X86::ATOMNAND32:
15878 case X86::ATOMNAND64:
15879 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015880 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015881 case X86::ATOMMAX16:
15882 case X86::ATOMMAX32:
15883 case X86::ATOMMAX64:
15884 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015885 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015886 case X86::ATOMMIN16:
15887 case X86::ATOMMIN32:
15888 case X86::ATOMMIN64:
15889 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015890 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015891 case X86::ATOMUMAX16:
15892 case X86::ATOMUMAX32:
15893 case X86::ATOMUMAX64:
15894 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015895 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015896 case X86::ATOMUMIN16:
15897 case X86::ATOMUMIN32:
15898 case X86::ATOMUMIN64:
15899 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015900
15901 // This group does 64-bit operations on a 32-bit host.
15902 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015903 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015904 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015905 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015906 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015907 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015908 case X86::ATOMMAX6432:
15909 case X86::ATOMMIN6432:
15910 case X86::ATOMUMAX6432:
15911 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015912 case X86::ATOMSWAP6432:
15913 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015914
Dan Gohmand6708ea2009-08-15 01:38:56 +000015915 case X86::VASTART_SAVE_XMM_REGS:
15916 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015917
15918 case X86::VAARG_64:
15919 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015920
15921 case X86::EH_SjLj_SetJmp32:
15922 case X86::EH_SjLj_SetJmp64:
15923 return emitEHSjLjSetJmp(MI, BB);
15924
15925 case X86::EH_SjLj_LongJmp32:
15926 case X86::EH_SjLj_LongJmp64:
15927 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015928 }
15929}
15930
15931//===----------------------------------------------------------------------===//
15932// X86 Optimization Hooks
15933//===----------------------------------------------------------------------===//
15934
Dan Gohman475871a2008-07-27 21:46:04 +000015935void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015936 APInt &KnownZero,
15937 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015938 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015939 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015940 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015941 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015942 assert((Opc >= ISD::BUILTIN_OP_END ||
15943 Opc == ISD::INTRINSIC_WO_CHAIN ||
15944 Opc == ISD::INTRINSIC_W_CHAIN ||
15945 Opc == ISD::INTRINSIC_VOID) &&
15946 "Should use MaskedValueIsZero if you don't know whether Op"
15947 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015948
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015949 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015950 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015951 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015952 case X86ISD::ADD:
15953 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015954 case X86ISD::ADC:
15955 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015956 case X86ISD::SMUL:
15957 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015958 case X86ISD::INC:
15959 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015960 case X86ISD::OR:
15961 case X86ISD::XOR:
15962 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015963 // These nodes' second result is a boolean.
15964 if (Op.getResNo() == 0)
15965 break;
15966 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015967 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015968 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015969 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015970 case ISD::INTRINSIC_WO_CHAIN: {
15971 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15972 unsigned NumLoBits = 0;
15973 switch (IntId) {
15974 default: break;
15975 case Intrinsic::x86_sse_movmsk_ps:
15976 case Intrinsic::x86_avx_movmsk_ps_256:
15977 case Intrinsic::x86_sse2_movmsk_pd:
15978 case Intrinsic::x86_avx_movmsk_pd_256:
15979 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015980 case Intrinsic::x86_sse2_pmovmskb_128:
15981 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015982 // High bits of movmskp{s|d}, pmovmskb are known zero.
15983 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015984 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015985 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
15986 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
15987 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
15988 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
15989 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
15990 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000015991 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015992 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015993 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000015994 break;
15995 }
15996 }
15997 break;
15998 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015999 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016000}
Chris Lattner259e97c2006-01-31 19:43:35 +000016001
Owen Andersonbc146b02010-09-21 20:42:50 +000016002unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16003 unsigned Depth) const {
16004 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16005 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16006 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016007
Owen Andersonbc146b02010-09-21 20:42:50 +000016008 // Fallback case.
16009 return 1;
16010}
16011
Evan Cheng206ee9d2006-07-07 08:33:52 +000016012/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016013/// node is a GlobalAddress + offset.
16014bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016015 const GlobalValue* &GA,
16016 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016017 if (N->getOpcode() == X86ISD::Wrapper) {
16018 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016019 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016020 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016021 return true;
16022 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016023 }
Evan Chengad4196b2008-05-12 19:56:52 +000016024 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016025}
16026
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016027/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16028/// same as extracting the high 128-bit part of 256-bit vector and then
16029/// inserting the result into the low part of a new 256-bit vector
16030static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16031 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016032 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016033
16034 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016035 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016036 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16037 SVOp->getMaskElt(j) >= 0)
16038 return false;
16039
16040 return true;
16041}
16042
16043/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16044/// same as extracting the low 128-bit part of 256-bit vector and then
16045/// inserting the result into the high part of a new 256-bit vector
16046static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16047 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016048 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016049
16050 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016051 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016052 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16053 SVOp->getMaskElt(j) >= 0)
16054 return false;
16055
16056 return true;
16057}
16058
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016059/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16060static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016061 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016062 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016063 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016064 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16065 SDValue V1 = SVOp->getOperand(0);
16066 SDValue V2 = SVOp->getOperand(1);
16067 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016068 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016069
16070 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16071 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16072 //
16073 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016074 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016075 // V UNDEF BUILD_VECTOR UNDEF
16076 // \ / \ /
16077 // CONCAT_VECTOR CONCAT_VECTOR
16078 // \ /
16079 // \ /
16080 // RESULT: V + zero extended
16081 //
16082 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16083 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16084 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16085 return SDValue();
16086
16087 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16088 return SDValue();
16089
16090 // To match the shuffle mask, the first half of the mask should
16091 // be exactly the first vector, and all the rest a splat with the
16092 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016093 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016094 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16095 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16096 return SDValue();
16097
Chad Rosier3d1161e2012-01-03 21:05:52 +000016098 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16099 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016100 if (Ld->hasNUsesOfValue(1, 0)) {
16101 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16102 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16103 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016104 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16105 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016106 Ld->getMemoryVT(),
16107 Ld->getPointerInfo(),
16108 Ld->getAlignment(),
16109 false/*isVolatile*/, true/*ReadMem*/,
16110 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016111
16112 // Make sure the newly-created LOAD is in the same position as Ld in
16113 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16114 // and update uses of Ld's output chain to use the TokenFactor.
16115 if (Ld->hasAnyUseOfValue(1)) {
16116 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16117 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16118 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16119 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16120 SDValue(ResNode.getNode(), 1));
16121 }
16122
Chad Rosier42726832012-05-07 18:47:44 +000016123 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16124 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016125 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016126
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016127 // Emit a zeroed vector and insert the desired subvector on its
16128 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016129 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016130 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016131 return DCI.CombineTo(N, InsV);
16132 }
16133
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016134 //===--------------------------------------------------------------------===//
16135 // Combine some shuffles into subvector extracts and inserts:
16136 //
16137
16138 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16139 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016140 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16141 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016142 return DCI.CombineTo(N, InsV);
16143 }
16144
16145 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16146 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016147 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16148 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016149 return DCI.CombineTo(N, InsV);
16150 }
16151
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016152 return SDValue();
16153}
16154
Jim Grosbach49af3802013-10-17 02:58:06 +000016155static SDValue PerformConcatCombine(SDNode *N, SelectionDAG &DAG,
16156 TargetLowering::DAGCombinerInfo &DCI,
16157 const X86Subtarget *Subtarget) {
16158 // Creating a v8i16 from a v4i16 argument and an undef runs into trouble in
16159 // type legalization and ends up spilling to the stack. Avoid that by
16160 // creating a vector first and bitcasting the result rather than
16161 // bitcasting the source then creating the vector. Similar problems with
16162 // v8i8.
16163
16164 // No point in doing this after legalize, so early exit for that.
16165 if (!DCI.isBeforeLegalize())
16166 return SDValue();
16167
16168 EVT VT = N->getValueType(0);
16169 SDValue Op0 = N->getOperand(0);
16170 SDValue Op1 = N->getOperand(1);
16171 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16172 if (VT.getSizeInBits() == 128 && N->getNumOperands() == 2 &&
16173 Op1->getOpcode() == ISD::UNDEF &&
16174 Op0->getOpcode() == ISD::BITCAST &&
16175 !TLI.isTypeLegal(Op0->getValueType(0)) &&
16176 TLI.isTypeLegal(Op0->getOperand(0)->getValueType(0))) {
16177 SDValue Scalar = Op0->getOperand(0);
16178 // Any legal type here will be a simple value type.
16179 MVT SVT = Scalar->getValueType(0).getSimpleVT();
16180 // As a special case, bail out on MMX values.
16181 if (SVT == MVT::x86mmx)
16182 return SDValue();
16183 EVT NVT = MVT::getVectorVT(SVT, 2);
16184 SDLoc dl = SDLoc(N);
16185 SDValue Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NVT, Scalar);
16186 Res = DAG.getNode(ISD::BITCAST, dl, VT, Res);
16187 return Res;
16188 }
16189
16190 return SDValue();
16191}
16192
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016193/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016194static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016195 TargetLowering::DAGCombinerInfo &DCI,
16196 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016197 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016198 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016199
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016200 // Don't create instructions with illegal types after legalize types has run.
16201 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16202 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16203 return SDValue();
16204
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016205 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016206 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016207 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016208 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016209
16210 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016211 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016212 return SDValue();
16213
16214 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16215 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16216 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016217 SmallVector<SDValue, 16> Elts;
16218 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016219 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016220
Nate Begemanfdea31a2010-03-24 20:49:50 +000016221 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016222}
Evan Chengd880b972008-05-09 21:53:03 +000016223
Nadav Roteme12bf182013-01-04 17:35:21 +000016224/// PerformTruncateCombine - Converts truncate operation to
16225/// a sequence of vector shuffle operations.
16226/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016227static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16228 TargetLowering::DAGCombinerInfo &DCI,
16229 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016230 return SDValue();
16231}
16232
Craig Topper89f4e662012-03-20 07:17:59 +000016233/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16234/// specific shuffle of a load can be folded into a single element load.
16235/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16236/// shuffles have been customed lowered so we need to handle those here.
16237static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16238 TargetLowering::DAGCombinerInfo &DCI) {
16239 if (DCI.isBeforeLegalizeOps())
16240 return SDValue();
16241
16242 SDValue InVec = N->getOperand(0);
16243 SDValue EltNo = N->getOperand(1);
16244
16245 if (!isa<ConstantSDNode>(EltNo))
16246 return SDValue();
16247
16248 EVT VT = InVec.getValueType();
16249
16250 bool HasShuffleIntoBitcast = false;
16251 if (InVec.getOpcode() == ISD::BITCAST) {
16252 // Don't duplicate a load with other uses.
16253 if (!InVec.hasOneUse())
16254 return SDValue();
16255 EVT BCVT = InVec.getOperand(0).getValueType();
16256 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16257 return SDValue();
16258 InVec = InVec.getOperand(0);
16259 HasShuffleIntoBitcast = true;
16260 }
16261
16262 if (!isTargetShuffle(InVec.getOpcode()))
16263 return SDValue();
16264
16265 // Don't duplicate a load with other uses.
16266 if (!InVec.hasOneUse())
16267 return SDValue();
16268
16269 SmallVector<int, 16> ShuffleMask;
16270 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016271 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16272 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016273 return SDValue();
16274
16275 // Select the input vector, guarding against out of range extract vector.
16276 unsigned NumElems = VT.getVectorNumElements();
16277 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16278 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16279 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16280 : InVec.getOperand(1);
16281
16282 // If inputs to shuffle are the same for both ops, then allow 2 uses
16283 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16284
16285 if (LdNode.getOpcode() == ISD::BITCAST) {
16286 // Don't duplicate a load with other uses.
16287 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16288 return SDValue();
16289
16290 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16291 LdNode = LdNode.getOperand(0);
16292 }
16293
16294 if (!ISD::isNormalLoad(LdNode.getNode()))
16295 return SDValue();
16296
16297 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16298
16299 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16300 return SDValue();
16301
16302 if (HasShuffleIntoBitcast) {
16303 // If there's a bitcast before the shuffle, check if the load type and
16304 // alignment is valid.
16305 unsigned Align = LN0->getAlignment();
16306 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016307 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016308 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16309
16310 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16311 return SDValue();
16312 }
16313
16314 // All checks match so transform back to vector_shuffle so that DAG combiner
16315 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016316 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016317
16318 // Create shuffle node taking into account the case that its a unary shuffle
16319 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16320 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16321 InVec.getOperand(0), Shuffle,
16322 &ShuffleMask[0]);
16323 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16324 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16325 EltNo);
16326}
16327
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016328/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16329/// generation and convert it from being a bunch of shuffles and extracts
16330/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016331static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016332 TargetLowering::DAGCombinerInfo &DCI) {
16333 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16334 if (NewOp.getNode())
16335 return NewOp;
16336
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016337 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016338 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16339 // from mmx to v2i32 has a single usage.
16340 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16341 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16342 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016343 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016344 N->getValueType(0),
16345 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016346
16347 // Only operate on vectors of 4 elements, where the alternative shuffling
16348 // gets to be more expensive.
16349 if (InputVector.getValueType() != MVT::v4i32)
16350 return SDValue();
16351
16352 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16353 // single use which is a sign-extend or zero-extend, and all elements are
16354 // used.
16355 SmallVector<SDNode *, 4> Uses;
16356 unsigned ExtractedElements = 0;
16357 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16358 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16359 if (UI.getUse().getResNo() != InputVector.getResNo())
16360 return SDValue();
16361
16362 SDNode *Extract = *UI;
16363 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16364 return SDValue();
16365
16366 if (Extract->getValueType(0) != MVT::i32)
16367 return SDValue();
16368 if (!Extract->hasOneUse())
16369 return SDValue();
16370 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16371 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16372 return SDValue();
16373 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16374 return SDValue();
16375
16376 // Record which element was extracted.
16377 ExtractedElements |=
16378 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16379
16380 Uses.push_back(Extract);
16381 }
16382
16383 // If not all the elements were used, this may not be worthwhile.
16384 if (ExtractedElements != 15)
16385 return SDValue();
16386
16387 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016388 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016389
16390 // Store the value to a temporary stack slot.
16391 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016392 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16393 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016394
16395 // Replace each use (extract) with a load of the appropriate element.
16396 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16397 UE = Uses.end(); UI != UE; ++UI) {
16398 SDNode *Extract = *UI;
16399
Nadav Rotem86694292011-05-17 08:31:57 +000016400 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016401 SDValue Idx = Extract->getOperand(1);
16402 unsigned EltSize =
16403 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16404 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016405 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016406 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16407
Nadav Rotem86694292011-05-17 08:31:57 +000016408 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016409 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016410
16411 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016412 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016413 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016414 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016415
16416 // Replace the exact with the load.
16417 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16418 }
16419
16420 // The replacement was made in place; don't return anything.
16421 return SDValue();
16422}
16423
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016424/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016425static std::pair<unsigned, bool>
16426matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16427 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016428 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016429 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016430
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016431 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016432 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016433 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016434 case MVT::v32i8:
16435 case MVT::v16i16:
16436 case MVT::v8i32:
16437 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016438 NeedSplit = true;
16439 if (!Subtarget->hasAVX())
16440 return std::make_pair(0, false);
16441 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016442 case MVT::v16i8:
16443 case MVT::v8i16:
16444 case MVT::v4i32:
16445 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016446 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016447 }
16448
16449 // SSE2 has only a small subset of the operations.
16450 bool hasUnsigned = Subtarget->hasSSE41() ||
16451 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16452 bool hasSigned = Subtarget->hasSSE41() ||
16453 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16454
16455 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16456
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016457 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016458 // Check for x CC y ? x : y.
16459 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16460 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16461 switch (CC) {
16462 default: break;
16463 case ISD::SETULT:
16464 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016465 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016466 case ISD::SETUGT:
16467 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016468 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016469 case ISD::SETLT:
16470 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016471 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016472 case ISD::SETGT:
16473 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016474 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016475 }
16476 // Check for x CC y ? y : x -- a min/max with reversed arms.
16477 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16478 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16479 switch (CC) {
16480 default: break;
16481 case ISD::SETULT:
16482 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016483 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016484 case ISD::SETUGT:
16485 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016486 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016487 case ISD::SETLT:
16488 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016489 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016490 case ISD::SETGT:
16491 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016492 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016493 }
16494 }
16495
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016496 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016497}
16498
Duncan Sands6bcd2192011-09-17 16:49:39 +000016499/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16500/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016501static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016502 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016503 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016504 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016505 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016506 // Get the LHS/RHS of the select.
16507 SDValue LHS = N->getOperand(1);
16508 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016509 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016510 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016511
Dan Gohman670e5392009-09-21 18:03:22 +000016512 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016513 // instructions match the semantics of the common C idiom x<y?x:y but not
16514 // x<=y?x:y, because of how they handle negative zero (which can be
16515 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016516 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016517 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016518 (Subtarget->hasSSE2() ||
16519 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016520 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016521
Chris Lattner47b4ce82009-03-11 05:48:52 +000016522 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016523 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016524 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16525 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016526 switch (CC) {
16527 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016528 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016529 // Converting this to a min would handle NaNs incorrectly, and swapping
16530 // the operands would cause it to handle comparisons between positive
16531 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016532 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016533 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016534 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16535 break;
16536 std::swap(LHS, RHS);
16537 }
Dan Gohman670e5392009-09-21 18:03:22 +000016538 Opcode = X86ISD::FMIN;
16539 break;
16540 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016541 // Converting this to a min would handle comparisons between positive
16542 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016543 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016544 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16545 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016546 Opcode = X86ISD::FMIN;
16547 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016548 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016549 // Converting this to a min would handle both negative zeros and NaNs
16550 // incorrectly, but we can swap the operands to fix both.
16551 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016552 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016553 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016554 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016555 Opcode = X86ISD::FMIN;
16556 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016557
Dan Gohman670e5392009-09-21 18:03:22 +000016558 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016559 // Converting this to a max would handle comparisons between positive
16560 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016561 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016562 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016563 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016564 Opcode = X86ISD::FMAX;
16565 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016566 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016567 // Converting this to a max would handle NaNs incorrectly, and swapping
16568 // the operands would cause it to handle comparisons between positive
16569 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016570 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016571 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016572 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16573 break;
16574 std::swap(LHS, RHS);
16575 }
Dan Gohman670e5392009-09-21 18:03:22 +000016576 Opcode = X86ISD::FMAX;
16577 break;
16578 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016579 // Converting this to a max would handle both negative zeros and NaNs
16580 // incorrectly, but we can swap the operands to fix both.
16581 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016582 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016583 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016584 case ISD::SETGE:
16585 Opcode = X86ISD::FMAX;
16586 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016587 }
Dan Gohman670e5392009-09-21 18:03:22 +000016588 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016589 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16590 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016591 switch (CC) {
16592 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016593 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016594 // Converting this to a min would handle comparisons between positive
16595 // and negative zero incorrectly, and swapping the operands would
16596 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016597 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016598 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016599 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016600 break;
16601 std::swap(LHS, RHS);
16602 }
Dan Gohman670e5392009-09-21 18:03:22 +000016603 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016604 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016605 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016606 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016607 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016608 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16609 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016610 Opcode = X86ISD::FMIN;
16611 break;
16612 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016613 // Converting this to a min would handle both negative zeros and NaNs
16614 // incorrectly, but we can swap the operands to fix both.
16615 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016616 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016617 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016618 case ISD::SETGE:
16619 Opcode = X86ISD::FMIN;
16620 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016621
Dan Gohman670e5392009-09-21 18:03:22 +000016622 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016623 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016624 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016625 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016626 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016627 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016628 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016629 // Converting this to a max would handle comparisons between positive
16630 // and negative zero incorrectly, and swapping the operands would
16631 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016632 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016633 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016634 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016635 break;
16636 std::swap(LHS, RHS);
16637 }
Dan Gohman670e5392009-09-21 18:03:22 +000016638 Opcode = X86ISD::FMAX;
16639 break;
16640 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016641 // Converting this to a max would handle both negative zeros and NaNs
16642 // incorrectly, but we can swap the operands to fix both.
16643 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016644 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016645 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016646 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016647 Opcode = X86ISD::FMAX;
16648 break;
16649 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016650 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016651
Chris Lattner47b4ce82009-03-11 05:48:52 +000016652 if (Opcode)
16653 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016654 }
Eric Christopherfd179292009-08-27 18:07:15 +000016655
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016656 if (Subtarget->hasAVX512() && VT.isVector() &&
16657 Cond.getValueType().getVectorElementType() == MVT::i1) {
16658 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16659 // lowering on AVX-512. In this case we convert it to
16660 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16661 // The same situation for all 128 and 256-bit vectors of i8 and i16
16662 EVT OpVT = LHS.getValueType();
16663 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16664 (OpVT.getVectorElementType() == MVT::i8 ||
16665 OpVT.getVectorElementType() == MVT::i16)) {
16666 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16667 DCI.AddToWorklist(Cond.getNode());
16668 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16669 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016670 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016671 // If this is a select between two integer constants, try to do some
16672 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016673 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16674 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016675 // Don't do this for crazy integer types.
16676 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16677 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016678 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016679 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016680
Chris Lattnercee56e72009-03-13 05:53:31 +000016681 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016682 // Efficiently invertible.
16683 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16684 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16685 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16686 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016687 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016688 }
Eric Christopherfd179292009-08-27 18:07:15 +000016689
Chris Lattnerd1980a52009-03-12 06:52:53 +000016690 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016691 if (FalseC->getAPIntValue() == 0 &&
16692 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016693 if (NeedsCondInvert) // Invert the condition if needed.
16694 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16695 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016696
Chris Lattnerd1980a52009-03-12 06:52:53 +000016697 // Zero extend the condition if needed.
16698 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016699
Chris Lattnercee56e72009-03-13 05:53:31 +000016700 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016701 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016702 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016703 }
Eric Christopherfd179292009-08-27 18:07:15 +000016704
Chris Lattner97a29a52009-03-13 05:22:11 +000016705 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016706 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016707 if (NeedsCondInvert) // Invert the condition if needed.
16708 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16709 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016710
Chris Lattner97a29a52009-03-13 05:22:11 +000016711 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016712 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16713 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016714 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016715 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016716 }
Eric Christopherfd179292009-08-27 18:07:15 +000016717
Chris Lattnercee56e72009-03-13 05:53:31 +000016718 // Optimize cases that will turn into an LEA instruction. This requires
16719 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016720 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016721 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016722 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016723
Chris Lattnercee56e72009-03-13 05:53:31 +000016724 bool isFastMultiplier = false;
16725 if (Diff < 10) {
16726 switch ((unsigned char)Diff) {
16727 default: break;
16728 case 1: // result = add base, cond
16729 case 2: // result = lea base( , cond*2)
16730 case 3: // result = lea base(cond, cond*2)
16731 case 4: // result = lea base( , cond*4)
16732 case 5: // result = lea base(cond, cond*4)
16733 case 8: // result = lea base( , cond*8)
16734 case 9: // result = lea base(cond, cond*8)
16735 isFastMultiplier = true;
16736 break;
16737 }
16738 }
Eric Christopherfd179292009-08-27 18:07:15 +000016739
Chris Lattnercee56e72009-03-13 05:53:31 +000016740 if (isFastMultiplier) {
16741 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16742 if (NeedsCondInvert) // Invert the condition if needed.
16743 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16744 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016745
Chris Lattnercee56e72009-03-13 05:53:31 +000016746 // Zero extend the condition if needed.
16747 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16748 Cond);
16749 // Scale the condition by the difference.
16750 if (Diff != 1)
16751 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16752 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016753
Chris Lattnercee56e72009-03-13 05:53:31 +000016754 // Add the base if non-zero.
16755 if (FalseC->getAPIntValue() != 0)
16756 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16757 SDValue(FalseC, 0));
16758 return Cond;
16759 }
Eric Christopherfd179292009-08-27 18:07:15 +000016760 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016761 }
16762 }
Eric Christopherfd179292009-08-27 18:07:15 +000016763
Evan Cheng56f582d2012-01-04 01:41:39 +000016764 // Canonicalize max and min:
16765 // (x > y) ? x : y -> (x >= y) ? x : y
16766 // (x < y) ? x : y -> (x <= y) ? x : y
16767 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16768 // the need for an extra compare
16769 // against zero. e.g.
16770 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16771 // subl %esi, %edi
16772 // testl %edi, %edi
16773 // movl $0, %eax
16774 // cmovgl %edi, %eax
16775 // =>
16776 // xorl %eax, %eax
16777 // subl %esi, $edi
16778 // cmovsl %eax, %edi
16779 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16780 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16781 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16782 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16783 switch (CC) {
16784 default: break;
16785 case ISD::SETLT:
16786 case ISD::SETGT: {
16787 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016788 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016789 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16790 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16791 }
16792 }
16793 }
16794
Juergen Ributzkad7174712013-09-05 23:02:56 +000016795 // Early exit check
16796 if (!TLI.isTypeLegal(VT))
16797 return SDValue();
16798
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016799 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016800 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016801 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16802 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16803 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16804 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16805
16806 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16807 // left side invert the predicate to simplify logic below.
16808 SDValue Other;
16809 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16810 Other = RHS;
16811 CC = ISD::getSetCCInverse(CC, true);
16812 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16813 Other = LHS;
16814 }
16815
16816 if (Other.getNode() && Other->getNumOperands() == 2 &&
16817 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16818 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16819 SDValue CondRHS = Cond->getOperand(1);
16820
16821 // Look for a general sub with unsigned saturation first.
16822 // x >= y ? x-y : 0 --> subus x, y
16823 // x > y ? x-y : 0 --> subus x, y
16824 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16825 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16826 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16827
16828 // If the RHS is a constant we have to reverse the const canonicalization.
16829 // x > C-1 ? x+-C : 0 --> subus x, C
16830 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16831 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16832 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016833 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016834 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016835 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016836 }
16837
16838 // Another special case: If C was a sign bit, the sub has been
16839 // canonicalized into a xor.
16840 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16841 // it's safe to decanonicalize the xor?
16842 // x s< 0 ? x^C : 0 --> subus x, C
16843 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16844 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16845 isSplatVector(OpRHS.getNode())) {
16846 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16847 if (A.isSignBit())
16848 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16849 }
16850 }
16851 }
16852
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016853 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016854 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016855 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16856 unsigned Opc = ret.first;
16857 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016858
16859 if (Opc && NeedSplit) {
16860 unsigned NumElems = VT.getVectorNumElements();
16861 // Extract the LHS vectors
16862 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16863 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16864
16865 // Extract the RHS vectors
16866 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16867 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16868
16869 // Create min/max for each subvector
16870 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16871 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16872
16873 // Merge the result
16874 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16875 } else if (Opc)
16876 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16877 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016878
Michael Liaobf538412013-04-11 05:15:54 +000016879 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016880 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16881 // Check if SETCC has already been promoted
16882 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016883
16884 assert(Cond.getValueType().isVector() &&
16885 "vector select expects a vector selector!");
16886
16887 EVT IntVT = Cond.getValueType();
16888 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16889 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16890
16891 if (!TValIsAllOnes && !FValIsAllZeros) {
16892 // Try invert the condition if true value is not all 1s and false value
16893 // is not all 0s.
16894 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16895 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16896
16897 if (TValIsAllZeros || FValIsAllOnes) {
16898 SDValue CC = Cond.getOperand(2);
16899 ISD::CondCode NewCC =
16900 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16901 Cond.getOperand(0).getValueType().isInteger());
16902 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16903 std::swap(LHS, RHS);
16904 TValIsAllOnes = FValIsAllOnes;
16905 FValIsAllZeros = TValIsAllZeros;
16906 }
16907 }
16908
16909 if (TValIsAllOnes || FValIsAllZeros) {
16910 SDValue Ret;
16911
16912 if (TValIsAllOnes && FValIsAllZeros)
16913 Ret = Cond;
16914 else if (TValIsAllOnes)
16915 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16916 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16917 else if (FValIsAllZeros)
16918 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16919 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16920
16921 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16922 }
16923 }
16924
Nadav Rotemcc616562012-01-15 19:27:55 +000016925 // If we know that this node is legal then we know that it is going to be
16926 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16927 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16928 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000016929 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016930 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016931 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016932
16933 // Don't optimize vector selects that map to mask-registers.
16934 if (BitWidth == 1)
16935 return SDValue();
16936
Nadav Rotemcc616562012-01-15 19:27:55 +000016937 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16938 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16939
16940 APInt KnownZero, KnownOne;
16941 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16942 DCI.isBeforeLegalizeOps());
16943 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16944 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16945 DCI.CommitTargetLoweringOpt(TLO);
16946 }
16947
Dan Gohman475871a2008-07-27 21:46:04 +000016948 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016949}
16950
Michael Liao2a33cec2012-08-10 19:58:13 +000016951// Check whether a boolean test is testing a boolean value generated by
16952// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16953// code.
16954//
16955// Simplify the following patterns:
16956// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16957// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16958// to (Op EFLAGS Cond)
16959//
16960// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16961// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16962// to (Op EFLAGS !Cond)
16963//
16964// where Op could be BRCOND or CMOV.
16965//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016966static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016967 // Quit if not CMP and SUB with its value result used.
16968 if (Cmp.getOpcode() != X86ISD::CMP &&
16969 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16970 return SDValue();
16971
16972 // Quit if not used as a boolean value.
16973 if (CC != X86::COND_E && CC != X86::COND_NE)
16974 return SDValue();
16975
16976 // Check CMP operands. One of them should be 0 or 1 and the other should be
16977 // an SetCC or extended from it.
16978 SDValue Op1 = Cmp.getOperand(0);
16979 SDValue Op2 = Cmp.getOperand(1);
16980
16981 SDValue SetCC;
16982 const ConstantSDNode* C = 0;
16983 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016984 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016985
16986 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16987 SetCC = Op2;
16988 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16989 SetCC = Op1;
16990 else // Quit if all operands are not constants.
16991 return SDValue();
16992
Michael Liao959ddbb2013-04-11 04:43:09 +000016993 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016994 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000016995 checkAgainstTrue = true;
16996 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000016997 // Quit if the constant is neither 0 or 1.
16998 return SDValue();
16999
Michael Liao959ddbb2013-04-11 04:43:09 +000017000 bool truncatedToBoolWithAnd = false;
17001 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17002 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17003 SetCC.getOpcode() == ISD::TRUNCATE ||
17004 SetCC.getOpcode() == ISD::AND) {
17005 if (SetCC.getOpcode() == ISD::AND) {
17006 int OpIdx = -1;
17007 ConstantSDNode *CS;
17008 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17009 CS->getZExtValue() == 1)
17010 OpIdx = 1;
17011 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17012 CS->getZExtValue() == 1)
17013 OpIdx = 0;
17014 if (OpIdx == -1)
17015 break;
17016 SetCC = SetCC.getOperand(OpIdx);
17017 truncatedToBoolWithAnd = true;
17018 } else
17019 SetCC = SetCC.getOperand(0);
17020 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017021
Michael Liao7fdc66b2012-09-10 16:36:16 +000017022 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000017023 case X86ISD::SETCC_CARRY:
17024 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17025 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17026 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17027 // truncated to i1 using 'and'.
17028 if (checkAgainstTrue && !truncatedToBoolWithAnd)
17029 break;
17030 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17031 "Invalid use of SETCC_CARRY!");
17032 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000017033 case X86ISD::SETCC:
17034 // Set the condition code or opposite one if necessary.
17035 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17036 if (needOppositeCond)
17037 CC = X86::GetOppositeBranchCondition(CC);
17038 return SetCC.getOperand(1);
17039 case X86ISD::CMOV: {
17040 // Check whether false/true value has canonical one, i.e. 0 or 1.
17041 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17042 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17043 // Quit if true value is not a constant.
17044 if (!TVal)
17045 return SDValue();
17046 // Quit if false value is not a constant.
17047 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017048 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017049 // Skip 'zext' or 'trunc' node.
17050 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17051 Op.getOpcode() == ISD::TRUNCATE)
17052 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017053 // A special case for rdrand/rdseed, where 0 is set if false cond is
17054 // found.
17055 if ((Op.getOpcode() != X86ISD::RDRAND &&
17056 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017057 return SDValue();
17058 }
17059 // Quit if false value is not the constant 0 or 1.
17060 bool FValIsFalse = true;
17061 if (FVal && FVal->getZExtValue() != 0) {
17062 if (FVal->getZExtValue() != 1)
17063 return SDValue();
17064 // If FVal is 1, opposite cond is needed.
17065 needOppositeCond = !needOppositeCond;
17066 FValIsFalse = false;
17067 }
17068 // Quit if TVal is not the constant opposite of FVal.
17069 if (FValIsFalse && TVal->getZExtValue() != 1)
17070 return SDValue();
17071 if (!FValIsFalse && TVal->getZExtValue() != 0)
17072 return SDValue();
17073 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17074 if (needOppositeCond)
17075 CC = X86::GetOppositeBranchCondition(CC);
17076 return SetCC.getOperand(3);
17077 }
17078 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017079
Michael Liao7fdc66b2012-09-10 16:36:16 +000017080 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017081}
17082
Chris Lattnerd1980a52009-03-12 06:52:53 +000017083/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17084static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017085 TargetLowering::DAGCombinerInfo &DCI,
17086 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017087 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017088
Chris Lattnerd1980a52009-03-12 06:52:53 +000017089 // If the flag operand isn't dead, don't touch this CMOV.
17090 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17091 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017092
Evan Chengb5a55d92011-05-24 01:48:22 +000017093 SDValue FalseOp = N->getOperand(0);
17094 SDValue TrueOp = N->getOperand(1);
17095 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17096 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017097
Evan Chengb5a55d92011-05-24 01:48:22 +000017098 if (CC == X86::COND_E || CC == X86::COND_NE) {
17099 switch (Cond.getOpcode()) {
17100 default: break;
17101 case X86ISD::BSR:
17102 case X86ISD::BSF:
17103 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17104 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17105 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17106 }
17107 }
17108
Michael Liao2a33cec2012-08-10 19:58:13 +000017109 SDValue Flags;
17110
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017111 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017112 if (Flags.getNode() &&
17113 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017114 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017115 SDValue Ops[] = { FalseOp, TrueOp,
17116 DAG.getConstant(CC, MVT::i8), Flags };
17117 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17118 Ops, array_lengthof(Ops));
17119 }
17120
Chris Lattnerd1980a52009-03-12 06:52:53 +000017121 // If this is a select between two integer constants, try to do some
17122 // optimizations. Note that the operands are ordered the opposite of SELECT
17123 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017124 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17125 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017126 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17127 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017128 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17129 CC = X86::GetOppositeBranchCondition(CC);
17130 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017131 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017132 }
Eric Christopherfd179292009-08-27 18:07:15 +000017133
Chris Lattnerd1980a52009-03-12 06:52:53 +000017134 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017135 // This is efficient for any integer data type (including i8/i16) and
17136 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017137 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017138 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17139 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017140
Chris Lattnerd1980a52009-03-12 06:52:53 +000017141 // Zero extend the condition if needed.
17142 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017143
Chris Lattnerd1980a52009-03-12 06:52:53 +000017144 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17145 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017146 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017147 if (N->getNumValues() == 2) // Dead flag value?
17148 return DCI.CombineTo(N, Cond, SDValue());
17149 return Cond;
17150 }
Eric Christopherfd179292009-08-27 18:07:15 +000017151
Chris Lattnercee56e72009-03-13 05:53:31 +000017152 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17153 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017154 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017155 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17156 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017157
Chris Lattner97a29a52009-03-13 05:22:11 +000017158 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017159 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17160 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017161 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17162 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017163
Chris Lattner97a29a52009-03-13 05:22:11 +000017164 if (N->getNumValues() == 2) // Dead flag value?
17165 return DCI.CombineTo(N, Cond, SDValue());
17166 return Cond;
17167 }
Eric Christopherfd179292009-08-27 18:07:15 +000017168
Chris Lattnercee56e72009-03-13 05:53:31 +000017169 // Optimize cases that will turn into an LEA instruction. This requires
17170 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017171 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017172 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017173 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017174
Chris Lattnercee56e72009-03-13 05:53:31 +000017175 bool isFastMultiplier = false;
17176 if (Diff < 10) {
17177 switch ((unsigned char)Diff) {
17178 default: break;
17179 case 1: // result = add base, cond
17180 case 2: // result = lea base( , cond*2)
17181 case 3: // result = lea base(cond, cond*2)
17182 case 4: // result = lea base( , cond*4)
17183 case 5: // result = lea base(cond, cond*4)
17184 case 8: // result = lea base( , cond*8)
17185 case 9: // result = lea base(cond, cond*8)
17186 isFastMultiplier = true;
17187 break;
17188 }
17189 }
Eric Christopherfd179292009-08-27 18:07:15 +000017190
Chris Lattnercee56e72009-03-13 05:53:31 +000017191 if (isFastMultiplier) {
17192 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017193 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17194 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017195 // Zero extend the condition if needed.
17196 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17197 Cond);
17198 // Scale the condition by the difference.
17199 if (Diff != 1)
17200 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17201 DAG.getConstant(Diff, Cond.getValueType()));
17202
17203 // Add the base if non-zero.
17204 if (FalseC->getAPIntValue() != 0)
17205 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17206 SDValue(FalseC, 0));
17207 if (N->getNumValues() == 2) // Dead flag value?
17208 return DCI.CombineTo(N, Cond, SDValue());
17209 return Cond;
17210 }
Eric Christopherfd179292009-08-27 18:07:15 +000017211 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017212 }
17213 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017214
17215 // Handle these cases:
17216 // (select (x != c), e, c) -> select (x != c), e, x),
17217 // (select (x == c), c, e) -> select (x == c), x, e)
17218 // where the c is an integer constant, and the "select" is the combination
17219 // of CMOV and CMP.
17220 //
17221 // The rationale for this change is that the conditional-move from a constant
17222 // needs two instructions, however, conditional-move from a register needs
17223 // only one instruction.
17224 //
17225 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17226 // some instruction-combining opportunities. This opt needs to be
17227 // postponed as late as possible.
17228 //
17229 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17230 // the DCI.xxxx conditions are provided to postpone the optimization as
17231 // late as possible.
17232
17233 ConstantSDNode *CmpAgainst = 0;
17234 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17235 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017236 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017237
17238 if (CC == X86::COND_NE &&
17239 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17240 CC = X86::GetOppositeBranchCondition(CC);
17241 std::swap(TrueOp, FalseOp);
17242 }
17243
17244 if (CC == X86::COND_E &&
17245 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17246 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17247 DAG.getConstant(CC, MVT::i8), Cond };
17248 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17249 array_lengthof(Ops));
17250 }
17251 }
17252 }
17253
Chris Lattnerd1980a52009-03-12 06:52:53 +000017254 return SDValue();
17255}
17256
Evan Cheng0b0cd912009-03-28 05:57:29 +000017257/// PerformMulCombine - Optimize a single multiply with constant into two
17258/// in order to implement it with two cheaper instructions, e.g.
17259/// LEA + SHL, LEA + LEA.
17260static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17261 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017262 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17263 return SDValue();
17264
Owen Andersone50ed302009-08-10 22:56:29 +000017265 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017266 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017267 return SDValue();
17268
17269 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17270 if (!C)
17271 return SDValue();
17272 uint64_t MulAmt = C->getZExtValue();
17273 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17274 return SDValue();
17275
17276 uint64_t MulAmt1 = 0;
17277 uint64_t MulAmt2 = 0;
17278 if ((MulAmt % 9) == 0) {
17279 MulAmt1 = 9;
17280 MulAmt2 = MulAmt / 9;
17281 } else if ((MulAmt % 5) == 0) {
17282 MulAmt1 = 5;
17283 MulAmt2 = MulAmt / 5;
17284 } else if ((MulAmt % 3) == 0) {
17285 MulAmt1 = 3;
17286 MulAmt2 = MulAmt / 3;
17287 }
17288 if (MulAmt2 &&
17289 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017290 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017291
17292 if (isPowerOf2_64(MulAmt2) &&
17293 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17294 // If second multiplifer is pow2, issue it first. We want the multiply by
17295 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17296 // is an add.
17297 std::swap(MulAmt1, MulAmt2);
17298
17299 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017300 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017301 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017302 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017303 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017304 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017305 DAG.getConstant(MulAmt1, VT));
17306
Eric Christopherfd179292009-08-27 18:07:15 +000017307 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017308 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017309 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017310 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017311 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017312 DAG.getConstant(MulAmt2, VT));
17313
17314 // Do not add new nodes to DAG combiner worklist.
17315 DCI.CombineTo(N, NewMul, false);
17316 }
17317 return SDValue();
17318}
17319
Evan Chengad9c0a32009-12-15 00:53:42 +000017320static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17321 SDValue N0 = N->getOperand(0);
17322 SDValue N1 = N->getOperand(1);
17323 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17324 EVT VT = N0.getValueType();
17325
17326 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17327 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017328 if (VT.isInteger() && !VT.isVector() &&
17329 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017330 N0.getOperand(1).getOpcode() == ISD::Constant) {
17331 SDValue N00 = N0.getOperand(0);
17332 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17333 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17334 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17335 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17336 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17337 APInt ShAmt = N1C->getAPIntValue();
17338 Mask = Mask.shl(ShAmt);
17339 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017340 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017341 N00, DAG.getConstant(Mask, VT));
17342 }
17343 }
17344
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017345 // Hardware support for vector shifts is sparse which makes us scalarize the
17346 // vector operations in many cases. Also, on sandybridge ADD is faster than
17347 // shl.
17348 // (shl V, 1) -> add V,V
17349 if (isSplatVector(N1.getNode())) {
17350 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17351 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17352 // We shift all of the values by one. In many cases we do not have
17353 // hardware support for this operation. This is better expressed as an ADD
17354 // of two values.
17355 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017356 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017357 }
17358 }
17359
Evan Chengad9c0a32009-12-15 00:53:42 +000017360 return SDValue();
17361}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017362
Stephen Linfff96732013-07-12 15:31:36 +000017363/// \brief Returns a vector of 0s if the node in input is a vector logical
17364/// shift by a constant amount which is known to be bigger than or equal
17365/// to the vector element size in bits.
17366static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17367 const X86Subtarget *Subtarget) {
17368 EVT VT = N->getValueType(0);
17369
17370 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17371 (!Subtarget->hasInt256() ||
17372 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17373 return SDValue();
17374
17375 SDValue Amt = N->getOperand(1);
17376 SDLoc DL(N);
17377 if (isSplatVector(Amt.getNode())) {
17378 SDValue SclrAmt = Amt->getOperand(0);
17379 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17380 APInt ShiftAmt = C->getAPIntValue();
17381 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17382
17383 // SSE2/AVX2 logical shifts always return a vector of 0s
17384 // if the shift amount is bigger than or equal to
17385 // the element size. The constant shift amount will be
17386 // encoded as a 8-bit immediate.
17387 if (ShiftAmt.trunc(8).uge(MaxAmount))
17388 return getZeroVector(VT, Subtarget, DAG, DL);
17389 }
17390 }
17391
17392 return SDValue();
17393}
17394
Nadav Rotem0fb65232013-05-04 23:24:56 +000017395/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017396static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017397 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017398 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017399 if (N->getOpcode() == ISD::SHL) {
17400 SDValue V = PerformSHLCombine(N, DAG);
17401 if (V.getNode()) return V;
17402 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017403
Stephen Linfff96732013-07-12 15:31:36 +000017404 if (N->getOpcode() != ISD::SRA) {
17405 // Try to fold this logical shift into a zero vector.
17406 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17407 if (V.getNode()) return V;
17408 }
17409
Michael Liao42317cc2013-03-20 02:33:21 +000017410 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017411}
17412
Stuart Hastings865f0932011-06-03 23:53:54 +000017413// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17414// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17415// and friends. Likewise for OR -> CMPNEQSS.
17416static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17417 TargetLowering::DAGCombinerInfo &DCI,
17418 const X86Subtarget *Subtarget) {
17419 unsigned opcode;
17420
17421 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17422 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017423 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017424 SDValue N0 = N->getOperand(0);
17425 SDValue N1 = N->getOperand(1);
17426 SDValue CMP0 = N0->getOperand(1);
17427 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017428 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017429
17430 // The SETCCs should both refer to the same CMP.
17431 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17432 return SDValue();
17433
17434 SDValue CMP00 = CMP0->getOperand(0);
17435 SDValue CMP01 = CMP0->getOperand(1);
17436 EVT VT = CMP00.getValueType();
17437
17438 if (VT == MVT::f32 || VT == MVT::f64) {
17439 bool ExpectingFlags = false;
17440 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017441 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017442 !ExpectingFlags && UI != UE; ++UI)
17443 switch (UI->getOpcode()) {
17444 default:
17445 case ISD::BR_CC:
17446 case ISD::BRCOND:
17447 case ISD::SELECT:
17448 ExpectingFlags = true;
17449 break;
17450 case ISD::CopyToReg:
17451 case ISD::SIGN_EXTEND:
17452 case ISD::ZERO_EXTEND:
17453 case ISD::ANY_EXTEND:
17454 break;
17455 }
17456
17457 if (!ExpectingFlags) {
17458 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17459 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17460
17461 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17462 X86::CondCode tmp = cc0;
17463 cc0 = cc1;
17464 cc1 = tmp;
17465 }
17466
17467 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17468 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17469 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17470 X86ISD::NodeType NTOperator = is64BitFP ?
17471 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17472 // FIXME: need symbolic constants for these magic numbers.
17473 // See X86ATTInstPrinter.cpp:printSSECC().
17474 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17475 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17476 DAG.getConstant(x86cc, MVT::i8));
17477 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17478 OnesOrZeroesF);
17479 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17480 DAG.getConstant(1, MVT::i32));
17481 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17482 return OneBitOfTruth;
17483 }
17484 }
17485 }
17486 }
17487 return SDValue();
17488}
17489
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017490/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17491/// so it can be folded inside ANDNP.
17492static bool CanFoldXORWithAllOnes(const SDNode *N) {
17493 EVT VT = N->getValueType(0);
17494
17495 // Match direct AllOnes for 128 and 256-bit vectors
17496 if (ISD::isBuildVectorAllOnes(N))
17497 return true;
17498
17499 // Look through a bit convert.
17500 if (N->getOpcode() == ISD::BITCAST)
17501 N = N->getOperand(0).getNode();
17502
17503 // Sometimes the operand may come from a insert_subvector building a 256-bit
17504 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017505 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017506 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17507 SDValue V1 = N->getOperand(0);
17508 SDValue V2 = N->getOperand(1);
17509
17510 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17511 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17512 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17513 ISD::isBuildVectorAllOnes(V2.getNode()))
17514 return true;
17515 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017516
17517 return false;
17518}
17519
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017520// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17521// register. In most cases we actually compare or select YMM-sized registers
17522// and mixing the two types creates horrible code. This method optimizes
17523// some of the transition sequences.
17524static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17525 TargetLowering::DAGCombinerInfo &DCI,
17526 const X86Subtarget *Subtarget) {
17527 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017528 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017529 return SDValue();
17530
17531 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17532 N->getOpcode() == ISD::ZERO_EXTEND ||
17533 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17534
17535 SDValue Narrow = N->getOperand(0);
17536 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017537 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017538 return SDValue();
17539
17540 if (Narrow->getOpcode() != ISD::XOR &&
17541 Narrow->getOpcode() != ISD::AND &&
17542 Narrow->getOpcode() != ISD::OR)
17543 return SDValue();
17544
17545 SDValue N0 = Narrow->getOperand(0);
17546 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017547 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017548
17549 // The Left side has to be a trunc.
17550 if (N0.getOpcode() != ISD::TRUNCATE)
17551 return SDValue();
17552
17553 // The type of the truncated inputs.
17554 EVT WideVT = N0->getOperand(0)->getValueType(0);
17555 if (WideVT != VT)
17556 return SDValue();
17557
17558 // The right side has to be a 'trunc' or a constant vector.
17559 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17560 bool RHSConst = (isSplatVector(N1.getNode()) &&
17561 isa<ConstantSDNode>(N1->getOperand(0)));
17562 if (!RHSTrunc && !RHSConst)
17563 return SDValue();
17564
17565 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17566
17567 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17568 return SDValue();
17569
17570 // Set N0 and N1 to hold the inputs to the new wide operation.
17571 N0 = N0->getOperand(0);
17572 if (RHSConst) {
17573 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17574 N1->getOperand(0));
17575 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17576 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17577 } else if (RHSTrunc) {
17578 N1 = N1->getOperand(0);
17579 }
17580
17581 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017582 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017583 unsigned Opcode = N->getOpcode();
17584 switch (Opcode) {
17585 case ISD::ANY_EXTEND:
17586 return Op;
17587 case ISD::ZERO_EXTEND: {
17588 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17589 APInt Mask = APInt::getAllOnesValue(InBits);
17590 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17591 return DAG.getNode(ISD::AND, DL, VT,
17592 Op, DAG.getConstant(Mask, VT));
17593 }
17594 case ISD::SIGN_EXTEND:
17595 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17596 Op, DAG.getValueType(NarrowVT));
17597 default:
17598 llvm_unreachable("Unexpected opcode");
17599 }
17600}
17601
Nate Begemanb65c1752010-12-17 22:55:37 +000017602static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17603 TargetLowering::DAGCombinerInfo &DCI,
17604 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017605 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017606 if (DCI.isBeforeLegalizeOps())
17607 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017608
Stuart Hastings865f0932011-06-03 23:53:54 +000017609 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17610 if (R.getNode())
17611 return R;
17612
Craig Topperb6ac30a2013-08-30 06:52:21 +000017613 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017614 // BLSI is X & (-X)
17615 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017616 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017617 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017618 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017619 SDValue N0 = N->getOperand(0);
17620 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017621 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017622
Craig Topperb6ac30a2013-08-30 06:52:21 +000017623 if (Subtarget->hasBMI()) {
17624 // Check LHS for neg
17625 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17626 isZero(N0.getOperand(0)))
17627 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017628
Craig Topperb6ac30a2013-08-30 06:52:21 +000017629 // Check RHS for neg
17630 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17631 isZero(N1.getOperand(0)))
17632 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017633
Craig Topperb6ac30a2013-08-30 06:52:21 +000017634 // Check LHS for X-1
17635 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17636 isAllOnes(N0.getOperand(1)))
17637 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017638
Craig Topperb6ac30a2013-08-30 06:52:21 +000017639 // Check RHS for X-1
17640 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17641 isAllOnes(N1.getOperand(1)))
17642 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17643 }
17644
17645 if (Subtarget->hasBMI2()) {
17646 // Check for (and (add (shl 1, Y), -1), X)
17647 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17648 SDValue N00 = N0.getOperand(0);
17649 if (N00.getOpcode() == ISD::SHL) {
17650 SDValue N001 = N00.getOperand(1);
17651 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17652 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17653 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017654 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017655 }
17656 }
17657
17658 // Check for (and X, (add (shl 1, Y), -1))
17659 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17660 SDValue N10 = N1.getOperand(0);
17661 if (N10.getOpcode() == ISD::SHL) {
17662 SDValue N101 = N10.getOperand(1);
17663 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17664 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17665 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017666 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017667 }
17668 }
17669 }
Craig Topperb4c94572011-10-21 06:55:01 +000017670
Craig Topperfafe4bb2013-10-03 04:16:45 +000017671 // Check for BEXTR.
17672 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17673 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17674 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17675 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17676 if (MaskNode && ShiftNode) {
17677 uint64_t Mask = MaskNode->getZExtValue();
17678 uint64_t Shift = ShiftNode->getZExtValue();
17679 if (isMask_64(Mask)) {
17680 uint64_t MaskSize = CountPopulation_64(Mask);
17681 if (Shift + MaskSize <= VT.getSizeInBits())
17682 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17683 DAG.getConstant(Shift | (MaskSize << 8), VT));
17684 }
17685 }
17686 } // BEXTR
17687
Craig Topper54a11172011-10-14 07:06:56 +000017688 return SDValue();
17689 }
17690
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017691 // Want to form ANDNP nodes:
17692 // 1) In the hopes of then easily combining them with OR and AND nodes
17693 // to form PBLEND/PSIGN.
17694 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017695 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017696 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017697
Nate Begemanb65c1752010-12-17 22:55:37 +000017698 SDValue N0 = N->getOperand(0);
17699 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017700 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017701
Nate Begemanb65c1752010-12-17 22:55:37 +000017702 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017703 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017704 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17705 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017706 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017707
17708 // Check RHS for vnot
17709 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017710 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17711 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017712 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017713
Nate Begemanb65c1752010-12-17 22:55:37 +000017714 return SDValue();
17715}
17716
Evan Cheng760d1942010-01-04 21:22:48 +000017717static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017718 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017719 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017720 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017721 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017722 return SDValue();
17723
Stuart Hastings865f0932011-06-03 23:53:54 +000017724 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17725 if (R.getNode())
17726 return R;
17727
Evan Cheng760d1942010-01-04 21:22:48 +000017728 SDValue N0 = N->getOperand(0);
17729 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017730
Nate Begemanb65c1752010-12-17 22:55:37 +000017731 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017732 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017733 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017734 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017735 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017736
Craig Topper1666cb62011-11-19 07:07:26 +000017737 // Canonicalize pandn to RHS
17738 if (N0.getOpcode() == X86ISD::ANDNP)
17739 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017740 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017741 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17742 SDValue Mask = N1.getOperand(0);
17743 SDValue X = N1.getOperand(1);
17744 SDValue Y;
17745 if (N0.getOperand(0) == Mask)
17746 Y = N0.getOperand(1);
17747 if (N0.getOperand(1) == Mask)
17748 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017749
Craig Topper1666cb62011-11-19 07:07:26 +000017750 // Check to see if the mask appeared in both the AND and ANDNP and
17751 if (!Y.getNode())
17752 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017753
Craig Topper1666cb62011-11-19 07:07:26 +000017754 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017755 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017756 if (Mask.getOpcode() == ISD::BITCAST)
17757 Mask = Mask.getOperand(0);
17758 if (X.getOpcode() == ISD::BITCAST)
17759 X = X.getOperand(0);
17760 if (Y.getOpcode() == ISD::BITCAST)
17761 Y = Y.getOperand(0);
17762
Craig Topper1666cb62011-11-19 07:07:26 +000017763 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017764
Craig Toppered2e13d2012-01-22 19:15:14 +000017765 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017766 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17767 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017768 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017769 unsigned SraAmt = ~0;
17770 if (Mask.getOpcode() == ISD::SRA) {
17771 SDValue Amt = Mask.getOperand(1);
17772 if (isSplatVector(Amt.getNode())) {
17773 SDValue SclrAmt = Amt->getOperand(0);
17774 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17775 SraAmt = C->getZExtValue();
17776 }
17777 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17778 SDValue SraC = Mask.getOperand(1);
17779 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17780 }
Craig Topper1666cb62011-11-19 07:07:26 +000017781 if ((SraAmt + 1) != EltBits)
17782 return SDValue();
17783
Andrew Trickac6d9be2013-05-25 02:42:55 +000017784 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017785
17786 // Now we know we at least have a plendvb with the mask val. See if
17787 // we can form a psignb/w/d.
17788 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017789 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17790 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017791 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17792 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17793 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017794 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017795 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017796 }
17797 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017798 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017799 return SDValue();
17800
17801 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17802
17803 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17804 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17805 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017806 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017807 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017808 }
17809 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017810
Craig Topper1666cb62011-11-19 07:07:26 +000017811 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17812 return SDValue();
17813
Nate Begemanb65c1752010-12-17 22:55:37 +000017814 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017815 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17816 std::swap(N0, N1);
17817 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17818 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017819 if (!N0.hasOneUse() || !N1.hasOneUse())
17820 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017821
17822 SDValue ShAmt0 = N0.getOperand(1);
17823 if (ShAmt0.getValueType() != MVT::i8)
17824 return SDValue();
17825 SDValue ShAmt1 = N1.getOperand(1);
17826 if (ShAmt1.getValueType() != MVT::i8)
17827 return SDValue();
17828 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17829 ShAmt0 = ShAmt0.getOperand(0);
17830 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17831 ShAmt1 = ShAmt1.getOperand(0);
17832
Andrew Trickac6d9be2013-05-25 02:42:55 +000017833 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017834 unsigned Opc = X86ISD::SHLD;
17835 SDValue Op0 = N0.getOperand(0);
17836 SDValue Op1 = N1.getOperand(0);
17837 if (ShAmt0.getOpcode() == ISD::SUB) {
17838 Opc = X86ISD::SHRD;
17839 std::swap(Op0, Op1);
17840 std::swap(ShAmt0, ShAmt1);
17841 }
17842
Evan Cheng8b1190a2010-04-28 01:18:01 +000017843 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017844 if (ShAmt1.getOpcode() == ISD::SUB) {
17845 SDValue Sum = ShAmt1.getOperand(0);
17846 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017847 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17848 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17849 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17850 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017851 return DAG.getNode(Opc, DL, VT,
17852 Op0, Op1,
17853 DAG.getNode(ISD::TRUNCATE, DL,
17854 MVT::i8, ShAmt0));
17855 }
17856 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17857 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17858 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017859 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017860 return DAG.getNode(Opc, DL, VT,
17861 N0.getOperand(0), N1.getOperand(0),
17862 DAG.getNode(ISD::TRUNCATE, DL,
17863 MVT::i8, ShAmt0));
17864 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017865
Evan Cheng760d1942010-01-04 21:22:48 +000017866 return SDValue();
17867}
17868
Manman Ren92363622012-06-07 22:39:10 +000017869// Generate NEG and CMOV for integer abs.
17870static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17871 EVT VT = N->getValueType(0);
17872
17873 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17874 // 8-bit integer abs to NEG and CMOV.
17875 if (VT.isInteger() && VT.getSizeInBits() == 8)
17876 return SDValue();
17877
17878 SDValue N0 = N->getOperand(0);
17879 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017880 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017881
17882 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17883 // and change it to SUB and CMOV.
17884 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17885 N0.getOpcode() == ISD::ADD &&
17886 N0.getOperand(1) == N1 &&
17887 N1.getOpcode() == ISD::SRA &&
17888 N1.getOperand(0) == N0.getOperand(0))
17889 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17890 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17891 // Generate SUB & CMOV.
17892 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17893 DAG.getConstant(0, VT), N0.getOperand(0));
17894
17895 SDValue Ops[] = { N0.getOperand(0), Neg,
17896 DAG.getConstant(X86::COND_GE, MVT::i8),
17897 SDValue(Neg.getNode(), 1) };
17898 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17899 Ops, array_lengthof(Ops));
17900 }
17901 return SDValue();
17902}
17903
Craig Topper3738ccd2011-12-27 06:27:23 +000017904// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017905static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17906 TargetLowering::DAGCombinerInfo &DCI,
17907 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017908 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017909 if (DCI.isBeforeLegalizeOps())
17910 return SDValue();
17911
Manman Ren45d53b82012-06-08 18:58:26 +000017912 if (Subtarget->hasCMov()) {
17913 SDValue RV = performIntegerAbsCombine(N, DAG);
17914 if (RV.getNode())
17915 return RV;
17916 }
Manman Ren92363622012-06-07 22:39:10 +000017917
17918 // Try forming BMI if it is available.
17919 if (!Subtarget->hasBMI())
17920 return SDValue();
17921
Craig Topperb4c94572011-10-21 06:55:01 +000017922 if (VT != MVT::i32 && VT != MVT::i64)
17923 return SDValue();
17924
Craig Topper3738ccd2011-12-27 06:27:23 +000017925 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17926
Craig Topperb4c94572011-10-21 06:55:01 +000017927 // Create BLSMSK instructions by finding X ^ (X-1)
17928 SDValue N0 = N->getOperand(0);
17929 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017930 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017931
17932 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17933 isAllOnes(N0.getOperand(1)))
17934 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17935
17936 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17937 isAllOnes(N1.getOperand(1)))
17938 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17939
17940 return SDValue();
17941}
17942
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017943/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17944static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017945 TargetLowering::DAGCombinerInfo &DCI,
17946 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017947 LoadSDNode *Ld = cast<LoadSDNode>(N);
17948 EVT RegVT = Ld->getValueType(0);
17949 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017950 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017951 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017952 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017953
Michael Liaod4584c92013-03-25 23:50:10 +000017954 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017955 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017956 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017957 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017958 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017959 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017960 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017961 if (NumElems < 2)
17962 return SDValue();
17963
Nadav Rotem48177ac2013-01-18 23:10:30 +000017964 SDValue Ptr = Ld->getBasePtr();
17965 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17966
17967 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17968 NumElems/2);
17969 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17970 Ld->getPointerInfo(), Ld->isVolatile(),
17971 Ld->isNonTemporal(), Ld->isInvariant(),
17972 Alignment);
17973 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17974 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17975 Ld->getPointerInfo(), Ld->isVolatile(),
17976 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017977 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017978 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17979 Load1.getValue(1),
17980 Load2.getValue(1));
17981
17982 SDValue NewVec = DAG.getUNDEF(RegVT);
17983 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17984 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17985 return DCI.CombineTo(N, NewVec, TF, true);
17986 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017987
Nadav Rotemca6f2962011-09-18 19:00:23 +000017988 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017989 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17990 // expansion is still better than scalar code.
17991 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17992 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017993 // TODO: It is possible to support ZExt by zeroing the undef values
17994 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000017995 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17996 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017997 assert(MemVT != RegVT && "Cannot extend to the same type");
17998 assert(MemVT.isVector() && "Must load a vector from memory");
17999
18000 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018001 unsigned MemSz = MemVT.getSizeInBits();
18002 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018003
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018004 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18005 return SDValue();
18006
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018007 // All sizes must be a power of two.
18008 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18009 return SDValue();
18010
18011 // Attempt to load the original value using scalar loads.
18012 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018013 MVT SclrLoadTy = MVT::i8;
18014 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18015 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18016 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018017 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018018 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018019 }
18020 }
18021
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018022 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18023 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18024 (64 <= MemSz))
18025 SclrLoadTy = MVT::f64;
18026
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018027 // Calculate the number of scalar loads that we need to perform
18028 // in order to load our vector from memory.
18029 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018030 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18031 return SDValue();
18032
18033 unsigned loadRegZize = RegSz;
18034 if (Ext == ISD::SEXTLOAD && RegSz == 256)
18035 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018036
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018037 // Represent our vector as a sequence of elements which are the
18038 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018039 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018040 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018041
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018042 // Represent the data using the same element type that is stored in
18043 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018044 EVT WideVecVT =
18045 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018046 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018047
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018048 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18049 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018050
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018051 // We can't shuffle using an illegal type.
18052 if (!TLI.isTypeLegal(WideVecVT))
18053 return SDValue();
18054
18055 SmallVector<SDValue, 8> Chains;
18056 SDValue Ptr = Ld->getBasePtr();
18057 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18058 TLI.getPointerTy());
18059 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18060
18061 for (unsigned i = 0; i < NumLoads; ++i) {
18062 // Perform a single load.
18063 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18064 Ptr, Ld->getPointerInfo(),
18065 Ld->isVolatile(), Ld->isNonTemporal(),
18066 Ld->isInvariant(), Ld->getAlignment());
18067 Chains.push_back(ScalarLoad.getValue(1));
18068 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18069 // another round of DAGCombining.
18070 if (i == 0)
18071 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18072 else
18073 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18074 ScalarLoad, DAG.getIntPtrConstant(i));
18075
18076 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18077 }
18078
18079 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18080 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018081
18082 // Bitcast the loaded value to a vector of the original element type, in
18083 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018084 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018085 unsigned SizeRatio = RegSz/MemSz;
18086
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018087 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018088 // If we have SSE4.1 we can directly emit a VSEXT node.
18089 if (Subtarget->hasSSE41()) {
18090 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18091 return DCI.CombineTo(N, Sext, TF, true);
18092 }
18093
18094 // Otherwise we'll shuffle the small elements in the high bits of the
18095 // larger type and perform an arithmetic shift. If the shift is not legal
18096 // it's better to scalarize.
18097 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18098 return SDValue();
18099
18100 // Redistribute the loaded elements into the different locations.
18101 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18102 for (unsigned i = 0; i != NumElems; ++i)
18103 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18104
18105 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18106 DAG.getUNDEF(WideVecVT),
18107 &ShuffleVec[0]);
18108
18109 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18110
18111 // Build the arithmetic shift.
18112 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18113 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018114 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18115 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018116
18117 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018118 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018119
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018120 // Redistribute the loaded elements into the different locations.
18121 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018122 for (unsigned i = 0; i != NumElems; ++i)
18123 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018124
18125 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018126 DAG.getUNDEF(WideVecVT),
18127 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018128
18129 // Bitcast to the requested type.
18130 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18131 // Replace the original load with the new sequence
18132 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018133 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018134 }
18135
18136 return SDValue();
18137}
18138
Chris Lattner149a4e52008-02-22 02:09:43 +000018139/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018140static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018141 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018142 StoreSDNode *St = cast<StoreSDNode>(N);
18143 EVT VT = St->getValue().getValueType();
18144 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018145 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018146 SDValue StoredVal = St->getOperand(1);
18147 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18148
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018149 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018150 // On Sandy Bridge, 256-bit memory operations are executed by two
18151 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18152 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018153 unsigned Alignment = St->getAlignment();
18154 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018155 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018156 StVT == VT && !IsAligned) {
18157 unsigned NumElems = VT.getVectorNumElements();
18158 if (NumElems < 2)
18159 return SDValue();
18160
18161 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18162 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018163
18164 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18165 SDValue Ptr0 = St->getBasePtr();
18166 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18167
18168 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18169 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018170 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018171 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18172 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018173 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018174 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018175 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18176 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018177
18178 // Optimize trunc store (of multiple scalars) to shuffle and store.
18179 // First, pack all of the elements in one place. Next, store to memory
18180 // in fewer chunks.
18181 if (St->isTruncatingStore() && VT.isVector()) {
18182 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18183 unsigned NumElems = VT.getVectorNumElements();
18184 assert(StVT != VT && "Cannot truncate to the same type");
18185 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18186 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18187
18188 // From, To sizes and ElemCount must be pow of two
18189 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018190 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018191 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018192 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018193
Nadav Rotem614061b2011-08-10 19:30:14 +000018194 unsigned SizeRatio = FromSz / ToSz;
18195
18196 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18197
18198 // Create a type on which we perform the shuffle
18199 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18200 StVT.getScalarType(), NumElems*SizeRatio);
18201
18202 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18203
18204 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18205 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018206 for (unsigned i = 0; i != NumElems; ++i)
18207 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018208
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018209 // Can't shuffle using an illegal type.
18210 if (!TLI.isTypeLegal(WideVecVT))
18211 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018212
18213 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018214 DAG.getUNDEF(WideVecVT),
18215 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018216 // At this point all of the data is stored at the bottom of the
18217 // register. We now need to save it to mem.
18218
18219 // Find the largest store unit
18220 MVT StoreType = MVT::i8;
18221 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18222 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18223 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018224 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018225 StoreType = Tp;
18226 }
18227
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018228 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18229 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18230 (64 <= NumElems * ToSz))
18231 StoreType = MVT::f64;
18232
Nadav Rotem614061b2011-08-10 19:30:14 +000018233 // Bitcast the original vector into a vector of store-size units
18234 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018235 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018236 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18237 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18238 SmallVector<SDValue, 8> Chains;
18239 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18240 TLI.getPointerTy());
18241 SDValue Ptr = St->getBasePtr();
18242
18243 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018244 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018245 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18246 StoreType, ShuffWide,
18247 DAG.getIntPtrConstant(i));
18248 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18249 St->getPointerInfo(), St->isVolatile(),
18250 St->isNonTemporal(), St->getAlignment());
18251 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18252 Chains.push_back(Ch);
18253 }
18254
18255 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18256 Chains.size());
18257 }
18258
Chris Lattner149a4e52008-02-22 02:09:43 +000018259 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18260 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018261 // A preferable solution to the general problem is to figure out the right
18262 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018263
18264 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018265 if (VT.getSizeInBits() != 64)
18266 return SDValue();
18267
Devang Patel578efa92009-06-05 21:57:13 +000018268 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018269 bool NoImplicitFloatOps = F->getAttributes().
18270 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018271 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018272 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018273 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018274 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018275 isa<LoadSDNode>(St->getValue()) &&
18276 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18277 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018278 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018279 LoadSDNode *Ld = 0;
18280 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018281 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018282 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018283 // Must be a store of a load. We currently handle two cases: the load
18284 // is a direct child, and it's under an intervening TokenFactor. It is
18285 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018286 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018287 Ld = cast<LoadSDNode>(St->getChain());
18288 else if (St->getValue().hasOneUse() &&
18289 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018290 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018291 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018292 TokenFactorIndex = i;
18293 Ld = cast<LoadSDNode>(St->getValue());
18294 } else
18295 Ops.push_back(ChainVal->getOperand(i));
18296 }
18297 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018298
Evan Cheng536e6672009-03-12 05:59:15 +000018299 if (!Ld || !ISD::isNormalLoad(Ld))
18300 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018301
Evan Cheng536e6672009-03-12 05:59:15 +000018302 // If this is not the MMX case, i.e. we are just turning i64 load/store
18303 // into f64 load/store, avoid the transformation if there are multiple
18304 // uses of the loaded value.
18305 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18306 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018307
Andrew Trickac6d9be2013-05-25 02:42:55 +000018308 SDLoc LdDL(Ld);
18309 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018310 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18311 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18312 // pair instead.
18313 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018314 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018315 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18316 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018317 Ld->isNonTemporal(), Ld->isInvariant(),
18318 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018319 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018320 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018321 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018322 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018323 Ops.size());
18324 }
Evan Cheng536e6672009-03-12 05:59:15 +000018325 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018326 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018327 St->isVolatile(), St->isNonTemporal(),
18328 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018329 }
Evan Cheng536e6672009-03-12 05:59:15 +000018330
18331 // Otherwise, lower to two pairs of 32-bit loads / stores.
18332 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018333 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18334 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018335
Owen Anderson825b72b2009-08-11 20:47:22 +000018336 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018337 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018338 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018339 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018340 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018341 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018342 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018343 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018344 MinAlign(Ld->getAlignment(), 4));
18345
18346 SDValue NewChain = LoLd.getValue(1);
18347 if (TokenFactorIndex != -1) {
18348 Ops.push_back(LoLd);
18349 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018350 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018351 Ops.size());
18352 }
18353
18354 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018355 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18356 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018357
18358 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018359 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018360 St->isVolatile(), St->isNonTemporal(),
18361 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018362 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018363 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018364 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018365 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018366 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018367 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018368 }
Dan Gohman475871a2008-07-27 21:46:04 +000018369 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018370}
18371
Duncan Sands17470be2011-09-22 20:15:48 +000018372/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18373/// and return the operands for the horizontal operation in LHS and RHS. A
18374/// horizontal operation performs the binary operation on successive elements
18375/// of its first operand, then on successive elements of its second operand,
18376/// returning the resulting values in a vector. For example, if
18377/// A = < float a0, float a1, float a2, float a3 >
18378/// and
18379/// B = < float b0, float b1, float b2, float b3 >
18380/// then the result of doing a horizontal operation on A and B is
18381/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18382/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18383/// A horizontal-op B, for some already available A and B, and if so then LHS is
18384/// set to A, RHS to B, and the routine returns 'true'.
18385/// Note that the binary operation should have the property that if one of the
18386/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018387static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018388 // Look for the following pattern: if
18389 // A = < float a0, float a1, float a2, float a3 >
18390 // B = < float b0, float b1, float b2, float b3 >
18391 // and
18392 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18393 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18394 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18395 // which is A horizontal-op B.
18396
18397 // At least one of the operands should be a vector shuffle.
18398 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18399 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18400 return false;
18401
Craig Topper5a0910b2013-08-15 02:33:50 +000018402 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018403
18404 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18405 "Unsupported vector type for horizontal add/sub");
18406
18407 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18408 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018409 unsigned NumElts = VT.getVectorNumElements();
18410 unsigned NumLanes = VT.getSizeInBits()/128;
18411 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018412 assert((NumLaneElts % 2 == 0) &&
18413 "Vector type should have an even number of elements in each lane");
18414 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018415
18416 // View LHS in the form
18417 // LHS = VECTOR_SHUFFLE A, B, LMask
18418 // If LHS is not a shuffle then pretend it is the shuffle
18419 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18420 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18421 // type VT.
18422 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018423 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018424 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18425 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18426 A = LHS.getOperand(0);
18427 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18428 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018429 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18430 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018431 } else {
18432 if (LHS.getOpcode() != ISD::UNDEF)
18433 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018434 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018435 LMask[i] = i;
18436 }
18437
18438 // Likewise, view RHS in the form
18439 // RHS = VECTOR_SHUFFLE C, D, RMask
18440 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018441 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018442 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18443 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18444 C = RHS.getOperand(0);
18445 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18446 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018447 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18448 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018449 } else {
18450 if (RHS.getOpcode() != ISD::UNDEF)
18451 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018452 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018453 RMask[i] = i;
18454 }
18455
18456 // Check that the shuffles are both shuffling the same vectors.
18457 if (!(A == C && B == D) && !(A == D && B == C))
18458 return false;
18459
18460 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18461 if (!A.getNode() && !B.getNode())
18462 return false;
18463
18464 // If A and B occur in reverse order in RHS, then "swap" them (which means
18465 // rewriting the mask).
18466 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018467 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018468
18469 // At this point LHS and RHS are equivalent to
18470 // LHS = VECTOR_SHUFFLE A, B, LMask
18471 // RHS = VECTOR_SHUFFLE A, B, RMask
18472 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018473 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18474 for (unsigned i = 0; i != NumLaneElts; ++i) {
18475 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018476
Craig Topper57bc5a02013-08-06 06:54:25 +000018477 // Ignore any UNDEF components.
18478 if (LIdx < 0 || RIdx < 0 ||
18479 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18480 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18481 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018482
Craig Topper57bc5a02013-08-06 06:54:25 +000018483 // Check that successive elements are being operated on. If not, this is
18484 // not a horizontal operation.
18485 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18486 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18487 if (!(LIdx == Index && RIdx == Index + 1) &&
18488 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18489 return false;
18490 }
Duncan Sands17470be2011-09-22 20:15:48 +000018491 }
18492
18493 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18494 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18495 return true;
18496}
18497
18498/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18499static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18500 const X86Subtarget *Subtarget) {
18501 EVT VT = N->getValueType(0);
18502 SDValue LHS = N->getOperand(0);
18503 SDValue RHS = N->getOperand(1);
18504
18505 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018506 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018507 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018508 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018509 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018510 return SDValue();
18511}
18512
18513/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18514static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18515 const X86Subtarget *Subtarget) {
18516 EVT VT = N->getValueType(0);
18517 SDValue LHS = N->getOperand(0);
18518 SDValue RHS = N->getOperand(1);
18519
18520 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018521 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018522 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018523 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018524 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018525 return SDValue();
18526}
18527
Chris Lattner6cf73262008-01-25 06:14:17 +000018528/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18529/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018530static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018531 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18532 // F[X]OR(0.0, x) -> x
18533 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018534 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18535 if (C->getValueAPF().isPosZero())
18536 return N->getOperand(1);
18537 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18538 if (C->getValueAPF().isPosZero())
18539 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018540 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018541}
18542
Nadav Rotemd60cb112012-08-19 13:06:16 +000018543/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18544/// X86ISD::FMAX nodes.
18545static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18546 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18547
18548 // Only perform optimizations if UnsafeMath is used.
18549 if (!DAG.getTarget().Options.UnsafeFPMath)
18550 return SDValue();
18551
18552 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018553 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018554 unsigned NewOp = 0;
18555 switch (N->getOpcode()) {
18556 default: llvm_unreachable("unknown opcode");
18557 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18558 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18559 }
18560
Andrew Trickac6d9be2013-05-25 02:42:55 +000018561 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018562 N->getOperand(0), N->getOperand(1));
18563}
18564
Chris Lattneraf723b92008-01-25 05:46:26 +000018565/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018566static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018567 // FAND(0.0, x) -> 0.0
18568 // FAND(x, 0.0) -> 0.0
18569 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18570 if (C->getValueAPF().isPosZero())
18571 return N->getOperand(0);
18572 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18573 if (C->getValueAPF().isPosZero())
18574 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018575 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018576}
18577
Benjamin Kramer75311b72013-08-04 12:05:16 +000018578/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18579static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18580 // FANDN(x, 0.0) -> 0.0
18581 // FANDN(0.0, x) -> x
18582 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18583 if (C->getValueAPF().isPosZero())
18584 return N->getOperand(1);
18585 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18586 if (C->getValueAPF().isPosZero())
18587 return N->getOperand(1);
18588 return SDValue();
18589}
18590
Dan Gohmane5af2d32009-01-29 01:59:02 +000018591static SDValue PerformBTCombine(SDNode *N,
18592 SelectionDAG &DAG,
18593 TargetLowering::DAGCombinerInfo &DCI) {
18594 // BT ignores high bits in the bit index operand.
18595 SDValue Op1 = N->getOperand(1);
18596 if (Op1.hasOneUse()) {
18597 unsigned BitWidth = Op1.getValueSizeInBits();
18598 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18599 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018600 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18601 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018602 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018603 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18604 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18605 DCI.CommitTargetLoweringOpt(TLO);
18606 }
18607 return SDValue();
18608}
Chris Lattner83e6c992006-10-04 06:57:07 +000018609
Eli Friedman7a5e5552009-06-07 06:52:44 +000018610static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18611 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018612 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018613 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018614 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018615 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018616 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018617 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018618 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018619 }
18620 return SDValue();
18621}
18622
Matt Arsenault225ed702013-05-18 00:21:46 +000018623static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018624 const X86Subtarget *Subtarget) {
18625 EVT VT = N->getValueType(0);
18626 if (!VT.isVector())
18627 return SDValue();
18628
18629 SDValue N0 = N->getOperand(0);
18630 SDValue N1 = N->getOperand(1);
18631 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018632 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018633
18634 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18635 // both SSE and AVX2 since there is no sign-extended shift right
18636 // operation on a vector with 64-bit elements.
18637 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18638 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18639 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18640 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18641 SDValue N00 = N0.getOperand(0);
18642
Matt Arsenault225ed702013-05-18 00:21:46 +000018643 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018644 // it may be replaced with X86ISD::VSEXT node.
18645 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18646 if (!ISD::isNormalLoad(N00.getNode()))
18647 return SDValue();
18648
18649 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018650 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018651 N00, N1);
18652 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18653 }
18654 }
18655 return SDValue();
18656}
18657
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018658static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18659 TargetLowering::DAGCombinerInfo &DCI,
18660 const X86Subtarget *Subtarget) {
18661 if (!DCI.isBeforeLegalizeOps())
18662 return SDValue();
18663
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018664 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018665 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018666
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018667 EVT VT = N->getValueType(0);
18668 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018669 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18670 if (R.getNode())
18671 return R;
18672 }
18673
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018674 return SDValue();
18675}
18676
Michael Liaof6c24ee2012-08-10 14:39:24 +000018677static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018678 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018679 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018680 EVT VT = N->getValueType(0);
18681
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018682 // Let legalize expand this if it isn't a legal type yet.
18683 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18684 return SDValue();
18685
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018686 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018687 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18688 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018689 return SDValue();
18690
18691 SDValue A = N->getOperand(0);
18692 SDValue B = N->getOperand(1);
18693 SDValue C = N->getOperand(2);
18694
18695 bool NegA = (A.getOpcode() == ISD::FNEG);
18696 bool NegB = (B.getOpcode() == ISD::FNEG);
18697 bool NegC = (C.getOpcode() == ISD::FNEG);
18698
Michael Liaof6c24ee2012-08-10 14:39:24 +000018699 // Negative multiplication when NegA xor NegB
18700 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018701 if (NegA)
18702 A = A.getOperand(0);
18703 if (NegB)
18704 B = B.getOperand(0);
18705 if (NegC)
18706 C = C.getOperand(0);
18707
18708 unsigned Opcode;
18709 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018710 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018711 else
Craig Topperbf404372012-08-31 15:40:30 +000018712 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18713
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018714 return DAG.getNode(Opcode, dl, VT, A, B, C);
18715}
18716
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018717static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018718 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018719 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018720 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18721 // (and (i32 x86isd::setcc_carry), 1)
18722 // This eliminates the zext. This transformation is necessary because
18723 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018724 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018725 SDValue N0 = N->getOperand(0);
18726 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018727
Evan Cheng2e489c42009-12-16 00:53:11 +000018728 if (N0.getOpcode() == ISD::AND &&
18729 N0.hasOneUse() &&
18730 N0.getOperand(0).hasOneUse()) {
18731 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018732 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18733 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18734 if (!C || C->getZExtValue() != 1)
18735 return SDValue();
18736 return DAG.getNode(ISD::AND, dl, VT,
18737 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18738 N00.getOperand(0), N00.getOperand(1)),
18739 DAG.getConstant(1, VT));
18740 }
18741 }
18742
Craig Topper5a529e42013-01-18 06:44:29 +000018743 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018744 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18745 if (R.getNode())
18746 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018747 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018748
Evan Cheng2e489c42009-12-16 00:53:11 +000018749 return SDValue();
18750}
18751
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018752// Optimize x == -y --> x+y == 0
18753// x != -y --> x+y != 0
18754static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18755 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18756 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018757 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018758
18759 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18760 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18761 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018762 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018763 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018764 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018765 addV, DAG.getConstant(0, addV.getValueType()), CC);
18766 }
18767 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18768 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18769 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018770 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018771 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018772 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018773 addV, DAG.getConstant(0, addV.getValueType()), CC);
18774 }
18775 return SDValue();
18776}
18777
Eric Christophere187e252013-01-31 00:50:48 +000018778// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18779// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018780// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018781static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018782 return DAG.getNode(ISD::AND, DL, MVT::i8,
18783 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18784 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18785 DAG.getConstant(1, MVT::i8));
18786}
18787
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018788// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018789static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18790 TargetLowering::DAGCombinerInfo &DCI,
18791 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018792 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018793 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18794 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018795
Shuxin Yanga5526a92012-10-31 23:11:48 +000018796 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018797 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018798 // materializing "setb reg".
18799 //
18800 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18801 // cannot take an immediate as its first operand.
18802 //
Eric Christophere187e252013-01-31 00:50:48 +000018803 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018804 EFLAGS.getValueType().isInteger() &&
18805 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018806 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018807 EFLAGS.getNode()->getVTList(),
18808 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18809 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18810 return MaterializeSETB(DL, NewEFLAGS, DAG);
18811 }
18812 }
18813
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018814 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18815 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18816 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018817 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018818 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018819
Michael Liao2a33cec2012-08-10 19:58:13 +000018820 SDValue Flags;
18821
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018822 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18823 if (Flags.getNode()) {
18824 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18825 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18826 }
18827
Michael Liao2a33cec2012-08-10 19:58:13 +000018828 return SDValue();
18829}
18830
18831// Optimize branch condition evaluation.
18832//
18833static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18834 TargetLowering::DAGCombinerInfo &DCI,
18835 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018836 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018837 SDValue Chain = N->getOperand(0);
18838 SDValue Dest = N->getOperand(1);
18839 SDValue EFLAGS = N->getOperand(3);
18840 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18841
18842 SDValue Flags;
18843
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018844 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18845 if (Flags.getNode()) {
18846 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18847 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18848 Flags);
18849 }
18850
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018851 return SDValue();
18852}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018853
Benjamin Kramer1396c402011-06-18 11:09:41 +000018854static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18855 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018856 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018857 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018858
18859 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018860 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018861 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018862 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018863 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18864 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18865 }
18866
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018867 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18868 // a 32-bit target where SSE doesn't support i64->FP operations.
18869 if (Op0.getOpcode() == ISD::LOAD) {
18870 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18871 EVT VT = Ld->getValueType(0);
18872 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18873 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18874 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018875 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018876 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18877 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018878 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18879 return FILDChain;
18880 }
18881 }
18882 return SDValue();
18883}
18884
Chris Lattner23a01992010-12-20 01:37:09 +000018885// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18886static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18887 X86TargetLowering::DAGCombinerInfo &DCI) {
18888 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18889 // the result is either zero or one (depending on the input carry bit).
18890 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18891 if (X86::isZeroNode(N->getOperand(0)) &&
18892 X86::isZeroNode(N->getOperand(1)) &&
18893 // We don't have a good way to replace an EFLAGS use, so only do this when
18894 // dead right now.
18895 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018896 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018897 EVT VT = N->getValueType(0);
18898 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18899 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18900 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18901 DAG.getConstant(X86::COND_B,MVT::i8),
18902 N->getOperand(2)),
18903 DAG.getConstant(1, VT));
18904 return DCI.CombineTo(N, Res1, CarryOut);
18905 }
18906
18907 return SDValue();
18908}
18909
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018910// fold (add Y, (sete X, 0)) -> adc 0, Y
18911// (add Y, (setne X, 0)) -> sbb -1, Y
18912// (sub (sete X, 0), Y) -> sbb 0, Y
18913// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018914static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018915 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018916
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018917 // Look through ZExts.
18918 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18919 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18920 return SDValue();
18921
18922 SDValue SetCC = Ext.getOperand(0);
18923 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18924 return SDValue();
18925
18926 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18927 if (CC != X86::COND_E && CC != X86::COND_NE)
18928 return SDValue();
18929
18930 SDValue Cmp = SetCC.getOperand(1);
18931 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018932 !X86::isZeroNode(Cmp.getOperand(1)) ||
18933 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018934 return SDValue();
18935
18936 SDValue CmpOp0 = Cmp.getOperand(0);
18937 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18938 DAG.getConstant(1, CmpOp0.getValueType()));
18939
18940 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18941 if (CC == X86::COND_NE)
18942 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18943 DL, OtherVal.getValueType(), OtherVal,
18944 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18945 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18946 DL, OtherVal.getValueType(), OtherVal,
18947 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18948}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018949
Craig Topper54f952a2011-11-19 09:02:40 +000018950/// PerformADDCombine - Do target-specific dag combines on integer adds.
18951static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18952 const X86Subtarget *Subtarget) {
18953 EVT VT = N->getValueType(0);
18954 SDValue Op0 = N->getOperand(0);
18955 SDValue Op1 = N->getOperand(1);
18956
18957 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018958 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018959 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018960 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018961 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018962
18963 return OptimizeConditionalInDecrement(N, DAG);
18964}
18965
18966static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18967 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018968 SDValue Op0 = N->getOperand(0);
18969 SDValue Op1 = N->getOperand(1);
18970
18971 // X86 can't encode an immediate LHS of a sub. See if we can push the
18972 // negation into a preceding instruction.
18973 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018974 // If the RHS of the sub is a XOR with one use and a constant, invert the
18975 // immediate. Then add one to the LHS of the sub so we can turn
18976 // X-Y -> X+~Y+1, saving one register.
18977 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18978 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018979 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018980 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018981 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018982 Op1.getOperand(0),
18983 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018984 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018985 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018986 }
18987 }
18988
Craig Topper54f952a2011-11-19 09:02:40 +000018989 // Try to synthesize horizontal adds from adds of shuffles.
18990 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000018991 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018992 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000018993 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018994 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018995
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018996 return OptimizeConditionalInDecrement(N, DAG);
18997}
18998
Michael Liaod9d09602012-10-23 17:34:00 +000018999/// performVZEXTCombine - Performs build vector combines
19000static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19001 TargetLowering::DAGCombinerInfo &DCI,
19002 const X86Subtarget *Subtarget) {
19003 // (vzext (bitcast (vzext (x)) -> (vzext x)
19004 SDValue In = N->getOperand(0);
19005 while (In.getOpcode() == ISD::BITCAST)
19006 In = In.getOperand(0);
19007
19008 if (In.getOpcode() != X86ISD::VZEXT)
19009 return SDValue();
19010
Andrew Trickac6d9be2013-05-25 02:42:55 +000019011 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000019012 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000019013}
19014
Dan Gohman475871a2008-07-27 21:46:04 +000019015SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000019016 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000019017 SelectionDAG &DAG = DCI.DAG;
19018 switch (N->getOpcode()) {
19019 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000019020 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000019021 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000019022 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000019023 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019024 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000019025 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
19026 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000019027 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000019028 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000019029 case ISD::SHL:
19030 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000019031 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000019032 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000019033 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000019034 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000019035 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019036 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019037 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019038 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19039 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019040 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019041 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019042 case X86ISD::FMIN:
19043 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019044 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019045 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019046 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019047 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019048 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019049 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019050 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019051 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019052 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019053 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019054 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019055 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019056 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019057 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019058 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019059 case X86ISD::UNPCKH:
19060 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019061 case X86ISD::MOVHLPS:
19062 case X86ISD::MOVLHPS:
19063 case X86ISD::PSHUFD:
19064 case X86ISD::PSHUFHW:
19065 case X86ISD::PSHUFLW:
19066 case X86ISD::MOVSS:
19067 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019068 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019069 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019070 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Jim Grosbach49af3802013-10-17 02:58:06 +000019071 case ISD::CONCAT_VECTORS: return PerformConcatCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019072 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019073 }
19074
Dan Gohman475871a2008-07-27 21:46:04 +000019075 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019076}
19077
Evan Chenge5b51ac2010-04-17 06:13:15 +000019078/// isTypeDesirableForOp - Return true if the target has native support for
19079/// the specified value type and it is 'desirable' to use the type for the
19080/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19081/// instruction encodings are longer and some i16 instructions are slow.
19082bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19083 if (!isTypeLegal(VT))
19084 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019085 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019086 return true;
19087
19088 switch (Opc) {
19089 default:
19090 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019091 case ISD::LOAD:
19092 case ISD::SIGN_EXTEND:
19093 case ISD::ZERO_EXTEND:
19094 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019095 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019096 case ISD::SRL:
19097 case ISD::SUB:
19098 case ISD::ADD:
19099 case ISD::MUL:
19100 case ISD::AND:
19101 case ISD::OR:
19102 case ISD::XOR:
19103 return false;
19104 }
19105}
19106
19107/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019108/// beneficial for dag combiner to promote the specified node. If true, it
19109/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019110bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019111 EVT VT = Op.getValueType();
19112 if (VT != MVT::i16)
19113 return false;
19114
Evan Cheng4c26e932010-04-19 19:29:22 +000019115 bool Promote = false;
19116 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019117 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019118 default: break;
19119 case ISD::LOAD: {
19120 LoadSDNode *LD = cast<LoadSDNode>(Op);
19121 // If the non-extending load has a single use and it's not live out, then it
19122 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019123 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19124 Op.hasOneUse()*/) {
19125 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19126 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19127 // The only case where we'd want to promote LOAD (rather then it being
19128 // promoted as an operand is when it's only use is liveout.
19129 if (UI->getOpcode() != ISD::CopyToReg)
19130 return false;
19131 }
19132 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019133 Promote = true;
19134 break;
19135 }
19136 case ISD::SIGN_EXTEND:
19137 case ISD::ZERO_EXTEND:
19138 case ISD::ANY_EXTEND:
19139 Promote = true;
19140 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019141 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019142 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019143 SDValue N0 = Op.getOperand(0);
19144 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019145 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019146 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019147 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019148 break;
19149 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019150 case ISD::ADD:
19151 case ISD::MUL:
19152 case ISD::AND:
19153 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019154 case ISD::XOR:
19155 Commute = true;
19156 // fallthrough
19157 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019158 SDValue N0 = Op.getOperand(0);
19159 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019160 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019161 return false;
19162 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019163 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019164 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019165 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019166 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019167 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019168 }
19169 }
19170
19171 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019172 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019173}
19174
Evan Cheng60c07e12006-07-05 22:17:51 +000019175//===----------------------------------------------------------------------===//
19176// X86 Inline Assembly Support
19177//===----------------------------------------------------------------------===//
19178
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019179namespace {
19180 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019181 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019182 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019183
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019184 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019185 StringRef piece(*args[i]);
19186 if (!s.startswith(piece)) // Check if the piece matches.
19187 return false;
19188
19189 s = s.substr(piece.size());
19190 StringRef::size_type pos = s.find_first_not_of(" \t");
19191 if (pos == 0) // We matched a prefix.
19192 return false;
19193
19194 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019195 }
19196
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019197 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019198 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019199 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019200}
19201
Chris Lattnerb8105652009-07-20 17:51:36 +000019202bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19203 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019204
19205 std::string AsmStr = IA->getAsmString();
19206
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019207 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19208 if (!Ty || Ty->getBitWidth() % 16 != 0)
19209 return false;
19210
Chris Lattnerb8105652009-07-20 17:51:36 +000019211 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019212 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019213 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019214
19215 switch (AsmPieces.size()) {
19216 default: return false;
19217 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019218 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019219 // we will turn this bswap into something that will be lowered to logical
19220 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19221 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019222 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019223 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19224 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19225 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19226 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19227 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19228 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019229 // No need to check constraints, nothing other than the equivalent of
19230 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019231 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019232 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019233
Chris Lattnerb8105652009-07-20 17:51:36 +000019234 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019235 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019236 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019237 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19238 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019239 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019240 const std::string &ConstraintsStr = IA->getConstraintString();
19241 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019242 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000019243 if (AsmPieces.size() == 4 &&
19244 AsmPieces[0] == "~{cc}" &&
19245 AsmPieces[1] == "~{dirflag}" &&
19246 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019247 AsmPieces[3] == "~{fpsr}")
19248 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019249 }
19250 break;
19251 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019252 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019253 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019254 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19255 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19256 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019257 AsmPieces.clear();
19258 const std::string &ConstraintsStr = IA->getConstraintString();
19259 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019260 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019261 if (AsmPieces.size() == 4 &&
19262 AsmPieces[0] == "~{cc}" &&
19263 AsmPieces[1] == "~{dirflag}" &&
19264 AsmPieces[2] == "~{flags}" &&
19265 AsmPieces[3] == "~{fpsr}")
19266 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019267 }
Evan Cheng55d42002011-01-08 01:24:27 +000019268
19269 if (CI->getType()->isIntegerTy(64)) {
19270 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19271 if (Constraints.size() >= 2 &&
19272 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19273 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19274 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019275 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19276 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19277 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019278 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019279 }
19280 }
19281 break;
19282 }
19283 return false;
19284}
19285
Chris Lattnerf4dff842006-07-11 02:54:03 +000019286/// getConstraintType - Given a constraint letter, return the type of
19287/// constraint it is for this target.
19288X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019289X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19290 if (Constraint.size() == 1) {
19291 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019292 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019293 case 'q':
19294 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019295 case 'f':
19296 case 't':
19297 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019298 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019299 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019300 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019301 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019302 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019303 case 'a':
19304 case 'b':
19305 case 'c':
19306 case 'd':
19307 case 'S':
19308 case 'D':
19309 case 'A':
19310 return C_Register;
19311 case 'I':
19312 case 'J':
19313 case 'K':
19314 case 'L':
19315 case 'M':
19316 case 'N':
19317 case 'G':
19318 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019319 case 'e':
19320 case 'Z':
19321 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019322 default:
19323 break;
19324 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019325 }
Chris Lattner4234f572007-03-25 02:14:49 +000019326 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019327}
19328
John Thompson44ab89e2010-10-29 17:29:13 +000019329/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019330/// This object must already have been set up with the operand type
19331/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019332TargetLowering::ConstraintWeight
19333 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019334 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019335 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019336 Value *CallOperandVal = info.CallOperandVal;
19337 // If we don't have a value, we can't do a match,
19338 // but allow it at the lowest weight.
19339 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019340 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019341 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019342 // Look at the constraint type.
19343 switch (*constraint) {
19344 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019345 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19346 case 'R':
19347 case 'q':
19348 case 'Q':
19349 case 'a':
19350 case 'b':
19351 case 'c':
19352 case 'd':
19353 case 'S':
19354 case 'D':
19355 case 'A':
19356 if (CallOperandVal->getType()->isIntegerTy())
19357 weight = CW_SpecificReg;
19358 break;
19359 case 'f':
19360 case 't':
19361 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019362 if (type->isFloatingPointTy())
19363 weight = CW_SpecificReg;
19364 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019365 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019366 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19367 weight = CW_SpecificReg;
19368 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019369 case 'x':
19370 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019371 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019372 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019373 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019374 break;
19375 case 'I':
19376 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19377 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019378 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019379 }
19380 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019381 case 'J':
19382 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19383 if (C->getZExtValue() <= 63)
19384 weight = CW_Constant;
19385 }
19386 break;
19387 case 'K':
19388 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19389 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19390 weight = CW_Constant;
19391 }
19392 break;
19393 case 'L':
19394 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19395 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19396 weight = CW_Constant;
19397 }
19398 break;
19399 case 'M':
19400 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19401 if (C->getZExtValue() <= 3)
19402 weight = CW_Constant;
19403 }
19404 break;
19405 case 'N':
19406 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19407 if (C->getZExtValue() <= 0xff)
19408 weight = CW_Constant;
19409 }
19410 break;
19411 case 'G':
19412 case 'C':
19413 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19414 weight = CW_Constant;
19415 }
19416 break;
19417 case 'e':
19418 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19419 if ((C->getSExtValue() >= -0x80000000LL) &&
19420 (C->getSExtValue() <= 0x7fffffffLL))
19421 weight = CW_Constant;
19422 }
19423 break;
19424 case 'Z':
19425 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19426 if (C->getZExtValue() <= 0xffffffff)
19427 weight = CW_Constant;
19428 }
19429 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019430 }
19431 return weight;
19432}
19433
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019434/// LowerXConstraint - try to replace an X constraint, which matches anything,
19435/// with another that has more specific requirements based on the type of the
19436/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019437const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019438LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019439 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19440 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019441 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019442 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019443 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019444 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019445 return "x";
19446 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019447
Chris Lattner5e764232008-04-26 23:02:14 +000019448 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019449}
19450
Chris Lattner48884cd2007-08-25 00:47:38 +000019451/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19452/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019453void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019454 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019455 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019456 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019457 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019458
Eric Christopher100c8332011-06-02 23:16:42 +000019459 // Only support length 1 constraints for now.
19460 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019461
Eric Christopher100c8332011-06-02 23:16:42 +000019462 char ConstraintLetter = Constraint[0];
19463 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019464 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019465 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019466 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019467 if (C->getZExtValue() <= 31) {
19468 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019469 break;
19470 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019471 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019472 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019473 case 'J':
19474 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019475 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019476 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19477 break;
19478 }
19479 }
19480 return;
19481 case 'K':
19482 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019483 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019484 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19485 break;
19486 }
19487 }
19488 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019489 case 'N':
19490 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019491 if (C->getZExtValue() <= 255) {
19492 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019493 break;
19494 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019495 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019496 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019497 case 'e': {
19498 // 32-bit signed value
19499 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019500 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19501 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019502 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019503 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019504 break;
19505 }
19506 // FIXME gcc accepts some relocatable values here too, but only in certain
19507 // memory models; it's complicated.
19508 }
19509 return;
19510 }
19511 case 'Z': {
19512 // 32-bit unsigned value
19513 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019514 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19515 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019516 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19517 break;
19518 }
19519 }
19520 // FIXME gcc accepts some relocatable values here too, but only in certain
19521 // memory models; it's complicated.
19522 return;
19523 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019524 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019525 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019526 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019527 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019528 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019529 break;
19530 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019531
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019532 // In any sort of PIC mode addresses need to be computed at runtime by
19533 // adding in a register or some sort of table lookup. These can't
19534 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019535 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019536 return;
19537
Chris Lattnerdc43a882007-05-03 16:52:29 +000019538 // If we are in non-pic codegen mode, we allow the address of a global (with
19539 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019540 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019541 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019542
Chris Lattner49921962009-05-08 18:23:14 +000019543 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19544 while (1) {
19545 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19546 Offset += GA->getOffset();
19547 break;
19548 } else if (Op.getOpcode() == ISD::ADD) {
19549 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19550 Offset += C->getZExtValue();
19551 Op = Op.getOperand(0);
19552 continue;
19553 }
19554 } else if (Op.getOpcode() == ISD::SUB) {
19555 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19556 Offset += -C->getZExtValue();
19557 Op = Op.getOperand(0);
19558 continue;
19559 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019560 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019561
Chris Lattner49921962009-05-08 18:23:14 +000019562 // Otherwise, this isn't something we can handle, reject it.
19563 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019564 }
Eric Christopherfd179292009-08-27 18:07:15 +000019565
Dan Gohman46510a72010-04-15 01:51:59 +000019566 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019567 // If we require an extra load to get this address, as in PIC mode, we
19568 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019569 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19570 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019571 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019572
Andrew Trickac6d9be2013-05-25 02:42:55 +000019573 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019574 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019575 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019576 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019577 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019578
Gabor Greifba36cb52008-08-28 21:40:38 +000019579 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019580 Ops.push_back(Result);
19581 return;
19582 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019583 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019584}
19585
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019586std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019587X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019588 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019589 // First, see if this is a constraint that directly corresponds to an LLVM
19590 // register class.
19591 if (Constraint.size() == 1) {
19592 // GCC Constraint Letters
19593 switch (Constraint[0]) {
19594 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019595 // TODO: Slight differences here in allocation order and leaving
19596 // RIP in the class. Do they matter any more here than they do
19597 // in the normal allocation?
19598 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19599 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019600 if (VT == MVT::i32 || VT == MVT::f32)
19601 return std::make_pair(0U, &X86::GR32RegClass);
19602 if (VT == MVT::i16)
19603 return std::make_pair(0U, &X86::GR16RegClass);
19604 if (VT == MVT::i8 || VT == MVT::i1)
19605 return std::make_pair(0U, &X86::GR8RegClass);
19606 if (VT == MVT::i64 || VT == MVT::f64)
19607 return std::make_pair(0U, &X86::GR64RegClass);
19608 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019609 }
19610 // 32-bit fallthrough
19611 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019612 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019613 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19614 if (VT == MVT::i16)
19615 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19616 if (VT == MVT::i8 || VT == MVT::i1)
19617 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19618 if (VT == MVT::i64)
19619 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019620 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019621 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019622 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019623 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019624 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019625 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019626 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019627 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019628 return std::make_pair(0U, &X86::GR32RegClass);
19629 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019630 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019631 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019632 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019633 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019634 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019635 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019636 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19637 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019638 case 'f': // FP Stack registers.
19639 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19640 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019641 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019642 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019643 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019644 return std::make_pair(0U, &X86::RFP64RegClass);
19645 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019646 case 'y': // MMX_REGS if MMX allowed.
19647 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019648 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019649 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019650 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019651 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019652 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019653 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019654
Chad Rosier5b3fca52013-06-22 18:37:38 +000019655 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019656 default: break;
19657 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019658 case MVT::f32:
19659 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019660 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019661 case MVT::f64:
19662 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019663 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019664 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019665 case MVT::v16i8:
19666 case MVT::v8i16:
19667 case MVT::v4i32:
19668 case MVT::v2i64:
19669 case MVT::v4f32:
19670 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019671 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019672 // AVX types.
19673 case MVT::v32i8:
19674 case MVT::v16i16:
19675 case MVT::v8i32:
19676 case MVT::v4i64:
19677 case MVT::v8f32:
19678 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019679 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019680 case MVT::v8f64:
19681 case MVT::v16f32:
19682 case MVT::v16i32:
19683 case MVT::v8i64:
19684 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019685 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019686 break;
19687 }
19688 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019689
Chris Lattnerf76d1802006-07-31 23:26:50 +000019690 // Use the default implementation in TargetLowering to convert the register
19691 // constraint into a member of a register class.
19692 std::pair<unsigned, const TargetRegisterClass*> Res;
19693 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019694
19695 // Not found as a standard register?
19696 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019697 // Map st(0) -> st(7) -> ST0
19698 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19699 tolower(Constraint[1]) == 's' &&
19700 tolower(Constraint[2]) == 't' &&
19701 Constraint[3] == '(' &&
19702 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19703 Constraint[5] == ')' &&
19704 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019705
Chris Lattner56d77c72009-09-13 22:41:48 +000019706 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019707 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019708 return Res;
19709 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019710
Chris Lattner56d77c72009-09-13 22:41:48 +000019711 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019712 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019713 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019714 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019715 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019716 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019717
19718 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019719 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019720 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019721 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019722 return Res;
19723 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019724
Dale Johannesen330169f2008-11-13 21:52:36 +000019725 // 'A' means EAX + EDX.
19726 if (Constraint == "A") {
19727 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019728 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019729 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019730 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019731 return Res;
19732 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019733
Chris Lattnerf76d1802006-07-31 23:26:50 +000019734 // Otherwise, check to see if this is a register class of the wrong value
19735 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19736 // turn into {ax},{dx}.
19737 if (Res.second->hasType(VT))
19738 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019739
Chris Lattnerf76d1802006-07-31 23:26:50 +000019740 // All of the single-register GCC register classes map their values onto
19741 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19742 // really want an 8-bit or 32-bit register, map to the appropriate register
19743 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019744 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019745 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019746 unsigned DestReg = 0;
19747 switch (Res.first) {
19748 default: break;
19749 case X86::AX: DestReg = X86::AL; break;
19750 case X86::DX: DestReg = X86::DL; break;
19751 case X86::CX: DestReg = X86::CL; break;
19752 case X86::BX: DestReg = X86::BL; break;
19753 }
19754 if (DestReg) {
19755 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019756 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019757 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019758 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019759 unsigned DestReg = 0;
19760 switch (Res.first) {
19761 default: break;
19762 case X86::AX: DestReg = X86::EAX; break;
19763 case X86::DX: DestReg = X86::EDX; break;
19764 case X86::CX: DestReg = X86::ECX; break;
19765 case X86::BX: DestReg = X86::EBX; break;
19766 case X86::SI: DestReg = X86::ESI; break;
19767 case X86::DI: DestReg = X86::EDI; break;
19768 case X86::BP: DestReg = X86::EBP; break;
19769 case X86::SP: DestReg = X86::ESP; break;
19770 }
19771 if (DestReg) {
19772 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019773 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019774 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019775 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019776 unsigned DestReg = 0;
19777 switch (Res.first) {
19778 default: break;
19779 case X86::AX: DestReg = X86::RAX; break;
19780 case X86::DX: DestReg = X86::RDX; break;
19781 case X86::CX: DestReg = X86::RCX; break;
19782 case X86::BX: DestReg = X86::RBX; break;
19783 case X86::SI: DestReg = X86::RSI; break;
19784 case X86::DI: DestReg = X86::RDI; break;
19785 case X86::BP: DestReg = X86::RBP; break;
19786 case X86::SP: DestReg = X86::RSP; break;
19787 }
19788 if (DestReg) {
19789 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019790 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019791 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019792 }
Craig Topperc9099502012-04-20 06:31:50 +000019793 } else if (Res.second == &X86::FR32RegClass ||
19794 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019795 Res.second == &X86::VR128RegClass ||
19796 Res.second == &X86::VR256RegClass ||
19797 Res.second == &X86::FR32XRegClass ||
19798 Res.second == &X86::FR64XRegClass ||
19799 Res.second == &X86::VR128XRegClass ||
19800 Res.second == &X86::VR256XRegClass ||
19801 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019802 // Handle references to XMM physical registers that got mapped into the
19803 // wrong class. This can happen with constraints like {xmm0} where the
19804 // target independent register mapper will just pick the first match it can
19805 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019806
19807 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019808 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019809 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019810 Res.second = &X86::FR64RegClass;
19811 else if (X86::VR128RegClass.hasType(VT))
19812 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019813 else if (X86::VR256RegClass.hasType(VT))
19814 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019815 else if (X86::VR512RegClass.hasType(VT))
19816 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019817 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019818
Chris Lattnerf76d1802006-07-31 23:26:50 +000019819 return Res;
19820}