blob: ba6c9c06db08c62f49bb0d6d2f117a4812ca3ce9 [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
1333
1334 setOperationAction(ISD::FP_TO_SINT, MVT::v16i32, Legal);
1335 setOperationAction(ISD::FP_TO_UINT, MVT::v16i32, Legal);
1336 setOperationAction(ISD::FP_TO_UINT, MVT::v8i32, Legal);
1337 setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal);
1338 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1339 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1340 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1341 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1342
1343 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1344 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1345 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1346 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1347 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1348 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1349 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1350 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1351 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1352 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1353 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1354 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1355
1356 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1357 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1358 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1359 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1360 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1361
1362 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1363 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1364
1365 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1366
1367 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1368 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1369 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1370 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1371 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1372
1373 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1374 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1375
1376 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1377 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1378
1379 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1380
1381 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1382 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1383
1384 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1385 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1386
1387 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1388 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1389
1390 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1391 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1392 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001393 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1394 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1395 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001396
1397 // Custom lower several nodes.
1398 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1399 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1400 MVT VT = (MVT::SimpleValueType)i;
1401
Elena Demikhovsky07801792013-08-01 13:34:06 +00001402 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001403 // Extract subvector is special because the value type
1404 // (result) is 256/128-bit but the source is 512-bit wide.
1405 if (VT.is128BitVector() || VT.is256BitVector())
1406 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1407
1408 if (VT.getVectorElementType() == MVT::i1)
1409 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1410
1411 // Do not attempt to custom lower other non-512-bit vectors
1412 if (!VT.is512BitVector())
1413 continue;
1414
Elena Demikhovsky07801792013-08-01 13:34:06 +00001415 if ( EltSize >= 32) {
1416 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1417 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1418 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1419 setOperationAction(ISD::VSELECT, VT, Legal);
1420 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1421 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1422 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1423 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001424 }
1425 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1426 MVT VT = (MVT::SimpleValueType)i;
1427
1428 // Do not attempt to promote non-256-bit vectors
1429 if (!VT.is512BitVector())
1430 continue;
1431
Elena Demikhovsky83952512013-07-31 11:35:14 +00001432 setOperationAction(ISD::SELECT, VT, Promote);
1433 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1434 }
1435 }// has AVX-512
1436
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001437 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1438 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001439 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1440 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001441 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1442 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001443 }
1444
Evan Cheng6be2c582006-04-05 23:38:46 +00001445 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001446 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001447 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001448 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001449
Eli Friedman962f5492010-06-02 19:35:46 +00001450 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1451 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001452 //
Eli Friedman962f5492010-06-02 19:35:46 +00001453 // FIXME: We really should do custom legalization for addition and
1454 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1455 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001456 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1457 // Add/Sub/Mul with overflow operations are custom lowered.
1458 MVT VT = IntVTs[i];
1459 setOperationAction(ISD::SADDO, VT, Custom);
1460 setOperationAction(ISD::UADDO, VT, Custom);
1461 setOperationAction(ISD::SSUBO, VT, Custom);
1462 setOperationAction(ISD::USUBO, VT, Custom);
1463 setOperationAction(ISD::SMULO, VT, Custom);
1464 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001465 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001466
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001467 // There are no 8-bit 3-address imul/mul instructions
1468 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1469 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001470
Evan Chengd54f2d52009-03-31 19:38:51 +00001471 if (!Subtarget->is64Bit()) {
1472 // These libcalls are not available in 32-bit.
1473 setLibcallName(RTLIB::SHL_I128, 0);
1474 setLibcallName(RTLIB::SRL_I128, 0);
1475 setLibcallName(RTLIB::SRA_I128, 0);
1476 }
1477
Evan Cheng8688a582013-01-29 02:32:37 +00001478 // Combine sin / cos into one node or libcall if possible.
1479 if (Subtarget->hasSinCos()) {
1480 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1481 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001482 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001483 // For MacOSX, we don't want to the normal expansion of a libcall to
1484 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1485 // traffic.
1486 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1487 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1488 }
1489 }
1490
Evan Cheng206ee9d2006-07-07 08:33:52 +00001491 // We have target-specific dag combine patterns for the following nodes:
1492 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001493 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001494 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001495 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001496 setTargetDAGCombine(ISD::SHL);
1497 setTargetDAGCombine(ISD::SRA);
1498 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001499 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001500 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001501 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001502 setTargetDAGCombine(ISD::FADD);
1503 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001504 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001505 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001506 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001507 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001508 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001509 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001510 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001511 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001512 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001513 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001514 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001515 if (Subtarget->is64Bit())
1516 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001517 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001518
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001519 computeRegisterProperties();
1520
Evan Cheng05219282011-01-06 06:52:41 +00001521 // On Darwin, -Os means optimize for size without hurting performance,
1522 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001523 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1524 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1525 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1526 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1527 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1528 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001529 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001530
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001531 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001532 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001533
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001534 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001535}
1536
Matt Arsenault225ed702013-05-18 00:21:46 +00001537EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Duncan Sands28b77e92011-09-06 19:07:46 +00001538 if (!VT.isVector()) return MVT::i8;
1539 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001540}
1541
Evan Cheng29286502008-01-23 23:17:41 +00001542/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1543/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001544static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001545 if (MaxAlign == 16)
1546 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001547 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001548 if (VTy->getBitWidth() == 128)
1549 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001550 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001551 unsigned EltAlign = 0;
1552 getMaxByValAlign(ATy->getElementType(), EltAlign);
1553 if (EltAlign > MaxAlign)
1554 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001555 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001556 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1557 unsigned EltAlign = 0;
1558 getMaxByValAlign(STy->getElementType(i), EltAlign);
1559 if (EltAlign > MaxAlign)
1560 MaxAlign = EltAlign;
1561 if (MaxAlign == 16)
1562 break;
1563 }
1564 }
Evan Cheng29286502008-01-23 23:17:41 +00001565}
1566
1567/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1568/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001569/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1570/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001571unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001572 if (Subtarget->is64Bit()) {
1573 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001574 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001575 if (TyAlign > 8)
1576 return TyAlign;
1577 return 8;
1578 }
1579
Evan Cheng29286502008-01-23 23:17:41 +00001580 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001581 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001582 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001583 return Align;
1584}
Chris Lattner2b02a442007-02-25 08:29:00 +00001585
Evan Chengf0df0312008-05-15 08:39:06 +00001586/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001587/// and store operations as a result of memset, memcpy, and memmove
1588/// lowering. If DstAlign is zero that means it's safe to destination
1589/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1590/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001591/// probably because the source does not need to be loaded. If 'IsMemset' is
1592/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1593/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1594/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001595/// It returns EVT::Other if the type should be determined using generic
1596/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001597EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001598X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1599 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001600 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001601 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001602 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001603 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001604 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001605 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1606 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001607 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001608 (Subtarget->isUnalignedMemAccessFast() ||
1609 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001610 (SrcAlign == 0 || SrcAlign >= 16)))) {
1611 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001612 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001613 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001614 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001615 return MVT::v8f32;
1616 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001617 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001618 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001619 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001620 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001621 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001622 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001623 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001624 // Do not use f64 to lower memcpy if source is string constant. It's
1625 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001626 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001627 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001628 }
Evan Chengf0df0312008-05-15 08:39:06 +00001629 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001630 return MVT::i64;
1631 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001632}
1633
Evan Cheng7d342672012-12-12 01:32:07 +00001634bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001635 if (VT == MVT::f32)
1636 return X86ScalarSSEf32;
1637 else if (VT == MVT::f64)
1638 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001639 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001640}
1641
Evan Cheng376642e2012-12-10 23:21:26 +00001642bool
1643X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1644 if (Fast)
1645 *Fast = Subtarget->isUnalignedMemAccessFast();
1646 return true;
1647}
1648
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001649/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1650/// current function. The returned value is a member of the
1651/// MachineJumpTableInfo::JTEntryKind enum.
1652unsigned X86TargetLowering::getJumpTableEncoding() const {
1653 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1654 // symbol.
1655 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1656 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001657 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001658
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001659 // Otherwise, use the normal jump table encoding heuristics.
1660 return TargetLowering::getJumpTableEncoding();
1661}
1662
Chris Lattnerc64daab2010-01-26 05:02:42 +00001663const MCExpr *
1664X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1665 const MachineBasicBlock *MBB,
1666 unsigned uid,MCContext &Ctx) const{
1667 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1668 Subtarget->isPICStyleGOT());
1669 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1670 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001671 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1672 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001673}
1674
Evan Chengcc415862007-11-09 01:32:10 +00001675/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1676/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001677SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001678 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001679 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001680 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001681 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001682 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001683 return Table;
1684}
1685
Chris Lattner589c6f62010-01-26 06:28:43 +00001686/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1687/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1688/// MCExpr.
1689const MCExpr *X86TargetLowering::
1690getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1691 MCContext &Ctx) const {
1692 // X86-64 uses RIP relative addressing based on the jump table label.
1693 if (Subtarget->isPICStyleRIPRel())
1694 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1695
1696 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001697 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001698}
1699
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001700// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001701std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001702X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001703 const TargetRegisterClass *RRC = 0;
1704 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001705 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001706 default:
1707 return TargetLowering::findRepresentativeClass(VT);
1708 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001709 RRC = Subtarget->is64Bit() ?
1710 (const TargetRegisterClass*)&X86::GR64RegClass :
1711 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001712 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001713 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001714 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001715 break;
1716 case MVT::f32: case MVT::f64:
1717 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1718 case MVT::v4f32: case MVT::v2f64:
1719 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1720 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001721 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001722 break;
1723 }
1724 return std::make_pair(RRC, Cost);
1725}
1726
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001727bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1728 unsigned &Offset) const {
1729 if (!Subtarget->isTargetLinux())
1730 return false;
1731
1732 if (Subtarget->is64Bit()) {
1733 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1734 Offset = 0x28;
1735 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1736 AddressSpace = 256;
1737 else
1738 AddressSpace = 257;
1739 } else {
1740 // %gs:0x14 on i386
1741 Offset = 0x14;
1742 AddressSpace = 256;
1743 }
1744 return true;
1745}
1746
Chris Lattner2b02a442007-02-25 08:29:00 +00001747//===----------------------------------------------------------------------===//
1748// Return Value Calling Convention Implementation
1749//===----------------------------------------------------------------------===//
1750
Chris Lattner59ed56b2007-02-28 04:55:35 +00001751#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001752
Michael J. Spencerec38de22010-10-10 22:04:20 +00001753bool
Eric Christopher471e4222011-06-08 23:55:35 +00001754X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001755 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001756 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001757 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001758 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001759 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001760 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001761 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001762}
1763
Dan Gohman98ca4f22009-08-05 01:29:28 +00001764SDValue
1765X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001766 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001767 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001768 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001769 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001770 MachineFunction &MF = DAG.getMachineFunction();
1771 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001772
Chris Lattner9774c912007-02-27 05:28:59 +00001773 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001774 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001775 RVLocs, *DAG.getContext());
1776 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001777
Dan Gohman475871a2008-07-27 21:46:04 +00001778 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001779 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001780 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1781 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001782 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1783 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001785 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001786 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1787 CCValAssign &VA = RVLocs[i];
1788 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001789 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001790 EVT ValVT = ValToCopy.getValueType();
1791
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001792 // Promote values to the appropriate types
1793 if (VA.getLocInfo() == CCValAssign::SExt)
1794 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1795 else if (VA.getLocInfo() == CCValAssign::ZExt)
1796 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1797 else if (VA.getLocInfo() == CCValAssign::AExt)
1798 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1799 else if (VA.getLocInfo() == CCValAssign::BCvt)
1800 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1801
Dale Johannesenc4510512010-09-24 19:05:48 +00001802 // If this is x86-64, and we disabled SSE, we can't return FP values,
1803 // or SSE or MMX vectors.
1804 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1805 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001806 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001807 report_fatal_error("SSE register return with SSE disabled");
1808 }
1809 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1810 // llvm-gcc has never done it right and no one has noticed, so this
1811 // should be OK for now.
1812 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001813 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001814 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Chris Lattner447ff682008-03-11 03:23:40 +00001816 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1817 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001818 if (VA.getLocReg() == X86::ST0 ||
1819 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001820 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1821 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001822 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001823 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001824 RetOps.push_back(ValToCopy);
1825 // Don't emit a copytoreg.
1826 continue;
1827 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001828
Evan Cheng242b38b2009-02-23 09:03:22 +00001829 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1830 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001831 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001832 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001833 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001834 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001835 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1836 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001837 // If we don't have SSE2 available, convert to v4f32 so the generated
1838 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001839 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001840 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001841 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001842 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001843 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001844
Dale Johannesendd64c412009-02-04 00:33:20 +00001845 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001846 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001847 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001848 }
Dan Gohman61a92132008-04-21 23:59:07 +00001849
Eli Benderskya5597f02013-01-25 22:07:43 +00001850 // The x86-64 ABIs require that for returning structs by value we copy
1851 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001852 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001853 // We saved the argument into a virtual register in the entry block,
1854 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001855 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1856 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001857 MachineFunction &MF = DAG.getMachineFunction();
1858 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1859 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001860 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001861 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001862 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001863
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001864 unsigned RetValReg
1865 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1866 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001867 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001868 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001869
Eli Benderskya5597f02013-01-25 22:07:43 +00001870 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001871 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001872 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001873
Chris Lattner447ff682008-03-11 03:23:40 +00001874 RetOps[0] = Chain; // Update chain.
1875
1876 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001877 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001878 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001879
1880 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001881 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001882}
1883
Evan Chengbf010eb2012-04-10 01:51:00 +00001884bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001885 if (N->getNumValues() != 1)
1886 return false;
1887 if (!N->hasNUsesOfValue(1, 0))
1888 return false;
1889
Evan Chengbf010eb2012-04-10 01:51:00 +00001890 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001891 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001892 if (Copy->getOpcode() == ISD::CopyToReg) {
1893 // If the copy has a glue operand, we conservatively assume it isn't safe to
1894 // perform a tail call.
1895 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1896 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001897 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001898 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001899 return false;
1900
Evan Cheng1bf891a2010-12-01 22:59:46 +00001901 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001902 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001903 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001904 if (UI->getOpcode() != X86ISD::RET_FLAG)
1905 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001906 HasRet = true;
1907 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001908
Evan Chengbf010eb2012-04-10 01:51:00 +00001909 if (!HasRet)
1910 return false;
1911
1912 Chain = TCChain;
1913 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001914}
1915
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001916MVT
1917X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001918 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001919 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001920 // TODO: Is this also valid on 32-bit?
1921 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001922 ReturnMVT = MVT::i8;
1923 else
1924 ReturnMVT = MVT::i32;
1925
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001926 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001927 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001928}
1929
Dan Gohman98ca4f22009-08-05 01:29:28 +00001930/// LowerCallResult - Lower the result values of a call into the
1931/// appropriate copies out of appropriate physical registers.
1932///
1933SDValue
1934X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001935 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001936 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001937 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001938 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001939
Chris Lattnere32bbf62007-02-28 07:09:55 +00001940 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001941 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001942 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001943 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001944 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001945 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001946
Chris Lattner3085e152007-02-25 08:59:22 +00001947 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001948 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001949 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001950 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001951
Torok Edwin3f142c32009-02-01 18:15:56 +00001952 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001953 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001954 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001955 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001956 }
1957
Evan Cheng79fb3b42009-02-20 20:43:02 +00001958 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001959
1960 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001961 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001962 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001963 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001964 // instead.
1965 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1966 // If we prefer to use the value in xmm registers, copy it out as f80 and
1967 // use a truncate to move it from fp stack reg to xmm reg.
1968 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001969 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001970 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001971 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001972 Val = Chain.getValue(0);
1973
1974 // Round the f80 to the right size, which also moves it to the appropriate
1975 // xmm register.
1976 if (CopyVT != VA.getValVT())
1977 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1978 // This truncation won't change the value.
1979 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001980 } else {
1981 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1982 CopyVT, InFlag).getValue(1);
1983 Val = Chain.getValue(0);
1984 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001985 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001986 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001987 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001988
Dan Gohman98ca4f22009-08-05 01:29:28 +00001989 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001990}
1991
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001992//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001993// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001994//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001995// StdCall calling convention seems to be standard for many Windows' API
1996// routines and around. It differs from C calling convention just a little:
1997// callee should clean up the stack, not caller. Symbols should be also
1998// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001999// For info on fast calling convention see Fast Calling Convention (tail call)
2000// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002001
Dan Gohman98ca4f22009-08-05 01:29:28 +00002002/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002003/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002004enum StructReturnType {
2005 NotStructReturn,
2006 RegStructReturn,
2007 StackStructReturn
2008};
2009static StructReturnType
2010callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002011 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002012 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002013
Rafael Espindola1cee7102012-07-25 13:41:10 +00002014 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2015 if (!Flags.isSRet())
2016 return NotStructReturn;
2017 if (Flags.isInReg())
2018 return RegStructReturn;
2019 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002020}
2021
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002022/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002023/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002024static StructReturnType
2025argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002026 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002027 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002028
Rafael Espindola1cee7102012-07-25 13:41:10 +00002029 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2030 if (!Flags.isSRet())
2031 return NotStructReturn;
2032 if (Flags.isInReg())
2033 return RegStructReturn;
2034 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002035}
2036
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002037/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2038/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002039/// the specific parameter attribute. The copy will be passed as a byval
2040/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002041static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002042CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002043 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002044 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002045 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002046
Dale Johannesendd64c412009-02-04 00:33:20 +00002047 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002048 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002049 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002050}
2051
Chris Lattner29689432010-03-11 00:22:57 +00002052/// IsTailCallConvention - Return true if the calling convention is one that
2053/// supports tail call optimization.
2054static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002055 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2056 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002057}
2058
Charles Davisac226bb2013-07-12 06:02:35 +00002059/// \brief Return true if the calling convention is a C calling convention.
2060static bool IsCCallConvention(CallingConv::ID CC) {
2061 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2062 CC == CallingConv::X86_64_SysV);
2063}
2064
Evan Cheng485fafc2011-03-21 01:19:09 +00002065bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002066 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002067 return false;
2068
2069 CallSite CS(CI);
2070 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002071 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002072 return false;
2073
2074 return true;
2075}
2076
Evan Cheng0c439eb2010-01-27 00:07:07 +00002077/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2078/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002079static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2080 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002081 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002082}
2083
Dan Gohman98ca4f22009-08-05 01:29:28 +00002084SDValue
2085X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002086 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002087 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002088 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002089 const CCValAssign &VA,
2090 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002091 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002092 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002093 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002094 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2095 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002096 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002097 EVT ValVT;
2098
2099 // If value is passed by pointer we have address passed instead of the value
2100 // itself.
2101 if (VA.getLocInfo() == CCValAssign::Indirect)
2102 ValVT = VA.getLocVT();
2103 else
2104 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002105
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002106 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002107 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002108 // In case of tail call optimization mark all arguments mutable. Since they
2109 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002110 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002111 unsigned Bytes = Flags.getByValSize();
2112 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2113 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002114 return DAG.getFrameIndex(FI, getPointerTy());
2115 } else {
2116 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002117 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002118 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2119 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002120 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002121 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002122 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002123}
2124
Dan Gohman475871a2008-07-27 21:46:04 +00002125SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002126X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002127 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002128 bool isVarArg,
2129 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002130 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002131 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002132 SmallVectorImpl<SDValue> &InVals)
2133 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002134 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002135 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002136
Gordon Henriksen86737662008-01-05 16:56:59 +00002137 const Function* Fn = MF.getFunction();
2138 if (Fn->hasExternalLinkage() &&
2139 Subtarget->isTargetCygMing() &&
2140 Fn->getName() == "main")
2141 FuncInfo->setForceFramePointer(true);
2142
Evan Cheng1bc78042006-04-26 01:20:17 +00002143 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002144 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002145 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002146 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002147
Chris Lattner29689432010-03-11 00:22:57 +00002148 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002149 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002150
Chris Lattner638402b2007-02-28 07:00:42 +00002151 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002152 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002153 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002154 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002155
2156 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002157 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002158 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002159
Duncan Sands45907662010-10-31 13:21:44 +00002160 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002161
Chris Lattnerf39f7712007-02-28 05:46:49 +00002162 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002163 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002164 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2165 CCValAssign &VA = ArgLocs[i];
2166 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2167 // places.
2168 assert(VA.getValNo() != LastVal &&
2169 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002170 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002171 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002172
Chris Lattnerf39f7712007-02-28 05:46:49 +00002173 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002174 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002175 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002176 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002177 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002178 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002179 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002180 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002181 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002182 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002183 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002184 else if (RegVT.is512BitVector())
2185 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002186 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002187 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002188 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002189 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002190 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002191 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002192 else if (RegVT == MVT::v8i1)
2193 RC = &X86::VK8RegClass;
2194 else if (RegVT == MVT::v16i1)
2195 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002196 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002197 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002198
Devang Patel68e6bee2011-02-21 23:21:26 +00002199 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002200 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002201
Chris Lattnerf39f7712007-02-28 05:46:49 +00002202 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2203 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2204 // right size.
2205 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002206 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002207 DAG.getValueType(VA.getValVT()));
2208 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002209 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002210 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002211 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002212 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002213
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002214 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002215 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002216 if (RegVT.isVector())
2217 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2218 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002219 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002220 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002221 } else {
2222 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002223 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002224 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002225
2226 // If value is passed via pointer - do a load.
2227 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002228 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002229 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002230
Dan Gohman98ca4f22009-08-05 01:29:28 +00002231 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002232 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002233
Eli Benderskya5597f02013-01-25 22:07:43 +00002234 // The x86-64 ABIs require that for returning structs by value we copy
2235 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002236 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002237 // Save the argument into a virtual register so that we can access it
2238 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002239 if (MF.getFunction()->hasStructRetAttr() &&
2240 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002241 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2242 unsigned Reg = FuncInfo->getSRetReturnReg();
2243 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002244 MVT PtrTy = getPointerTy();
2245 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002246 FuncInfo->setSRetReturnReg(Reg);
2247 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002248 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002249 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002250 }
2251
Chris Lattnerf39f7712007-02-28 05:46:49 +00002252 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002253 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002254 if (FuncIsMadeTailCallSafe(CallConv,
2255 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002256 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002257
Evan Cheng1bc78042006-04-26 01:20:17 +00002258 // If the function takes variable number of arguments, make a frame index for
2259 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002260 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002261 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2262 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002263 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002264 }
2265 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002266 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2267
2268 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002269 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002270 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002271 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002272 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002273 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2274 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002275 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002276 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2277 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2278 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002279 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002280 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002281
2282 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002283 // The XMM registers which might contain var arg parameters are shadowed
2284 // in their paired GPR. So we only need to save the GPR to their home
2285 // slots.
2286 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002287 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002288 } else {
2289 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2290 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002291
Chad Rosier30450e82011-12-22 22:35:21 +00002292 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2293 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002294 }
2295 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2296 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002297
Bill Wendling831737d2012-12-30 10:32:01 +00002298 bool NoImplicitFloatOps = Fn->getAttributes().
2299 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002300 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002301 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002302 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2303 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002304 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002305 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002306 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002307 // Kernel mode asks for SSE to be disabled, so don't push them
2308 // on the stack.
2309 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002310
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002311 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002312 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002313 // Get to the caller-allocated home save location. Add 8 to account
2314 // for the return address.
2315 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002316 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002317 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002318 // Fixup to set vararg frame on shadow area (4 x i64).
2319 if (NumIntRegs < 4)
2320 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002321 } else {
2322 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002323 // registers, then we must store them to their spots on the stack so
2324 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002325 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2326 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2327 FuncInfo->setRegSaveFrameIndex(
2328 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002329 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002330 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002331
Gordon Henriksen86737662008-01-05 16:56:59 +00002332 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002333 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002334 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2335 getPointerTy());
2336 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002337 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002338 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2339 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002340 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002341 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002342 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002343 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002344 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002345 MachinePointerInfo::getFixedStack(
2346 FuncInfo->getRegSaveFrameIndex(), Offset),
2347 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002348 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002349 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002350 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002351
Dan Gohmanface41a2009-08-16 21:24:25 +00002352 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2353 // Now store the XMM (fp + vector) parameter registers.
2354 SmallVector<SDValue, 11> SaveXMMOps;
2355 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002356
Craig Topperc9099502012-04-20 06:31:50 +00002357 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002358 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2359 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002360
Dan Gohman1e93df62010-04-17 14:41:14 +00002361 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2362 FuncInfo->getRegSaveFrameIndex()));
2363 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2364 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002365
Dan Gohmanface41a2009-08-16 21:24:25 +00002366 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002367 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002368 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002369 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2370 SaveXMMOps.push_back(Val);
2371 }
2372 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2373 MVT::Other,
2374 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002375 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002376
2377 if (!MemOps.empty())
2378 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2379 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002380 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002381 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002382
Gordon Henriksen86737662008-01-05 16:56:59 +00002383 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002384 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2385 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002386 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002387 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002388 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002389 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002390 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002391 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002392 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002393 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002394
Gordon Henriksen86737662008-01-05 16:56:59 +00002395 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002396 // RegSaveFrameIndex is X86-64 only.
2397 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002398 if (CallConv == CallingConv::X86_FastCall ||
2399 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002400 // fastcc functions can't have varargs.
2401 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002402 }
Evan Cheng25caf632006-05-23 21:06:34 +00002403
Rafael Espindola76927d752011-08-30 19:39:58 +00002404 FuncInfo->setArgumentStackSize(StackSize);
2405
Dan Gohman98ca4f22009-08-05 01:29:28 +00002406 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002407}
2408
Dan Gohman475871a2008-07-27 21:46:04 +00002409SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002410X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2411 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002412 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002413 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002414 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002415 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002416 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002417 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002418 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002419 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002420
2421 return DAG.getStore(Chain, dl, Arg, PtrOff,
2422 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002423 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002424}
2425
Bill Wendling64e87322009-01-16 19:25:27 +00002426/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002427/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002428SDValue
2429X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002430 SDValue &OutRetAddr, SDValue Chain,
2431 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002432 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002433 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002434 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002435 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002436
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002437 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002438 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002439 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002440 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002441}
2442
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002443/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002444/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002445static SDValue
2446EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002447 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002448 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002449 // Store the return address to the appropriate stack slot.
2450 if (!FPDiff) return Chain;
2451 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002452 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002453 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2454 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002455 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002456 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002457 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002458 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002459 return Chain;
2460}
2461
Dan Gohman98ca4f22009-08-05 01:29:28 +00002462SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002463X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002464 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002465 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002466 SDLoc &dl = CLI.DL;
2467 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2468 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2469 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002470 SDValue Chain = CLI.Chain;
2471 SDValue Callee = CLI.Callee;
2472 CallingConv::ID CallConv = CLI.CallConv;
2473 bool &isTailCall = CLI.IsTailCall;
2474 bool isVarArg = CLI.IsVarArg;
2475
Dan Gohman98ca4f22009-08-05 01:29:28 +00002476 MachineFunction &MF = DAG.getMachineFunction();
2477 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002478 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002479 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002480 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002481 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002482
Nick Lewycky22de16d2012-01-19 00:34:10 +00002483 if (MF.getTarget().Options.DisableTailCalls)
2484 isTailCall = false;
2485
Evan Cheng5f941932010-02-05 02:21:12 +00002486 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002487 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002488 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002489 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002490 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002491 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002492
2493 // Sibcalls are automatically detected tailcalls which do not require
2494 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002495 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002496 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002497
2498 if (isTailCall)
2499 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002500 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002501
Chris Lattner29689432010-03-11 00:22:57 +00002502 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002503 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002504
Chris Lattner638402b2007-02-28 07:00:42 +00002505 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002506 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002507 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002508 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002509
2510 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002511 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002512 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002513
Duncan Sands45907662010-10-31 13:21:44 +00002514 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002515
Chris Lattner423c5f42007-02-28 05:31:48 +00002516 // Get a count of how many bytes are to be pushed on the stack.
2517 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002518 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002519 // This is a sibcall. The memory operands are available in caller's
2520 // own caller's stack.
2521 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002522 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2523 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002524 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002525
Gordon Henriksen86737662008-01-05 16:56:59 +00002526 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002527 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002528 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002529 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2530 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2531
Gordon Henriksen86737662008-01-05 16:56:59 +00002532 FPDiff = NumBytesCallerPushed - NumBytes;
2533
2534 // Set the delta of movement of the returnaddr stackslot.
2535 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002536 if (FPDiff < X86Info->getTCReturnAddrDelta())
2537 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002538 }
2539
Evan Chengf22f9b32010-02-06 03:28:46 +00002540 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002541 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2542 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002543
Dan Gohman475871a2008-07-27 21:46:04 +00002544 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002545 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002546 if (isTailCall && FPDiff)
2547 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2548 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002549
Dan Gohman475871a2008-07-27 21:46:04 +00002550 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2551 SmallVector<SDValue, 8> MemOpChains;
2552 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002553
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002554 // Walk the register/memloc assignments, inserting copies/loads. In the case
2555 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002556 const X86RegisterInfo *RegInfo =
2557 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002558 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2559 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002560 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002561 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002562 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002563 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002564
Chris Lattner423c5f42007-02-28 05:31:48 +00002565 // Promote the value if needed.
2566 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002567 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002568 case CCValAssign::Full: break;
2569 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002570 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002571 break;
2572 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002573 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002574 break;
2575 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002576 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002577 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002578 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002579 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2580 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002581 } else
2582 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2583 break;
2584 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002585 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002586 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002587 case CCValAssign::Indirect: {
2588 // Store the argument.
2589 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002590 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002591 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002592 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002593 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002594 Arg = SpillSlot;
2595 break;
2596 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002598
Chris Lattner423c5f42007-02-28 05:31:48 +00002599 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002600 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2601 if (isVarArg && IsWin64) {
2602 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2603 // shadow reg if callee is a varargs function.
2604 unsigned ShadowReg = 0;
2605 switch (VA.getLocReg()) {
2606 case X86::XMM0: ShadowReg = X86::RCX; break;
2607 case X86::XMM1: ShadowReg = X86::RDX; break;
2608 case X86::XMM2: ShadowReg = X86::R8; break;
2609 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002610 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002611 if (ShadowReg)
2612 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002613 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002614 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002615 assert(VA.isMemLoc());
2616 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002617 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2618 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002619 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2620 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002621 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002622 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002623
Evan Cheng32fe1032006-05-25 00:59:30 +00002624 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002625 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002626 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002627
Chris Lattner88e1fd52009-07-09 04:24:46 +00002628 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002629 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2630 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002631 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002632 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002633 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002634 } else {
2635 // If we are tail calling and generating PIC/GOT style code load the
2636 // address of the callee into ECX. The value in ecx is used as target of
2637 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2638 // for tail calls on PIC/GOT architectures. Normally we would just put the
2639 // address of GOT into ebx and then call target@PLT. But for tail calls
2640 // ebx would be restored (since ebx is callee saved) before jumping to the
2641 // target@PLT.
2642
2643 // Note: The actual moving to ECX is done further down.
2644 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2645 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2646 !G->getGlobal()->hasProtectedVisibility())
2647 Callee = LowerGlobalAddress(Callee, DAG);
2648 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002649 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002650 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002651 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002652
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002653 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002654 // From AMD64 ABI document:
2655 // For calls that may call functions that use varargs or stdargs
2656 // (prototype-less calls or calls to functions containing ellipsis (...) in
2657 // the declaration) %al is used as hidden argument to specify the number
2658 // of SSE registers used. The contents of %al do not need to match exactly
2659 // the number of registers, but must be an ubound on the number of SSE
2660 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002661
Gordon Henriksen86737662008-01-05 16:56:59 +00002662 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002663 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002664 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2665 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2666 };
2667 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002668 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002669 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002670
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002671 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2672 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002673 }
2674
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002675 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002676 if (isTailCall) {
2677 // Force all the incoming stack arguments to be loaded from the stack
2678 // before any new outgoing arguments are stored to the stack, because the
2679 // outgoing stack slots may alias the incoming argument stack slots, and
2680 // the alias isn't otherwise explicit. This is slightly more conservative
2681 // than necessary, because it means that each store effectively depends
2682 // on every argument instead of just those arguments it would clobber.
2683 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2684
Dan Gohman475871a2008-07-27 21:46:04 +00002685 SmallVector<SDValue, 8> MemOpChains2;
2686 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002687 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002688 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002689 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2690 CCValAssign &VA = ArgLocs[i];
2691 if (VA.isRegLoc())
2692 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002693 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002694 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002695 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002696 // Create frame index.
2697 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002698 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002699 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002700 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002701
Duncan Sands276dcbd2008-03-21 09:14:45 +00002702 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002703 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002704 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002705 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002706 StackPtr = DAG.getCopyFromReg(Chain, dl,
2707 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002708 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002709 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002710
Dan Gohman98ca4f22009-08-05 01:29:28 +00002711 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2712 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002713 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002714 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002715 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002716 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002717 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002718 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002719 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002720 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002721 }
2722 }
2723
2724 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002725 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002726 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002727
2728 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002729 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2730 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002731 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002732 }
2733
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002734 // Build a sequence of copy-to-reg nodes chained together with token chain
2735 // and flag operands which copy the outgoing args into registers.
2736 SDValue InFlag;
2737 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2738 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2739 RegsToPass[i].second, InFlag);
2740 InFlag = Chain.getValue(1);
2741 }
2742
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002743 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2744 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2745 // In the 64-bit large code model, we have to make all calls
2746 // through a register, since the call instruction's 32-bit
2747 // pc-relative offset may not be large enough to hold the whole
2748 // address.
2749 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002750 // If the callee is a GlobalAddress node (quite common, every direct call
2751 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2752 // it.
2753
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002754 // We should use extra load for direct calls to dllimported functions in
2755 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002756 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002757 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002758 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002759 bool ExtraLoad = false;
2760 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002761
Chris Lattner48a7d022009-07-09 05:02:21 +00002762 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2763 // external symbols most go through the PLT in PIC mode. If the symbol
2764 // has hidden or protected visibility, or if it is static or local, then
2765 // we don't need to use the PLT - we can directly call it.
2766 if (Subtarget->isTargetELF() &&
2767 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002768 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002769 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002770 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002771 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002772 (!Subtarget->getTargetTriple().isMacOSX() ||
2773 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002774 // PC-relative references to external symbols should go through $stub,
2775 // unless we're building with the leopard linker or later, which
2776 // automatically synthesizes these stubs.
2777 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002778 } else if (Subtarget->isPICStyleRIPRel() &&
2779 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002780 cast<Function>(GV)->getAttributes().
2781 hasAttribute(AttributeSet::FunctionIndex,
2782 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002783 // If the function is marked as non-lazy, generate an indirect call
2784 // which loads from the GOT directly. This avoids runtime overhead
2785 // at the cost of eager binding (and one extra byte of encoding).
2786 OpFlags = X86II::MO_GOTPCREL;
2787 WrapperKind = X86ISD::WrapperRIP;
2788 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002789 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002790
Devang Patel0d881da2010-07-06 22:08:15 +00002791 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002792 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002793
2794 // Add a wrapper if needed.
2795 if (WrapperKind != ISD::DELETED_NODE)
2796 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2797 // Add extra indirection if needed.
2798 if (ExtraLoad)
2799 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2800 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002801 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002802 }
Bill Wendling056292f2008-09-16 21:48:12 +00002803 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002804 unsigned char OpFlags = 0;
2805
Evan Cheng1bf891a2010-12-01 22:59:46 +00002806 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2807 // external symbols should go through the PLT.
2808 if (Subtarget->isTargetELF() &&
2809 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2810 OpFlags = X86II::MO_PLT;
2811 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002812 (!Subtarget->getTargetTriple().isMacOSX() ||
2813 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002814 // PC-relative references to external symbols should go through $stub,
2815 // unless we're building with the leopard linker or later, which
2816 // automatically synthesizes these stubs.
2817 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002818 }
Eric Christopherfd179292009-08-27 18:07:15 +00002819
Chris Lattner48a7d022009-07-09 05:02:21 +00002820 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2821 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002822 }
2823
Chris Lattnerd96d0722007-02-25 06:40:16 +00002824 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002825 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002826 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002827
Evan Chengf22f9b32010-02-06 03:28:46 +00002828 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002829 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002830 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002831 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002832 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002833
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002834 Ops.push_back(Chain);
2835 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002836
Dan Gohman98ca4f22009-08-05 01:29:28 +00002837 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002838 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002839
Gordon Henriksen86737662008-01-05 16:56:59 +00002840 // Add argument registers to the end of the list so that they are known live
2841 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002842 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2843 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2844 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002845
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002846 // Add a register mask operand representing the call-preserved registers.
2847 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2848 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2849 assert(Mask && "Missing call preserved mask for calling convention");
2850 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002851
Gabor Greifba36cb52008-08-28 21:40:38 +00002852 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002853 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002854
Dan Gohman98ca4f22009-08-05 01:29:28 +00002855 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002856 // We used to do:
2857 //// If this is the first return lowered for this function, add the regs
2858 //// to the liveout set for the function.
2859 // This isn't right, although it's probably harmless on x86; liveouts
2860 // should be computed from returns not tail calls. Consider a void
2861 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002862 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002863 }
2864
Dale Johannesenace16102009-02-03 19:33:06 +00002865 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002866 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002867
Chris Lattner2d297092006-05-23 18:50:38 +00002868 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002869 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002870 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2871 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002872 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002873 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002874 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002875 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002876 // pops the hidden struct pointer, so we have to push it back.
2877 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002878 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002879 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002880 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002881 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002882
Gordon Henriksenae636f82008-01-03 16:47:34 +00002883 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002884 if (!IsSibcall) {
2885 Chain = DAG.getCALLSEQ_END(Chain,
2886 DAG.getIntPtrConstant(NumBytes, true),
2887 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2888 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002889 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002890 InFlag = Chain.getValue(1);
2891 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002892
Chris Lattner3085e152007-02-25 08:59:22 +00002893 // Handle result values, copying them out of physregs into vregs that we
2894 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002895 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2896 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002897}
2898
Evan Cheng25ab6902006-09-08 06:48:29 +00002899//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002900// Fast Calling Convention (tail call) implementation
2901//===----------------------------------------------------------------------===//
2902
2903// Like std call, callee cleans arguments, convention except that ECX is
2904// reserved for storing the tail called function address. Only 2 registers are
2905// free for argument passing (inreg). Tail call optimization is performed
2906// provided:
2907// * tailcallopt is enabled
2908// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002909// On X86_64 architecture with GOT-style position independent code only local
2910// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002911// To keep the stack aligned according to platform abi the function
2912// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2913// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002914// If a tail called function callee has more arguments than the caller the
2915// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002916// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002917// original REtADDR, but before the saved framepointer or the spilled registers
2918// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2919// stack layout:
2920// arg1
2921// arg2
2922// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002923// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002924// move area ]
2925// (possible EBP)
2926// ESI
2927// EDI
2928// local1 ..
2929
2930/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2931/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002932unsigned
2933X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2934 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002935 MachineFunction &MF = DAG.getMachineFunction();
2936 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002937 const X86RegisterInfo *RegInfo =
2938 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002939 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002940 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002941 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002942 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002943 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002944 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2945 // Number smaller than 12 so just add the difference.
2946 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2947 } else {
2948 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002949 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002950 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002951 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002952 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002953}
2954
Evan Cheng5f941932010-02-05 02:21:12 +00002955/// MatchingStackOffset - Return true if the given stack call argument is
2956/// already available in the same position (relatively) of the caller's
2957/// incoming argument stack.
2958static
2959bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2960 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2961 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002962 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2963 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002964 if (Arg.getOpcode() == ISD::CopyFromReg) {
2965 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002966 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002967 return false;
2968 MachineInstr *Def = MRI->getVRegDef(VR);
2969 if (!Def)
2970 return false;
2971 if (!Flags.isByVal()) {
2972 if (!TII->isLoadFromStackSlot(Def, FI))
2973 return false;
2974 } else {
2975 unsigned Opcode = Def->getOpcode();
2976 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2977 Def->getOperand(1).isFI()) {
2978 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002979 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002980 } else
2981 return false;
2982 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002983 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2984 if (Flags.isByVal())
2985 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002986 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002987 // define @foo(%struct.X* %A) {
2988 // tail call @bar(%struct.X* byval %A)
2989 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002990 return false;
2991 SDValue Ptr = Ld->getBasePtr();
2992 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2993 if (!FINode)
2994 return false;
2995 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002996 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002997 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002998 FI = FINode->getIndex();
2999 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003000 } else
3001 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003002
Evan Cheng4cae1332010-03-05 08:38:04 +00003003 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003004 if (!MFI->isFixedObjectIndex(FI))
3005 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003006 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003007}
3008
Dan Gohman98ca4f22009-08-05 01:29:28 +00003009/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3010/// for tail call optimization. Targets which want to do tail call
3011/// optimization should implement this function.
3012bool
3013X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003014 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003015 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003016 bool isCalleeStructRet,
3017 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003018 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003019 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003020 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003021 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003022 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003023 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003024 return false;
3025
Evan Cheng7096ae42010-01-29 06:45:59 +00003026 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003027 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003028 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003029
3030 // If the function return type is x86_fp80 and the callee return type is not,
3031 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3032 // perform a tailcall optimization here.
3033 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3034 return false;
3035
Evan Cheng13617962010-04-30 01:12:32 +00003036 CallingConv::ID CallerCC = CallerF->getCallingConv();
3037 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003038 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3039 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003040
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003041 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003042 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003043 return true;
3044 return false;
3045 }
3046
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003047 // Look for obvious safe cases to perform tail call optimization that do not
3048 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003049
Evan Cheng2c12cb42010-03-26 16:26:03 +00003050 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3051 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003052 const X86RegisterInfo *RegInfo =
3053 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003054 if (RegInfo->needsStackRealignment(MF))
3055 return false;
3056
Evan Chenga375d472010-03-15 18:54:48 +00003057 // Also avoid sibcall optimization if either caller or callee uses struct
3058 // return semantics.
3059 if (isCalleeStructRet || isCallerStructRet)
3060 return false;
3061
Chad Rosier2416da32011-06-24 21:15:36 +00003062 // An stdcall caller is expected to clean up its arguments; the callee
3063 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003064 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003065 return false;
3066
Chad Rosier871f6642011-05-18 19:59:50 +00003067 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003068 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003069 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003070
3071 // Optimizing for varargs on Win64 is unlikely to be safe without
3072 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003073 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003074 return false;
3075
Chad Rosier871f6642011-05-18 19:59:50 +00003076 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003077 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003078 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003079
Chad Rosier871f6642011-05-18 19:59:50 +00003080 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3081 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3082 if (!ArgLocs[i].isRegLoc())
3083 return false;
3084 }
3085
Chad Rosier30450e82011-12-22 22:35:21 +00003086 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3087 // stack. Therefore, if it's not used by the call it is not safe to optimize
3088 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003089 bool Unused = false;
3090 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3091 if (!Ins[i].Used) {
3092 Unused = true;
3093 break;
3094 }
3095 }
3096 if (Unused) {
3097 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003098 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003099 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003100 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003101 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003102 CCValAssign &VA = RVLocs[i];
3103 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3104 return false;
3105 }
3106 }
3107
Evan Cheng13617962010-04-30 01:12:32 +00003108 // If the calling conventions do not match, then we'd better make sure the
3109 // results are returned in the same way as what the caller expects.
3110 if (!CCMatch) {
3111 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003112 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003113 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003114 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3115
3116 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003117 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003118 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003119 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3120
3121 if (RVLocs1.size() != RVLocs2.size())
3122 return false;
3123 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3124 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3125 return false;
3126 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3127 return false;
3128 if (RVLocs1[i].isRegLoc()) {
3129 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3130 return false;
3131 } else {
3132 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3133 return false;
3134 }
3135 }
3136 }
3137
Evan Chenga6bff982010-01-30 01:22:00 +00003138 // If the callee takes no arguments then go on to check the results of the
3139 // call.
3140 if (!Outs.empty()) {
3141 // Check if stack adjustment is needed. For now, do not do this if any
3142 // argument is passed on the stack.
3143 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003144 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003145 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003146
3147 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003148 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003149 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003150
Duncan Sands45907662010-10-31 13:21:44 +00003151 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003152 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003153 MachineFunction &MF = DAG.getMachineFunction();
3154 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3155 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003156
3157 // Check if the arguments are already laid out in the right way as
3158 // the caller's fixed stack objects.
3159 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003160 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3161 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003162 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003163 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3164 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003165 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003166 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003167 if (VA.getLocInfo() == CCValAssign::Indirect)
3168 return false;
3169 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003170 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3171 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003172 return false;
3173 }
3174 }
3175 }
Evan Cheng9c044672010-05-29 01:35:22 +00003176
3177 // If the tailcall address may be in a register, then make sure it's
3178 // possible to register allocate for it. In 32-bit, the call address can
3179 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003180 // callee-saved registers are restored. These happen to be the same
3181 // registers used to pass 'inreg' arguments so watch out for those.
3182 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003183 ((!isa<GlobalAddressSDNode>(Callee) &&
3184 !isa<ExternalSymbolSDNode>(Callee)) ||
3185 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003186 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003187 // In PIC we need an extra register to formulate the address computation
3188 // for the callee.
3189 unsigned MaxInRegs =
3190 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3191
Evan Cheng9c044672010-05-29 01:35:22 +00003192 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3193 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003194 if (!VA.isRegLoc())
3195 continue;
3196 unsigned Reg = VA.getLocReg();
3197 switch (Reg) {
3198 default: break;
3199 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003200 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003201 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003202 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003203 }
3204 }
3205 }
Evan Chenga6bff982010-01-30 01:22:00 +00003206 }
Evan Chengb1712452010-01-27 06:25:16 +00003207
Evan Cheng86809cc2010-02-03 03:28:02 +00003208 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003209}
3210
Dan Gohman3df24e62008-09-03 23:12:08 +00003211FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003212X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3213 const TargetLibraryInfo *libInfo) const {
3214 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003215}
3216
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003217//===----------------------------------------------------------------------===//
3218// Other Lowering Hooks
3219//===----------------------------------------------------------------------===//
3220
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003221static bool MayFoldLoad(SDValue Op) {
3222 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3223}
3224
3225static bool MayFoldIntoStore(SDValue Op) {
3226 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3227}
3228
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003229static bool isTargetShuffle(unsigned Opcode) {
3230 switch(Opcode) {
3231 default: return false;
3232 case X86ISD::PSHUFD:
3233 case X86ISD::PSHUFHW:
3234 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003235 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003236 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003237 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003238 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003239 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003240 case X86ISD::MOVLPS:
3241 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003242 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003243 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003244 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003245 case X86ISD::MOVSS:
3246 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003247 case X86ISD::UNPCKL:
3248 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003249 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003250 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003251 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003252 return true;
3253 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003254}
3255
Andrew Trickac6d9be2013-05-25 02:42:55 +00003256static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003257 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003258 switch(Opc) {
3259 default: llvm_unreachable("Unknown x86 shuffle node");
3260 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003261 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003262 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003263 return DAG.getNode(Opc, dl, VT, V1);
3264 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003265}
3266
Andrew Trickac6d9be2013-05-25 02:42:55 +00003267static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003268 SDValue V1, unsigned TargetMask,
3269 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003270 switch(Opc) {
3271 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003272 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003273 case X86ISD::PSHUFHW:
3274 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003275 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003276 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003277 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3278 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003279}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003280
Andrew Trickac6d9be2013-05-25 02:42:55 +00003281static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003282 SDValue V1, SDValue V2, unsigned TargetMask,
3283 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003284 switch(Opc) {
3285 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003286 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003287 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003288 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003289 return DAG.getNode(Opc, dl, VT, V1, V2,
3290 DAG.getConstant(TargetMask, MVT::i8));
3291 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003292}
3293
Andrew Trickac6d9be2013-05-25 02:42:55 +00003294static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003295 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3296 switch(Opc) {
3297 default: llvm_unreachable("Unknown x86 shuffle node");
3298 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003299 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003300 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003301 case X86ISD::MOVLPS:
3302 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003303 case X86ISD::MOVSS:
3304 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003305 case X86ISD::UNPCKL:
3306 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003307 return DAG.getNode(Opc, dl, VT, V1, V2);
3308 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003309}
3310
Dan Gohmand858e902010-04-17 15:26:15 +00003311SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003312 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003313 const X86RegisterInfo *RegInfo =
3314 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003315 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3316 int ReturnAddrIndex = FuncInfo->getRAIndex();
3317
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003318 if (ReturnAddrIndex == 0) {
3319 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003320 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003321 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3322 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003323 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003324 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003325 }
3326
Evan Cheng25ab6902006-09-08 06:48:29 +00003327 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003328}
3329
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003330bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3331 bool hasSymbolicDisplacement) {
3332 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003333 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003334 return false;
3335
3336 // If we don't have a symbolic displacement - we don't have any extra
3337 // restrictions.
3338 if (!hasSymbolicDisplacement)
3339 return true;
3340
3341 // FIXME: Some tweaks might be needed for medium code model.
3342 if (M != CodeModel::Small && M != CodeModel::Kernel)
3343 return false;
3344
3345 // For small code model we assume that latest object is 16MB before end of 31
3346 // bits boundary. We may also accept pretty large negative constants knowing
3347 // that all objects are in the positive half of address space.
3348 if (M == CodeModel::Small && Offset < 16*1024*1024)
3349 return true;
3350
3351 // For kernel code model we know that all object resist in the negative half
3352 // of 32bits address space. We may not accept negative offsets, since they may
3353 // be just off and we may accept pretty large positive ones.
3354 if (M == CodeModel::Kernel && Offset > 0)
3355 return true;
3356
3357 return false;
3358}
3359
Evan Chengef41ff62011-06-23 17:54:54 +00003360/// isCalleePop - Determines whether the callee is required to pop its
3361/// own arguments. Callee pop is necessary to support tail calls.
3362bool X86::isCalleePop(CallingConv::ID CallingConv,
3363 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3364 if (IsVarArg)
3365 return false;
3366
3367 switch (CallingConv) {
3368 default:
3369 return false;
3370 case CallingConv::X86_StdCall:
3371 return !is64Bit;
3372 case CallingConv::X86_FastCall:
3373 return !is64Bit;
3374 case CallingConv::X86_ThisCall:
3375 return !is64Bit;
3376 case CallingConv::Fast:
3377 return TailCallOpt;
3378 case CallingConv::GHC:
3379 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003380 case CallingConv::HiPE:
3381 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003382 }
3383}
3384
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003385/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3386/// specific condition code, returning the condition code and the LHS/RHS of the
3387/// comparison to make.
3388static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3389 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003390 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003391 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3392 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3393 // X > -1 -> X == 0, jump !sign.
3394 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003395 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003396 }
3397 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003398 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003399 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003400 }
3401 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003402 // X < 1 -> X <= 0
3403 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003404 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003405 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003406 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003407
Evan Chengd9558e02006-01-06 00:43:03 +00003408 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003409 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003410 case ISD::SETEQ: return X86::COND_E;
3411 case ISD::SETGT: return X86::COND_G;
3412 case ISD::SETGE: return X86::COND_GE;
3413 case ISD::SETLT: return X86::COND_L;
3414 case ISD::SETLE: return X86::COND_LE;
3415 case ISD::SETNE: return X86::COND_NE;
3416 case ISD::SETULT: return X86::COND_B;
3417 case ISD::SETUGT: return X86::COND_A;
3418 case ISD::SETULE: return X86::COND_BE;
3419 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003420 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003421 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003422
Chris Lattner4c78e022008-12-23 23:42:27 +00003423 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003424
Chris Lattner4c78e022008-12-23 23:42:27 +00003425 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003426 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3427 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003428 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3429 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003430 }
3431
Chris Lattner4c78e022008-12-23 23:42:27 +00003432 switch (SetCCOpcode) {
3433 default: break;
3434 case ISD::SETOLT:
3435 case ISD::SETOLE:
3436 case ISD::SETUGT:
3437 case ISD::SETUGE:
3438 std::swap(LHS, RHS);
3439 break;
3440 }
3441
3442 // On a floating point condition, the flags are set as follows:
3443 // ZF PF CF op
3444 // 0 | 0 | 0 | X > Y
3445 // 0 | 0 | 1 | X < Y
3446 // 1 | 0 | 0 | X == Y
3447 // 1 | 1 | 1 | unordered
3448 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003449 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003450 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003451 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003452 case ISD::SETOLT: // flipped
3453 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003454 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003455 case ISD::SETOLE: // flipped
3456 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003457 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003458 case ISD::SETUGT: // flipped
3459 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003460 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003461 case ISD::SETUGE: // flipped
3462 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003463 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003464 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003465 case ISD::SETNE: return X86::COND_NE;
3466 case ISD::SETUO: return X86::COND_P;
3467 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003468 case ISD::SETOEQ:
3469 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003470 }
Evan Chengd9558e02006-01-06 00:43:03 +00003471}
3472
Evan Cheng4a460802006-01-11 00:33:36 +00003473/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3474/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003475/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003476static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003477 switch (X86CC) {
3478 default:
3479 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003480 case X86::COND_B:
3481 case X86::COND_BE:
3482 case X86::COND_E:
3483 case X86::COND_P:
3484 case X86::COND_A:
3485 case X86::COND_AE:
3486 case X86::COND_NE:
3487 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003488 return true;
3489 }
3490}
3491
Evan Chengeb2f9692009-10-27 19:56:55 +00003492/// isFPImmLegal - Returns true if the target can instruction select the
3493/// specified FP immediate natively. If false, the legalizer will
3494/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003495bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003496 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3497 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3498 return true;
3499 }
3500 return false;
3501}
3502
Nate Begeman9008ca62009-04-27 18:41:29 +00003503/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3504/// the specified range (L, H].
3505static bool isUndefOrInRange(int Val, int Low, int Hi) {
3506 return (Val < 0) || (Val >= Low && Val < Hi);
3507}
3508
3509/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3510/// specified value.
3511static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003512 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003513}
3514
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003515/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003516/// from position Pos and ending in Pos+Size, falls within the specified
3517/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003518static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003519 unsigned Pos, unsigned Size, int Low) {
3520 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003521 if (!isUndefOrEqual(Mask[i], Low))
3522 return false;
3523 return true;
3524}
3525
Nate Begeman9008ca62009-04-27 18:41:29 +00003526/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3527/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3528/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003529static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003530 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003531 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003532 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003533 return (Mask[0] < 2 && Mask[1] < 2);
3534 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003535}
3536
Nate Begeman9008ca62009-04-27 18:41:29 +00003537/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3538/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003539static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003540 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003541 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003542
Nate Begeman9008ca62009-04-27 18:41:29 +00003543 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003544 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3545 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003546
Evan Cheng506d3df2006-03-29 23:07:14 +00003547 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003548 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003549 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003550 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003551
Craig Toppera9a568a2012-05-02 08:03:44 +00003552 if (VT == MVT::v16i16) {
3553 // Lower quadword copied in order or undef.
3554 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3555 return false;
3556
3557 // Upper quadword shuffled.
3558 for (unsigned i = 12; i != 16; ++i)
3559 if (!isUndefOrInRange(Mask[i], 12, 16))
3560 return false;
3561 }
3562
Evan Cheng506d3df2006-03-29 23:07:14 +00003563 return true;
3564}
3565
Nate Begeman9008ca62009-04-27 18:41:29 +00003566/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3567/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003568static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003569 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003570 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003571
Rafael Espindola15684b22009-04-24 12:40:33 +00003572 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003573 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3574 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003575
Rafael Espindola15684b22009-04-24 12:40:33 +00003576 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003577 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003578 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003579 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003580
Craig Toppera9a568a2012-05-02 08:03:44 +00003581 if (VT == MVT::v16i16) {
3582 // Upper quadword copied in order.
3583 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3584 return false;
3585
3586 // Lower quadword shuffled.
3587 for (unsigned i = 8; i != 12; ++i)
3588 if (!isUndefOrInRange(Mask[i], 8, 12))
3589 return false;
3590 }
3591
Rafael Espindola15684b22009-04-24 12:40:33 +00003592 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003593}
3594
Nate Begemana09008b2009-10-19 02:17:23 +00003595/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3596/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003597static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003598 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003599 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3600 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003601 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003602
Craig Topper0e2037b2012-01-20 05:53:00 +00003603 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003604 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003605 unsigned NumLaneElts = NumElts/NumLanes;
3606
3607 // Do not handle 64-bit element shuffles with palignr.
3608 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003609 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003610
Craig Topper0e2037b2012-01-20 05:53:00 +00003611 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3612 unsigned i;
3613 for (i = 0; i != NumLaneElts; ++i) {
3614 if (Mask[i+l] >= 0)
3615 break;
3616 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003617
Craig Topper0e2037b2012-01-20 05:53:00 +00003618 // Lane is all undef, go to next lane
3619 if (i == NumLaneElts)
3620 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003621
Craig Topper0e2037b2012-01-20 05:53:00 +00003622 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003623
Craig Topper0e2037b2012-01-20 05:53:00 +00003624 // Make sure its in this lane in one of the sources
3625 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3626 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003627 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003628
3629 // If not lane 0, then we must match lane 0
3630 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3631 return false;
3632
3633 // Correct second source to be contiguous with first source
3634 if (Start >= (int)NumElts)
3635 Start -= NumElts - NumLaneElts;
3636
3637 // Make sure we're shifting in the right direction.
3638 if (Start <= (int)(i+l))
3639 return false;
3640
3641 Start -= i;
3642
3643 // Check the rest of the elements to see if they are consecutive.
3644 for (++i; i != NumLaneElts; ++i) {
3645 int Idx = Mask[i+l];
3646
3647 // Make sure its in this lane
3648 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3649 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3650 return false;
3651
3652 // If not lane 0, then we must match lane 0
3653 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3654 return false;
3655
3656 if (Idx >= (int)NumElts)
3657 Idx -= NumElts - NumLaneElts;
3658
3659 if (!isUndefOrEqual(Idx, Start+i))
3660 return false;
3661
3662 }
Nate Begemana09008b2009-10-19 02:17:23 +00003663 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003664
Nate Begemana09008b2009-10-19 02:17:23 +00003665 return true;
3666}
3667
Craig Topper1a7700a2012-01-19 08:19:12 +00003668/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3669/// the two vector operands have swapped position.
3670static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3671 unsigned NumElems) {
3672 for (unsigned i = 0; i != NumElems; ++i) {
3673 int idx = Mask[i];
3674 if (idx < 0)
3675 continue;
3676 else if (idx < (int)NumElems)
3677 Mask[i] = idx + NumElems;
3678 else
3679 Mask[i] = idx - NumElems;
3680 }
3681}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003682
Craig Topper1a7700a2012-01-19 08:19:12 +00003683/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3684/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3685/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3686/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003687static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003688
Craig Topper1a7700a2012-01-19 08:19:12 +00003689 unsigned NumElems = VT.getVectorNumElements();
3690 unsigned NumLanes = VT.getSizeInBits()/128;
3691 unsigned NumLaneElems = NumElems/NumLanes;
3692
3693 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003694 return false;
3695
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003696 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3697 bool symetricMaskRequired =
3698 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3699
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003700 // VSHUFPSY divides the resulting vector into 4 chunks.
3701 // The sources are also splitted into 4 chunks, and each destination
3702 // chunk must come from a different source chunk.
3703 //
3704 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3705 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3706 //
3707 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3708 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3709 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003710 // VSHUFPDY 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 => X3 X2 X1 X0
3715 // SRC2 => Y3 Y2 Y1 Y0
3716 //
3717 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3718 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003719 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003720 unsigned HalfLaneElems = NumLaneElems/2;
3721 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3722 for (unsigned i = 0; i != NumLaneElems; ++i) {
3723 int Idx = Mask[i+l];
3724 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3725 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3726 return false;
3727 // For VSHUFPSY, the mask of the second half must be the same as the
3728 // first but with the appropriate offsets. This works in the same way as
3729 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003730 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003731 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003732 if (MaskVal[i] < 0) {
3733 MaskVal[i] = Idx - l;
3734 continue;
3735 }
3736 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003737 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003738 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003739 }
3740
3741 return true;
3742}
3743
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003744/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3745/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003746static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003747 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003748 return false;
3749
Craig Topper7a9a28b2012-08-12 02:23:29 +00003750 unsigned NumElems = VT.getVectorNumElements();
3751
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003752 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003753 return false;
3754
Evan Cheng2064a2b2006-03-28 06:50:32 +00003755 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003756 return isUndefOrEqual(Mask[0], 6) &&
3757 isUndefOrEqual(Mask[1], 7) &&
3758 isUndefOrEqual(Mask[2], 2) &&
3759 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003760}
3761
Nate Begeman0b10b912009-11-07 23:17:15 +00003762/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3763/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3764/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003765static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003766 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003767 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003768
Craig Topper7a9a28b2012-08-12 02:23:29 +00003769 unsigned NumElems = VT.getVectorNumElements();
3770
Nate Begeman0b10b912009-11-07 23:17:15 +00003771 if (NumElems != 4)
3772 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003773
Craig Topperdd637ae2012-02-19 05:41:45 +00003774 return isUndefOrEqual(Mask[0], 2) &&
3775 isUndefOrEqual(Mask[1], 3) &&
3776 isUndefOrEqual(Mask[2], 2) &&
3777 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003778}
3779
Evan Cheng5ced1d82006-04-06 23:23:56 +00003780/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3781/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003782static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003783 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003784 return false;
3785
Craig Topperdd637ae2012-02-19 05:41:45 +00003786 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003787
Evan Cheng5ced1d82006-04-06 23:23:56 +00003788 if (NumElems != 2 && NumElems != 4)
3789 return false;
3790
Chad Rosier238ae312012-04-30 17:47:15 +00003791 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003792 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003793 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003794
Chad Rosier238ae312012-04-30 17:47:15 +00003795 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003796 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003797 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003798
3799 return true;
3800}
3801
Nate Begeman0b10b912009-11-07 23:17:15 +00003802/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3803/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003804static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003805 if (!VT.is128BitVector())
3806 return false;
3807
Craig Topperdd637ae2012-02-19 05:41:45 +00003808 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003809
Craig Topper7a9a28b2012-08-12 02:23:29 +00003810 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003811 return false;
3812
Chad Rosier238ae312012-04-30 17:47:15 +00003813 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003814 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003815 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003816
Chad Rosier238ae312012-04-30 17:47:15 +00003817 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3818 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003819 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003820
3821 return true;
3822}
3823
Elena Demikhovsky15963732012-06-26 08:04:10 +00003824//
3825// Some special combinations that can be optimized.
3826//
3827static
3828SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3829 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003830 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003831 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003832
3833 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3834 return SDValue();
3835
3836 ArrayRef<int> Mask = SVOp->getMask();
3837
3838 // These are the special masks that may be optimized.
3839 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3840 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3841 bool MatchEvenMask = true;
3842 bool MatchOddMask = true;
3843 for (int i=0; i<8; ++i) {
3844 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3845 MatchEvenMask = false;
3846 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3847 MatchOddMask = false;
3848 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003849
Elena Demikhovsky32510202012-09-04 12:49:02 +00003850 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003851 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003852
Elena Demikhovsky15963732012-06-26 08:04:10 +00003853 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3854
Elena Demikhovsky32510202012-09-04 12:49:02 +00003855 SDValue Op0 = SVOp->getOperand(0);
3856 SDValue Op1 = SVOp->getOperand(1);
3857
3858 if (MatchEvenMask) {
3859 // Shift the second operand right to 32 bits.
3860 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3861 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3862 } else {
3863 // Shift the first operand left to 32 bits.
3864 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3865 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3866 }
3867 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3868 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003869}
3870
Evan Cheng0038e592006-03-28 00:39:58 +00003871/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3872/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003873static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003874 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003875
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003876 assert(VT.getSizeInBits() >= 128 &&
3877 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003878
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003879 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3880 unsigned NumLanes;
3881 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003882 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003883 if (VT.is256BitVector()) {
3884 if (NumElts != 4 && NumElts != 8 &&
3885 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003886 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003887 NumLanes = 2;
3888 NumOf256BitLanes = 1;
3889 } else if (VT.is512BitVector()) {
3890 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3891 "Unsupported vector type for unpckh");
3892 NumLanes = 2;
3893 NumOf256BitLanes = 2;
3894 } else {
3895 NumLanes = 1;
3896 NumOf256BitLanes = 1;
3897 }
Eric Christopherfd179292009-08-27 18:07:15 +00003898
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003899 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3900 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003901
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003902 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3903 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3904 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3905 int BitI = Mask[l256*NumEltsInStride+l+i];
3906 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3907 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003908 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003909 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3910 return false;
3911 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003912 return false;
3913 }
Evan Cheng39623da2006-04-20 08:58:49 +00003914 }
Evan Cheng0038e592006-03-28 00:39:58 +00003915 }
Evan Cheng0038e592006-03-28 00:39:58 +00003916 return true;
3917}
3918
Evan Cheng4fcb9222006-03-28 02:43:26 +00003919/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3920/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003921static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003922 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003923 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003924 "Unsupported vector type for unpckh");
3925
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003926 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3927 unsigned NumLanes;
3928 unsigned NumOf256BitLanes;
3929 unsigned NumElts = VT.getVectorNumElements();
3930 if (VT.is256BitVector()) {
3931 if (NumElts != 4 && NumElts != 8 &&
3932 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003933 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003934 NumLanes = 2;
3935 NumOf256BitLanes = 1;
3936 } else if (VT.is512BitVector()) {
3937 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3938 "Unsupported vector type for unpckh");
3939 NumLanes = 2;
3940 NumOf256BitLanes = 2;
3941 } else {
3942 NumLanes = 1;
3943 NumOf256BitLanes = 1;
3944 }
Eric Christopherfd179292009-08-27 18:07:15 +00003945
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003946 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3947 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003948
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003949 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3950 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3951 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3952 int BitI = Mask[l256*NumEltsInStride+l+i];
3953 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3954 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003955 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003956 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3957 return false;
3958 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003959 return false;
3960 }
Evan Cheng39623da2006-04-20 08:58:49 +00003961 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003962 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003963 return true;
3964}
3965
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003966/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3967/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3968/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003969static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003970 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003971 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003972
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003973 if (VT.is512BitVector())
3974 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00003975 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3976 "Unsupported vector type for unpckh");
3977
Craig Topper5a529e42013-01-18 06:44:29 +00003978 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003979 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003980 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003981
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003982 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3983 // FIXME: Need a better way to get rid of this, there's no latency difference
3984 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3985 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003986 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003987 return false;
3988
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003989 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3990 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00003991 unsigned NumLanes = VT.getSizeInBits()/128;
3992 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003993
Craig Topper59235472013-08-06 07:23:12 +00003994 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3995 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3996 int BitI = Mask[l+i];
3997 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00003998
3999 if (!isUndefOrEqual(BitI, j))
4000 return false;
4001 if (!isUndefOrEqual(BitI1, j))
4002 return false;
4003 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004004 }
David Greenea20244d2011-03-02 17:23:43 +00004005
Rafael Espindola15684b22009-04-24 12:40:33 +00004006 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004007}
4008
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004009/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4010/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4011/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004012static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004013 unsigned NumElts = VT.getVectorNumElements();
4014
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004015 if (VT.is512BitVector())
4016 return false;
4017
Craig Topper94438ba2011-12-16 08:06:31 +00004018 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4019 "Unsupported vector type for unpckh");
4020
Craig Topper5a529e42013-01-18 06:44:29 +00004021 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004022 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004023 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004024
Craig Topper94438ba2011-12-16 08:06:31 +00004025 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4026 // independently on 128-bit lanes.
4027 unsigned NumLanes = VT.getSizeInBits()/128;
4028 unsigned NumLaneElts = NumElts/NumLanes;
4029
Craig Topper59235472013-08-06 07:23:12 +00004030 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4031 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4032 int BitI = Mask[l+i];
4033 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004034 if (!isUndefOrEqual(BitI, j))
4035 return false;
4036 if (!isUndefOrEqual(BitI1, j))
4037 return false;
4038 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004039 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004040 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004041}
4042
Evan Cheng017dcc62006-04-21 01:05:10 +00004043/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4044/// specifies a shuffle of elements that is suitable for input to MOVSS,
4045/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004046static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004047 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004048 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004049 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004050 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004051
Craig Topperc612d792012-01-02 09:17:37 +00004052 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004053
Nate Begeman9008ca62009-04-27 18:41:29 +00004054 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004055 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004056
Craig Topperc612d792012-01-02 09:17:37 +00004057 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004058 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004059 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004060
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004061 return true;
4062}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004063
Craig Topper70b883b2011-11-28 10:14:51 +00004064/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004065/// as permutations between 128-bit chunks or halves. As an example: this
4066/// shuffle bellow:
4067/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4068/// The first half comes from the second half of V1 and the second half from the
4069/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004070static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004071 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004072 return false;
4073
4074 // The shuffle result is divided into half A and half B. In total the two
4075 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4076 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004077 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004078 bool MatchA = false, MatchB = false;
4079
4080 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004081 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004082 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4083 MatchA = true;
4084 break;
4085 }
4086 }
4087
4088 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004089 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004090 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4091 MatchB = true;
4092 break;
4093 }
4094 }
4095
4096 return MatchA && MatchB;
4097}
4098
Craig Topper70b883b2011-11-28 10:14:51 +00004099/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4100/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004101static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004102 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004103
Craig Topperc612d792012-01-02 09:17:37 +00004104 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004105
Craig Topperc612d792012-01-02 09:17:37 +00004106 unsigned FstHalf = 0, SndHalf = 0;
4107 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004108 if (SVOp->getMaskElt(i) > 0) {
4109 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4110 break;
4111 }
4112 }
Craig Topperc612d792012-01-02 09:17:37 +00004113 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004114 if (SVOp->getMaskElt(i) > 0) {
4115 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4116 break;
4117 }
4118 }
4119
4120 return (FstHalf | (SndHalf << 4));
4121}
4122
Craig Topperd36e1ef2013-08-15 08:38:25 +00004123// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004124static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004125 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4126 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004127 return false;
4128
Craig Topperd36e1ef2013-08-15 08:38:25 +00004129 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004130 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004131 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4132 for (unsigned i = 0; i != NumElts; ++i) {
4133 if (Mask[i] < 0)
4134 continue;
4135 Imm8 |= Mask[i] << (i*2);
4136 }
4137 return true;
4138 }
4139
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004140 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004141 SmallVector<int, 4> MaskVal(LaneSize, -1);
4142
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004143 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4144 for (unsigned i = 0; i != LaneSize; ++i) {
4145 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4146 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004147 if (Mask[i+l] < 0)
4148 continue;
4149 if (MaskVal[i] < 0) {
4150 MaskVal[i] = Mask[i+l] - l;
4151 Imm8 |= MaskVal[i] << (i*2);
4152 continue;
4153 }
4154 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004155 return false;
4156 }
4157 }
4158 return true;
4159}
4160
Craig Topper70b883b2011-11-28 10:14:51 +00004161/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004162/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4163/// Note that VPERMIL mask matching is different depending whether theunderlying
4164/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4165/// to the same elements of the low, but to the higher half of the source.
4166/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004167/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004168static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4169 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4170 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004171 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004172 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004173 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004174
Craig Topperc612d792012-01-02 09:17:37 +00004175 unsigned NumLanes = VT.getSizeInBits()/128;
4176 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004177 // 2 or 4 elements in one lane
4178
4179 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004180 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004181 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004182 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004183 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004184 if (symetricMaskRequired) {
4185 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4186 ExpectedMaskVal[i] = Mask[i+l] - l;
4187 continue;
4188 }
4189 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4190 return false;
4191 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004192 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004193 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004194 return true;
4195}
4196
Craig Topper5aaffa82012-02-19 02:53:47 +00004197/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004198/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004199/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004200static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004201 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004202 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004203 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004204
4205 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004206 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004207 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004208
Nate Begeman9008ca62009-04-27 18:41:29 +00004209 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004210 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004211
Craig Topperc612d792012-01-02 09:17:37 +00004212 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004213 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4214 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4215 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004216 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004217
Evan Cheng39623da2006-04-20 08:58:49 +00004218 return true;
4219}
4220
Evan Chengd9539472006-04-14 21:59:03 +00004221/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4222/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004223/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004224static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004225 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004226 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004227 return false;
4228
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004229 unsigned NumElems = VT.getVectorNumElements();
4230
Craig Topper5a529e42013-01-18 06:44:29 +00004231 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004232 (VT.is256BitVector() && NumElems != 8) ||
4233 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004234 return false;
4235
4236 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004237 for (unsigned i = 0; i != NumElems; i += 2)
4238 if (!isUndefOrEqual(Mask[i], i+1) ||
4239 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004240 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004241
4242 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004243}
4244
4245/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4246/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004247/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004248static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004249 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004250 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004251 return false;
4252
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004253 unsigned NumElems = VT.getVectorNumElements();
4254
Craig Topper5a529e42013-01-18 06:44:29 +00004255 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004256 (VT.is256BitVector() && NumElems != 8) ||
4257 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004258 return false;
4259
4260 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004261 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004262 if (!isUndefOrEqual(Mask[i], i) ||
4263 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004264 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004265
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004266 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004267}
4268
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004269/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4270/// specifies a shuffle of elements that is suitable for input to 256-bit
4271/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004272static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004273 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004274 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004275
Craig Topper7a9a28b2012-08-12 02:23:29 +00004276 unsigned NumElts = VT.getVectorNumElements();
4277 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004278 return false;
4279
Craig Topperc612d792012-01-02 09:17:37 +00004280 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004281 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004282 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004283 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004284 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004285 return false;
4286 return true;
4287}
4288
Evan Cheng0b457f02008-09-25 20:50:48 +00004289/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004290/// specifies a shuffle of elements that is suitable for input to 128-bit
4291/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004292static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004293 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004294 return false;
4295
Craig Topperc612d792012-01-02 09:17:37 +00004296 unsigned e = VT.getVectorNumElements() / 2;
4297 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004298 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004299 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004300 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004301 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004302 return false;
4303 return true;
4304}
4305
Elena Demikhovsky83952512013-07-31 11:35:14 +00004306/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004307/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004308/// suitable for instruction that extract 128 or 256 bit vectors
4309static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4310 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004311 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4312 return false;
4313
Elena Demikhovsky83952512013-07-31 11:35:14 +00004314 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004315 uint64_t Index =
4316 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4317
Craig Topper5a0910b2013-08-15 02:33:50 +00004318 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004319 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004320 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004321
4322 return Result;
4323}
4324
Elena Demikhovsky83952512013-07-31 11:35:14 +00004325/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004326/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004327/// insertion of 128 or 256-bit subvectors
4328static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4329 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004330 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4331 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004332 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004333 uint64_t Index =
4334 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4335
Craig Topper5a0910b2013-08-15 02:33:50 +00004336 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004337 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004338 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004339
4340 return Result;
4341}
4342
Elena Demikhovsky83952512013-07-31 11:35:14 +00004343bool X86::isVINSERT128Index(SDNode *N) {
4344 return isVINSERTIndex(N, 128);
4345}
4346
4347bool X86::isVINSERT256Index(SDNode *N) {
4348 return isVINSERTIndex(N, 256);
4349}
4350
4351bool X86::isVEXTRACT128Index(SDNode *N) {
4352 return isVEXTRACTIndex(N, 128);
4353}
4354
4355bool X86::isVEXTRACT256Index(SDNode *N) {
4356 return isVEXTRACTIndex(N, 256);
4357}
4358
Evan Cheng63d33002006-03-22 08:01:21 +00004359/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004360/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004361/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004362static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004363 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004364
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004365 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004366 "Unsupported vector type for PSHUF/SHUFP");
4367
4368 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4369 // independently on 128-bit lanes.
4370 unsigned NumElts = VT.getVectorNumElements();
4371 unsigned NumLanes = VT.getSizeInBits()/128;
4372 unsigned NumLaneElts = NumElts/NumLanes;
4373
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004374 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4375 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004376
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004377 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004378 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004379 for (unsigned i = 0; i != NumElts; ++i) {
4380 int Elt = N->getMaskElt(i);
4381 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004382 Elt &= NumLaneElts - 1;
4383 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004384 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004385 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004386
Evan Cheng63d33002006-03-22 08:01:21 +00004387 return Mask;
4388}
4389
Evan Cheng506d3df2006-03-29 23:07:14 +00004390/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004391/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004392static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004393 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004394
4395 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4396 "Unsupported vector type for PSHUFHW");
4397
4398 unsigned NumElts = VT.getVectorNumElements();
4399
Evan Cheng506d3df2006-03-29 23:07:14 +00004400 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004401 for (unsigned l = 0; l != NumElts; l += 8) {
4402 // 8 nodes per lane, but we only care about the last 4.
4403 for (unsigned i = 0; i < 4; ++i) {
4404 int Elt = N->getMaskElt(l+i+4);
4405 if (Elt < 0) continue;
4406 Elt &= 0x3; // only 2-bits.
4407 Mask |= Elt << (i * 2);
4408 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004409 }
Craig Topper6b28d352012-05-03 07:12:59 +00004410
Evan Cheng506d3df2006-03-29 23:07:14 +00004411 return Mask;
4412}
4413
4414/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004415/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004416static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004417 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004418
4419 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4420 "Unsupported vector type for PSHUFHW");
4421
4422 unsigned NumElts = VT.getVectorNumElements();
4423
Evan Cheng506d3df2006-03-29 23:07:14 +00004424 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004425 for (unsigned l = 0; l != NumElts; l += 8) {
4426 // 8 nodes per lane, but we only care about the first 4.
4427 for (unsigned i = 0; i < 4; ++i) {
4428 int Elt = N->getMaskElt(l+i);
4429 if (Elt < 0) continue;
4430 Elt &= 0x3; // only 2-bits
4431 Mask |= Elt << (i * 2);
4432 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004433 }
Craig Topper6b28d352012-05-03 07:12:59 +00004434
Evan Cheng506d3df2006-03-29 23:07:14 +00004435 return Mask;
4436}
4437
Nate Begemana09008b2009-10-19 02:17:23 +00004438/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4439/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004440static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004441 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004442 unsigned EltSize = VT.is512BitVector() ? 1 :
4443 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004444
Craig Topper0e2037b2012-01-20 05:53:00 +00004445 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004446 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004447 unsigned NumLaneElts = NumElts/NumLanes;
4448
4449 int Val = 0;
4450 unsigned i;
4451 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004452 Val = SVOp->getMaskElt(i);
4453 if (Val >= 0)
4454 break;
4455 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004456 if (Val >= (int)NumElts)
4457 Val -= NumElts - NumLaneElts;
4458
Eli Friedman63f8dde2011-07-25 21:36:45 +00004459 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004460 return (Val - i) * EltSize;
4461}
4462
Elena Demikhovsky83952512013-07-31 11:35:14 +00004463static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4464 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004465 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004466 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004467
4468 uint64_t Index =
4469 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4470
Craig Topper5a0910b2013-08-15 02:33:50 +00004471 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004472 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004473
Elena Demikhovsky83952512013-07-31 11:35:14 +00004474 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004475 return Index / NumElemsPerChunk;
4476}
4477
Elena Demikhovsky83952512013-07-31 11:35:14 +00004478static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4479 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004480 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004481 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004482
4483 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004484 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004485
Craig Topper5a0910b2013-08-15 02:33:50 +00004486 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004487 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004488
Elena Demikhovsky83952512013-07-31 11:35:14 +00004489 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004490 return Index / NumElemsPerChunk;
4491}
4492
Elena Demikhovsky83952512013-07-31 11:35:14 +00004493/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4494/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4495/// and VINSERTI128 instructions.
4496unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4497 return getExtractVEXTRACTImmediate(N, 128);
4498}
4499
4500/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4501/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4502/// and VINSERTI64x4 instructions.
4503unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4504 return getExtractVEXTRACTImmediate(N, 256);
4505}
4506
4507/// getInsertVINSERT128Immediate - Return the appropriate immediate
4508/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4509/// and VINSERTI128 instructions.
4510unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4511 return getInsertVINSERTImmediate(N, 128);
4512}
4513
4514/// getInsertVINSERT256Immediate - Return the appropriate immediate
4515/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4516/// and VINSERTI64x4 instructions.
4517unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4518 return getInsertVINSERTImmediate(N, 256);
4519}
4520
Evan Cheng37b73872009-07-30 08:33:02 +00004521/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4522/// constant +0.0.
4523bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004524 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4525 return CN->isNullValue();
4526 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4527 return CFP->getValueAPF().isPosZero();
4528 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004529}
4530
Nate Begeman9008ca62009-04-27 18:41:29 +00004531/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4532/// their permute mask.
4533static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4534 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004535 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004536 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004537 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004538
Nate Begeman5a5ca152009-04-29 05:20:52 +00004539 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004540 int Idx = SVOp->getMaskElt(i);
4541 if (Idx >= 0) {
4542 if (Idx < (int)NumElems)
4543 Idx += NumElems;
4544 else
4545 Idx -= NumElems;
4546 }
4547 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004548 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004549 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004550 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004551}
4552
Evan Cheng533a0aa2006-04-19 20:35:22 +00004553/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4554/// match movhlps. The lower half elements should come from upper half of
4555/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004556/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004557static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004558 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004559 return false;
4560 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004561 return false;
4562 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004563 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004564 return false;
4565 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004566 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004567 return false;
4568 return true;
4569}
4570
Evan Cheng5ced1d82006-04-06 23:23:56 +00004571/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004572/// is promoted to a vector. It also returns the LoadSDNode by reference if
4573/// required.
4574static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004575 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4576 return false;
4577 N = N->getOperand(0).getNode();
4578 if (!ISD::isNON_EXTLoad(N))
4579 return false;
4580 if (LD)
4581 *LD = cast<LoadSDNode>(N);
4582 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004583}
4584
Dan Gohman65fd6562011-11-03 21:49:52 +00004585// Test whether the given value is a vector value which will be legalized
4586// into a load.
4587static bool WillBeConstantPoolLoad(SDNode *N) {
4588 if (N->getOpcode() != ISD::BUILD_VECTOR)
4589 return false;
4590
4591 // Check for any non-constant elements.
4592 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4593 switch (N->getOperand(i).getNode()->getOpcode()) {
4594 case ISD::UNDEF:
4595 case ISD::ConstantFP:
4596 case ISD::Constant:
4597 break;
4598 default:
4599 return false;
4600 }
4601
4602 // Vectors of all-zeros and all-ones are materialized with special
4603 // instructions rather than being loaded.
4604 return !ISD::isBuildVectorAllZeros(N) &&
4605 !ISD::isBuildVectorAllOnes(N);
4606}
4607
Evan Cheng533a0aa2006-04-19 20:35:22 +00004608/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4609/// match movlp{s|d}. The lower half elements should come from lower half of
4610/// V1 (and in order), and the upper half elements should come from the upper
4611/// half of V2 (and in order). And since V1 will become the source of the
4612/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004613static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004614 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004615 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004616 return false;
4617
Evan Cheng466685d2006-10-09 20:57:25 +00004618 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004619 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004620 // Is V2 is a vector load, don't do this transformation. We will try to use
4621 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004622 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004623 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004624
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004625 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004626
Evan Cheng533a0aa2006-04-19 20:35:22 +00004627 if (NumElems != 2 && NumElems != 4)
4628 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004629 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004630 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004631 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004632 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004633 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004634 return false;
4635 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004636}
4637
Evan Cheng39623da2006-04-20 08:58:49 +00004638/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4639/// all the same.
4640static bool isSplatVector(SDNode *N) {
4641 if (N->getOpcode() != ISD::BUILD_VECTOR)
4642 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004643
Dan Gohman475871a2008-07-27 21:46:04 +00004644 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004645 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4646 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004647 return false;
4648 return true;
4649}
4650
Evan Cheng213d2cf2007-05-17 18:45:50 +00004651/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004652/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004653/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004654static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004655 SDValue V1 = N->getOperand(0);
4656 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004657 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4658 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004659 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004660 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004661 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004662 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4663 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004664 if (Opc != ISD::BUILD_VECTOR ||
4665 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004666 return false;
4667 } else if (Idx >= 0) {
4668 unsigned Opc = V1.getOpcode();
4669 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4670 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004671 if (Opc != ISD::BUILD_VECTOR ||
4672 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004673 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004674 }
4675 }
4676 return true;
4677}
4678
4679/// getZeroVector - Returns a vector of specified type with all zero elements.
4680///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004681static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004682 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004683 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004684
Dale Johannesen0488fb62010-09-30 23:57:10 +00004685 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004686 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004687 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004688 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004689 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004690 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4691 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4692 } else { // SSE1
4693 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4694 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4695 }
Craig Topper5a529e42013-01-18 06:44:29 +00004696 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004697 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004698 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4699 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004700 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4701 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004702 } else {
4703 // 256-bit logic and arithmetic instructions in AVX are all
4704 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4705 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4706 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004707 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4708 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004709 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004710 } else if (VT.is512BitVector()) { // AVX-512
4711 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4712 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4713 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4714 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004715 } else
4716 llvm_unreachable("Unexpected vector type");
4717
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004718 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004719}
4720
Chris Lattner8a594482007-11-25 00:24:49 +00004721/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004722/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4723/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4724/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004725static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004726 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004727 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004728
Owen Anderson825b72b2009-08-11 20:47:22 +00004729 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004730 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004731 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004732 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004733 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004734 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4735 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004736 } else { // AVX
4737 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004738 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004739 }
Craig Topper5a529e42013-01-18 06:44:29 +00004740 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004741 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004742 } else
4743 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004744
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004745 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004746}
4747
Evan Cheng39623da2006-04-20 08:58:49 +00004748/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4749/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004750static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004751 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004752 if (Mask[i] > (int)NumElems) {
4753 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004754 }
Evan Cheng39623da2006-04-20 08:58:49 +00004755 }
Evan Cheng39623da2006-04-20 08:58:49 +00004756}
4757
Evan Cheng017dcc62006-04-21 01:05:10 +00004758/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4759/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004760static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004761 SDValue V2) {
4762 unsigned NumElems = VT.getVectorNumElements();
4763 SmallVector<int, 8> Mask;
4764 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004765 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004766 Mask.push_back(i);
4767 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004768}
4769
Nate Begeman9008ca62009-04-27 18:41:29 +00004770/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004771static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004772 SDValue V2) {
4773 unsigned NumElems = VT.getVectorNumElements();
4774 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004775 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004776 Mask.push_back(i);
4777 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004778 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004779 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004780}
4781
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004782/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004783static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004784 SDValue V2) {
4785 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004786 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004787 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004788 Mask.push_back(i + Half);
4789 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004790 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004791 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004792}
4793
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004794// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004795// a generic shuffle instruction because the target has no such instructions.
4796// Generate shuffles which repeat i16 and i8 several times until they can be
4797// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004798static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004799 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004800 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004801 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004802
Nate Begeman9008ca62009-04-27 18:41:29 +00004803 while (NumElems > 4) {
4804 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004805 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004806 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004807 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004808 EltNo -= NumElems/2;
4809 }
4810 NumElems >>= 1;
4811 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004812 return V;
4813}
Eric Christopherfd179292009-08-27 18:07:15 +00004814
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004815/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4816static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004817 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004818 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004819
Craig Topper5a529e42013-01-18 06:44:29 +00004820 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004821 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004822 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004823 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4824 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004825 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004826 // To use VPERMILPS to splat scalars, the second half of indicies must
4827 // refer to the higher part, which is a duplication of the lower one,
4828 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004829 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4830 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004831
4832 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4833 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4834 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004835 } else
4836 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004837
4838 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4839}
4840
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004841/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004842static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004843 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004844 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004845 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004846
4847 int EltNo = SV->getSplatIndex();
4848 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004849 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004850
Craig Topper5a529e42013-01-18 06:44:29 +00004851 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4852 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004853
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004854 // Extract the 128-bit part containing the splat element and update
4855 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004856 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004857 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4858 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004859 EltNo -= NumElems/2;
4860 }
4861
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004862 // All i16 and i8 vector types can't be used directly by a generic shuffle
4863 // instruction because the target has no such instruction. Generate shuffles
4864 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004865 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004866 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004867 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004868 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004869
4870 // Recreate the 256-bit vector and place the same 128-bit vector
4871 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004872 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004873 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004874 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004875 }
4876
4877 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004878}
4879
Evan Chengba05f722006-04-21 23:03:30 +00004880/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004881/// vector of zero or undef vector. This produces a shuffle where the low
4882/// element of V2 is swizzled into the zero/undef vector, landing at element
4883/// 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 +00004884static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004885 bool IsZero,
4886 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004887 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004888 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004889 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004890 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004891 unsigned NumElems = VT.getVectorNumElements();
4892 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004893 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004894 // If this is the insertion idx, put the low elt of V2 here.
4895 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004896 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004897}
4898
Craig Toppera1ffc682012-03-20 06:42:26 +00004899/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4900/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004901/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004902static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004903 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004904 unsigned NumElems = VT.getVectorNumElements();
4905 SDValue ImmN;
4906
Craig Topper89f4e662012-03-20 07:17:59 +00004907 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004908 switch(N->getOpcode()) {
4909 case X86ISD::SHUFP:
4910 ImmN = N->getOperand(N->getNumOperands()-1);
4911 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4912 break;
4913 case X86ISD::UNPCKH:
4914 DecodeUNPCKHMask(VT, Mask);
4915 break;
4916 case X86ISD::UNPCKL:
4917 DecodeUNPCKLMask(VT, Mask);
4918 break;
4919 case X86ISD::MOVHLPS:
4920 DecodeMOVHLPSMask(NumElems, Mask);
4921 break;
4922 case X86ISD::MOVLHPS:
4923 DecodeMOVLHPSMask(NumElems, Mask);
4924 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004925 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004926 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004927 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004928 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004929 case X86ISD::PSHUFD:
4930 case X86ISD::VPERMILP:
4931 ImmN = N->getOperand(N->getNumOperands()-1);
4932 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004933 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004934 break;
4935 case X86ISD::PSHUFHW:
4936 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004937 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004938 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004939 break;
4940 case X86ISD::PSHUFLW:
4941 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004942 DecodePSHUFLWMask(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;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004945 case X86ISD::VPERMI:
4946 ImmN = N->getOperand(N->getNumOperands()-1);
4947 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4948 IsUnary = true;
4949 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004950 case X86ISD::MOVSS:
4951 case X86ISD::MOVSD: {
4952 // The index 0 always comes from the first element of the second source,
4953 // this is why MOVSS and MOVSD are used in the first place. The other
4954 // elements come from the other positions of the first source vector
4955 Mask.push_back(NumElems);
4956 for (unsigned i = 1; i != NumElems; ++i) {
4957 Mask.push_back(i);
4958 }
4959 break;
4960 }
4961 case X86ISD::VPERM2X128:
4962 ImmN = N->getOperand(N->getNumOperands()-1);
4963 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004964 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004965 break;
4966 case X86ISD::MOVDDUP:
4967 case X86ISD::MOVLHPD:
4968 case X86ISD::MOVLPD:
4969 case X86ISD::MOVLPS:
4970 case X86ISD::MOVSHDUP:
4971 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004972 // Not yet implemented
4973 return false;
4974 default: llvm_unreachable("unknown target shuffle node");
4975 }
4976
4977 return true;
4978}
4979
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004980/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4981/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004982static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004983 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004984 if (Depth == 6)
4985 return SDValue(); // Limit search depth.
4986
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004987 SDValue V = SDValue(N, 0);
4988 EVT VT = V.getValueType();
4989 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004990
4991 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4992 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00004993 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004994
Craig Topper3d092db2012-03-21 02:14:01 +00004995 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004996 return DAG.getUNDEF(VT.getVectorElementType());
4997
Craig Topperd156dc12012-02-06 07:17:51 +00004998 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00004999 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5000 : SV->getOperand(1);
5001 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005002 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005003
5004 // Recurse into target specific vector shuffles to find scalars.
5005 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005006 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005007 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005008 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005009 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005010
Craig Topperd978c542012-05-06 19:46:21 +00005011 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005012 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005013
Craig Topper3d092db2012-03-21 02:14:01 +00005014 int Elt = ShuffleMask[Index];
5015 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005016 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005017
Craig Topper3d092db2012-03-21 02:14:01 +00005018 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005019 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005020 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005021 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005022 }
5023
5024 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005025 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005026 V = V.getOperand(0);
5027 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005028 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005029
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005030 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005031 return SDValue();
5032 }
5033
5034 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5035 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005036 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005037
5038 if (V.getOpcode() == ISD::BUILD_VECTOR)
5039 return V.getOperand(Index);
5040
5041 return SDValue();
5042}
5043
5044/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5045/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005046/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005047/// We count undefs as zeros until PreferredNum is reached.
5048static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5049 unsigned NumElems, bool ZerosFromLeft,
5050 SelectionDAG &DAG,
5051 unsigned PreferredNum = -1U) {
5052 unsigned NumZeros = 0;
5053 for (unsigned i = 0; i != NumElems; ++i) {
5054 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005055 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005056 if (!Elt.getNode())
5057 break;
5058
5059 if (X86::isZeroNode(Elt))
5060 ++NumZeros;
5061 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5062 NumZeros = std::min(NumZeros + 1, PreferredNum);
5063 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005064 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005065 }
5066
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005067 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005068}
5069
Craig Topper3d092db2012-03-21 02:14:01 +00005070/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5071/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005072/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5073static
Craig Topper3d092db2012-03-21 02:14:01 +00005074bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5075 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5076 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005077 bool SeenV1 = false;
5078 bool SeenV2 = false;
5079
Craig Topper3d092db2012-03-21 02:14:01 +00005080 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005081 int Idx = SVOp->getMaskElt(i);
5082 // Ignore undef indicies
5083 if (Idx < 0)
5084 continue;
5085
Craig Topper3d092db2012-03-21 02:14:01 +00005086 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005087 SeenV1 = true;
5088 else
5089 SeenV2 = true;
5090
5091 // Only accept consecutive elements from the same vector
5092 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5093 return false;
5094 }
5095
5096 OpNum = SeenV1 ? 0 : 1;
5097 return true;
5098}
5099
5100/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5101/// logical left shift of a vector.
5102static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5103 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005104 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005105 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005106 unsigned NumZeros = getNumOfConsecutiveZeros(
5107 SVOp, NumElems, false /* check zeros from right */, DAG,
5108 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005109 unsigned OpSrc;
5110
5111 if (!NumZeros)
5112 return false;
5113
5114 // Considering the elements in the mask that are not consecutive zeros,
5115 // check if they consecutively come from only one of the source vectors.
5116 //
5117 // V1 = {X, A, B, C} 0
5118 // \ \ \ /
5119 // vector_shuffle V1, V2 <1, 2, 3, X>
5120 //
5121 if (!isShuffleMaskConsecutive(SVOp,
5122 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005123 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005124 NumZeros, // Where to start looking in the src vector
5125 NumElems, // Number of elements in vector
5126 OpSrc)) // Which source operand ?
5127 return false;
5128
5129 isLeft = false;
5130 ShAmt = NumZeros;
5131 ShVal = SVOp->getOperand(OpSrc);
5132 return true;
5133}
5134
5135/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5136/// logical left shift of a vector.
5137static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5138 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005139 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005140 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005141 unsigned NumZeros = getNumOfConsecutiveZeros(
5142 SVOp, NumElems, true /* check zeros from left */, DAG,
5143 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005144 unsigned OpSrc;
5145
5146 if (!NumZeros)
5147 return false;
5148
5149 // Considering the elements in the mask that are not consecutive zeros,
5150 // check if they consecutively come from only one of the source vectors.
5151 //
5152 // 0 { A, B, X, X } = V2
5153 // / \ / /
5154 // vector_shuffle V1, V2 <X, X, 4, 5>
5155 //
5156 if (!isShuffleMaskConsecutive(SVOp,
5157 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005158 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005159 0, // Where to start looking in the src vector
5160 NumElems, // Number of elements in vector
5161 OpSrc)) // Which source operand ?
5162 return false;
5163
5164 isLeft = true;
5165 ShAmt = NumZeros;
5166 ShVal = SVOp->getOperand(OpSrc);
5167 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005168}
5169
5170/// isVectorShift - Returns true if the shuffle can be implemented as a
5171/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005172static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005173 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005174 // Although the logic below support any bitwidth size, there are no
5175 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005176 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005177 return false;
5178
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005179 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5180 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5181 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005182
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005183 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005184}
5185
Evan Chengc78d3b42006-04-24 18:01:45 +00005186/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5187///
Dan Gohman475871a2008-07-27 21:46:04 +00005188static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005189 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005190 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005191 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005192 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005193 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005194 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005195
Andrew Trickac6d9be2013-05-25 02:42:55 +00005196 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005197 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005198 bool First = true;
5199 for (unsigned i = 0; i < 16; ++i) {
5200 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5201 if (ThisIsNonZero && First) {
5202 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005203 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005204 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005205 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005206 First = false;
5207 }
5208
5209 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005210 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005211 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5212 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005213 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005214 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005215 }
5216 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005217 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5218 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5219 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005220 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005221 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005222 } else
5223 ThisElt = LastElt;
5224
Gabor Greifba36cb52008-08-28 21:40:38 +00005225 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005226 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005227 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005228 }
5229 }
5230
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005231 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005232}
5233
Bill Wendlinga348c562007-03-22 18:42:45 +00005234/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005235///
Dan Gohman475871a2008-07-27 21:46:04 +00005236static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005237 unsigned NumNonZero, unsigned NumZero,
5238 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005239 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005240 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005241 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005242 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005243
Andrew Trickac6d9be2013-05-25 02:42:55 +00005244 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005245 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005246 bool First = true;
5247 for (unsigned i = 0; i < 8; ++i) {
5248 bool isNonZero = (NonZeros & (1 << i)) != 0;
5249 if (isNonZero) {
5250 if (First) {
5251 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005252 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005253 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005254 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005255 First = false;
5256 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005257 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005258 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005259 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005260 }
5261 }
5262
5263 return V;
5264}
5265
Evan Chengf26ffe92008-05-29 08:22:04 +00005266/// getVShift - Return a vector logical shift node.
5267///
Owen Andersone50ed302009-08-10 22:56:29 +00005268static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005269 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005270 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005271 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005272 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005273 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005274 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5275 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005276 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005277 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005278 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005279}
5280
Craig Topperff79bc62013-08-18 08:53:01 +00005281static SDValue
5282LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005283
Evan Chengc3630942009-12-09 21:00:30 +00005284 // Check if the scalar load can be widened into a vector load. And if
5285 // the address is "base + cst" see if the cst can be "absorbed" into
5286 // the shuffle mask.
5287 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5288 SDValue Ptr = LD->getBasePtr();
5289 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5290 return SDValue();
5291 EVT PVT = LD->getValueType(0);
5292 if (PVT != MVT::i32 && PVT != MVT::f32)
5293 return SDValue();
5294
5295 int FI = -1;
5296 int64_t Offset = 0;
5297 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5298 FI = FINode->getIndex();
5299 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005300 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005301 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5302 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5303 Offset = Ptr.getConstantOperandVal(1);
5304 Ptr = Ptr.getOperand(0);
5305 } else {
5306 return SDValue();
5307 }
5308
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005309 // FIXME: 256-bit vector instructions don't require a strict alignment,
5310 // improve this code to support it better.
5311 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005312 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005313 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005314 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005315 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005316 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005317 // Can't change the alignment. FIXME: It's possible to compute
5318 // the exact stack offset and reference FI + adjust offset instead.
5319 // If someone *really* cares about this. That's the way to implement it.
5320 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005321 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005322 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005323 }
5324 }
5325
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005326 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005327 // Ptr + (Offset & ~15).
5328 if (Offset < 0)
5329 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005330 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005331 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005332 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005333 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005334 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005335 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5336
5337 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005338 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005339
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005340 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5341 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005342 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005343 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005344
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005345 SmallVector<int, 8> Mask;
5346 for (unsigned i = 0; i != NumElems; ++i)
5347 Mask.push_back(EltNo);
5348
Craig Toppercc3000632012-01-30 07:50:31 +00005349 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005350 }
5351
5352 return SDValue();
5353}
5354
Michael J. Spencerec38de22010-10-10 22:04:20 +00005355/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5356/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005357/// load which has the same value as a build_vector whose operands are 'elts'.
5358///
5359/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005360///
Nate Begeman1449f292010-03-24 22:19:06 +00005361/// FIXME: we'd also like to handle the case where the last elements are zero
5362/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5363/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005364static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005365 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005366 EVT EltVT = VT.getVectorElementType();
5367 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005368
Nate Begemanfdea31a2010-03-24 20:49:50 +00005369 LoadSDNode *LDBase = NULL;
5370 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005371
Nate Begeman1449f292010-03-24 22:19:06 +00005372 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005373 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005374 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005375 for (unsigned i = 0; i < NumElems; ++i) {
5376 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005377
Nate Begemanfdea31a2010-03-24 20:49:50 +00005378 if (!Elt.getNode() ||
5379 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5380 return SDValue();
5381 if (!LDBase) {
5382 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5383 return SDValue();
5384 LDBase = cast<LoadSDNode>(Elt.getNode());
5385 LastLoadedElt = i;
5386 continue;
5387 }
5388 if (Elt.getOpcode() == ISD::UNDEF)
5389 continue;
5390
5391 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5392 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5393 return SDValue();
5394 LastLoadedElt = i;
5395 }
Nate Begeman1449f292010-03-24 22:19:06 +00005396
5397 // If we have found an entire vector of loads and undefs, then return a large
5398 // load of the entire vector width starting at the base pointer. If we found
5399 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005400 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005401 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005402 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005403 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5404 LDBase->getPointerInfo(),
5405 LDBase->isVolatile(), LDBase->isNonTemporal(),
5406 LDBase->isInvariant(), 0);
5407 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5408 LDBase->getPointerInfo(),
5409 LDBase->isVolatile(), LDBase->isNonTemporal(),
5410 LDBase->isInvariant(), LDBase->getAlignment());
5411
5412 if (LDBase->hasAnyUseOfValue(1)) {
5413 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5414 SDValue(LDBase, 1),
5415 SDValue(NewLd.getNode(), 1));
5416 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5417 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5418 SDValue(NewLd.getNode(), 1));
5419 }
5420
5421 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005422 }
5423 if (NumElems == 4 && LastLoadedElt == 1 &&
5424 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005425 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5426 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005427 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005428 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5429 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005430 LDBase->getPointerInfo(),
5431 LDBase->getAlignment(),
5432 false/*isVolatile*/, true/*ReadMem*/,
5433 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005434
5435 // Make sure the newly-created LOAD is in the same position as LDBase in
5436 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5437 // update uses of LDBase's output chain to use the TokenFactor.
5438 if (LDBase->hasAnyUseOfValue(1)) {
5439 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5440 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5441 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5442 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5443 SDValue(ResNode.getNode(), 1));
5444 }
5445
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005446 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005447 }
5448 return SDValue();
5449}
5450
Nadav Rotem9d68b062012-04-08 12:54:54 +00005451/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5452/// to generate a splat value for the following cases:
5453/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005454/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005455/// a scalar load, or a constant.
5456/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005457/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005458static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5459 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005460 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005461 return SDValue();
5462
Craig Topper5a0910b2013-08-15 02:33:50 +00005463 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005464 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005465
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005466 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005467 "Unsupported vector type for broadcast.");
5468
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005469 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005470 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005471
Nadav Rotem9d68b062012-04-08 12:54:54 +00005472 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005473 default:
5474 // Unknown pattern found.
5475 return SDValue();
5476
5477 case ISD::BUILD_VECTOR: {
5478 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005479 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005480 return SDValue();
5481
Nadav Rotem9d68b062012-04-08 12:54:54 +00005482 Ld = Op.getOperand(0);
5483 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5484 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005485
5486 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005487 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005488 // Constants may have multiple users.
5489 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005490 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005491 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005492 }
5493
5494 case ISD::VECTOR_SHUFFLE: {
5495 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5496
5497 // Shuffles must have a splat mask where the first element is
5498 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005499 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005500 return SDValue();
5501
5502 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005503 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005504 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5505
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005506 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005507 return SDValue();
5508
5509 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005510 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005511 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5512 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5513 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005514
5515 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005516 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005517 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005518
5519 // The scalar_to_vector node and the suspected
5520 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005521 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005522
5523 // AVX-512 has register version of the broadcast
5524 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5525 Ld.getValueType().getSizeInBits() >= 32;
5526 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5527 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005528 return SDValue();
5529 break;
5530 }
5531 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005532
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005533 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005534
5535 // Handle the broadcasting a single constant scalar from the constant pool
5536 // into a vector. On Sandybridge it is still better to load a constant vector
5537 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005538 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005539 EVT CVT = Ld.getValueType();
5540 assert(!CVT.isVector() && "Must not broadcast a vector type");
5541 unsigned ScalarSize = CVT.getSizeInBits();
5542
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005543 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005544 const Constant *C = 0;
5545 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5546 C = CI->getConstantIntValue();
5547 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5548 C = CF->getConstantFPValue();
5549
5550 assert(C && "Invalid constant type");
5551
Craig Topper158ec072013-08-14 07:34:43 +00005552 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5553 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005554 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005555 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005556 MachinePointerInfo::getConstantPool(),
5557 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005558
Nadav Rotem9d68b062012-04-08 12:54:54 +00005559 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5560 }
5561 }
5562
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005563 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005564 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5565
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005566 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005567 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005568 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005569 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5570
5571 // The scalar source must be a normal load.
5572 if (!IsLoad)
5573 return SDValue();
5574
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005575 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005576 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005577
Craig Toppera9376332012-01-10 08:23:59 +00005578 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005579 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005580 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005581 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005582 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005583 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005584
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005585 // Unsupported broadcast.
5586 return SDValue();
5587}
5588
Craig Topper158ec072013-08-14 07:34:43 +00005589static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005590 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005591
5592 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005593 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5594 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005595 return SDValue();
5596
Andrew Trickac6d9be2013-05-25 02:42:55 +00005597 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005598 unsigned NumElems = Op.getNumOperands();
5599
5600 SDValue VecIn1;
5601 SDValue VecIn2;
5602 SmallVector<unsigned, 4> InsertIndices;
5603 SmallVector<int, 8> Mask(NumElems, -1);
5604
5605 for (unsigned i = 0; i != NumElems; ++i) {
5606 unsigned Opc = Op.getOperand(i).getOpcode();
5607
5608 if (Opc == ISD::UNDEF)
5609 continue;
5610
5611 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5612 // Quit if more than 1 elements need inserting.
5613 if (InsertIndices.size() > 1)
5614 return SDValue();
5615
5616 InsertIndices.push_back(i);
5617 continue;
5618 }
5619
5620 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5621 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5622
5623 // Quit if extracted from vector of different type.
5624 if (ExtractedFromVec.getValueType() != VT)
5625 return SDValue();
5626
5627 // Quit if non-constant index.
5628 if (!isa<ConstantSDNode>(ExtIdx))
5629 return SDValue();
5630
5631 if (VecIn1.getNode() == 0)
5632 VecIn1 = ExtractedFromVec;
5633 else if (VecIn1 != ExtractedFromVec) {
5634 if (VecIn2.getNode() == 0)
5635 VecIn2 = ExtractedFromVec;
5636 else if (VecIn2 != ExtractedFromVec)
5637 // Quit if more than 2 vectors to shuffle
5638 return SDValue();
5639 }
5640
5641 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5642
5643 if (ExtractedFromVec == VecIn1)
5644 Mask[i] = Idx;
5645 else if (ExtractedFromVec == VecIn2)
5646 Mask[i] = Idx + NumElems;
5647 }
5648
5649 if (VecIn1.getNode() == 0)
5650 return SDValue();
5651
5652 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5653 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5654 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5655 unsigned Idx = InsertIndices[i];
5656 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5657 DAG.getIntPtrConstant(Idx));
5658 }
5659
5660 return NV;
5661}
5662
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005663// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5664SDValue
5665X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5666
Craig Topper5a0910b2013-08-15 02:33:50 +00005667 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005668 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5669 "Unexpected type in LowerBUILD_VECTORvXi1!");
5670
5671 SDLoc dl(Op);
5672 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5673 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5674 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5675 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5676 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5677 Ops, VT.getVectorNumElements());
5678 }
5679
5680 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5681 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5682 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5683 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5684 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5685 Ops, VT.getVectorNumElements());
5686 }
5687
5688 bool AllContants = true;
5689 uint64_t Immediate = 0;
5690 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5691 SDValue In = Op.getOperand(idx);
5692 if (In.getOpcode() == ISD::UNDEF)
5693 continue;
5694 if (!isa<ConstantSDNode>(In)) {
5695 AllContants = false;
5696 break;
5697 }
5698 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005699 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005700 }
5701
5702 if (AllContants) {
5703 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5704 DAG.getConstant(Immediate, MVT::i16));
5705 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005706 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005707 }
5708
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005709 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005710 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005711 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5712 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5713 llvm_unreachable("Unsupported predicate operation");
5714 }
5715
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005716 SDValue EFLAGS, X86CC;
5717 if (In.getOpcode() == ISD::SETCC) {
5718 SDValue Op0 = In.getOperand(0);
5719 SDValue Op1 = In.getOperand(1);
5720 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5721 bool isFP = Op1.getValueType().isFloatingPoint();
5722 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5723
5724 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5725
5726 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5727 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5728 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5729 } else if (In.getOpcode() == X86ISD::SETCC) {
5730 X86CC = In.getOperand(0);
5731 EFLAGS = In.getOperand(1);
5732 } else {
5733 // The algorithm:
5734 // Bit1 = In & 0x1
5735 // if (Bit1 != 0)
5736 // ZF = 0
5737 // else
5738 // ZF = 1
5739 // if (ZF == 0)
5740 // res = allOnes ### CMOVNE -1, %res
5741 // else
5742 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005743 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005744 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5745 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5746 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5747 }
5748
5749 if (VT == MVT::v16i1) {
5750 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5751 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5752 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5753 Cst0, Cst1, X86CC, EFLAGS);
5754 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5755 }
5756
5757 if (VT == MVT::v8i1) {
5758 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5759 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5760 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5761 Cst0, Cst1, X86CC, EFLAGS);
5762 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5763 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5764 }
5765 llvm_unreachable("Unsupported predicate operation");
5766}
5767
Michael Liaofacace82012-10-19 17:15:18 +00005768SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005769X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005770 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005771
Craig Topper5a0910b2013-08-15 02:33:50 +00005772 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005773 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005774 unsigned NumElems = Op.getNumOperands();
5775
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005776 // Generate vectors for predicate vectors.
5777 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5778 return LowerBUILD_VECTORvXi1(Op, DAG);
5779
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005780 // Vectors containing all zeros can be matched by pxor and xorps later
5781 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5782 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5783 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005784 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005785 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005786
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005787 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005788 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005789
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005790 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005791 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5792 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005793 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005794 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005795 return Op;
5796
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005797 if (!VT.is512BitVector())
5798 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005799 }
5800
Craig Topper158ec072013-08-14 07:34:43 +00005801 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005802 if (Broadcast.getNode())
5803 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005804
Owen Andersone50ed302009-08-10 22:56:29 +00005805 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005806
Evan Cheng0db9fe62006-04-25 20:13:52 +00005807 unsigned NumZero = 0;
5808 unsigned NumNonZero = 0;
5809 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005810 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005811 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005812 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005813 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005814 if (Elt.getOpcode() == ISD::UNDEF)
5815 continue;
5816 Values.insert(Elt);
5817 if (Elt.getOpcode() != ISD::Constant &&
5818 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005819 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005820 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005821 NumZero++;
5822 else {
5823 NonZeros |= (1 << i);
5824 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005825 }
5826 }
5827
Chris Lattner97a2a562010-08-26 05:24:29 +00005828 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5829 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005830 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005831
Chris Lattner67f453a2008-03-09 05:42:06 +00005832 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005833 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005834 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005835 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005836
Chris Lattner62098042008-03-09 01:05:04 +00005837 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5838 // the value are obviously zero, truncate the value to i32 and do the
5839 // insertion that way. Only do this if the value is non-constant or if the
5840 // value is a constant being inserted into element 0. It is cheaper to do
5841 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005842 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005843 (!IsAllConstants || Idx == 0)) {
5844 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005845 // Handle SSE only.
5846 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5847 EVT VecVT = MVT::v4i32;
5848 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005849
Chris Lattner62098042008-03-09 01:05:04 +00005850 // Truncate the value (which may itself be a constant) to i32, and
5851 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005852 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005853 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005854 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005855
Chris Lattner62098042008-03-09 01:05:04 +00005856 // Now we have our 32-bit value zero extended in the low element of
5857 // a vector. If Idx != 0, swizzle it into place.
5858 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005859 SmallVector<int, 4> Mask;
5860 Mask.push_back(Idx);
5861 for (unsigned i = 1; i != VecElts; ++i)
5862 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005863 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005864 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005865 }
Craig Topper07a27622012-01-22 03:07:48 +00005866 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005867 }
5868 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005869
Chris Lattner19f79692008-03-08 22:59:52 +00005870 // If we have a constant or non-constant insertion into the low element of
5871 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5872 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005873 // depending on what the source datatype is.
5874 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005875 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005876 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005877
5878 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005879 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005880 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005881 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005882 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5883 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005884 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005885 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005886 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5887 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005888 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005889 }
5890
5891 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005892 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005893 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005894 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005895 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005896 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005897 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005898 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005899 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005900 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005901 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005902 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005903 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005904
5905 // Is it a vector logical left shift?
5906 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005907 X86::isZeroNode(Op.getOperand(0)) &&
5908 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005909 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005910 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005911 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005912 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005913 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005914 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005915
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005916 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005917 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005918
Chris Lattner19f79692008-03-08 22:59:52 +00005919 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5920 // is a non-constant being inserted into an element other than the low one,
5921 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5922 // movd/movss) to move this into the low element, then shuffle it into
5923 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005924 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005925 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005926
Evan Cheng0db9fe62006-04-25 20:13:52 +00005927 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005928 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005929 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005930 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005931 MaskVec.push_back(i == Idx ? 0 : 1);
5932 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005933 }
5934 }
5935
Chris Lattner67f453a2008-03-09 05:42:06 +00005936 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005937 if (Values.size() == 1) {
5938 if (EVTBits == 32) {
5939 // Instead of a shuffle like this:
5940 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5941 // Check if it's possible to issue this instead.
5942 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005943 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005944 SDValue Item = Op.getOperand(Idx);
5945 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5946 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5947 }
Dan Gohman475871a2008-07-27 21:46:04 +00005948 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005949 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005950
Dan Gohmana3941172007-07-24 22:55:08 +00005951 // A vector full of immediates; various special cases are already
5952 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005953 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005954 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005955
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005956 // For AVX-length vectors, build the individual 128-bit pieces and use
5957 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005958 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005959 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005960 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005961 V.push_back(Op.getOperand(i));
5962
5963 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5964
5965 // Build both the lower and upper subvector.
5966 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5967 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5968 NumElems/2);
5969
5970 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005971 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005972 }
5973
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005974 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005975 if (EVTBits == 64) {
5976 if (NumNonZero == 1) {
5977 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005978 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005979 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005980 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005981 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005982 }
Dan Gohman475871a2008-07-27 21:46:04 +00005983 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005984 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005985
5986 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005987 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005988 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005989 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005990 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005991 }
5992
Bill Wendling826f36f2007-03-28 00:57:11 +00005993 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005994 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005995 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005996 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005997 }
5998
5999 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006000 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006001 if (NumElems == 4 && NumZero > 0) {
6002 for (unsigned i = 0; i < 4; ++i) {
6003 bool isZero = !(NonZeros & (1 << i));
6004 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006005 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006006 else
Dale Johannesenace16102009-02-03 19:33:06 +00006007 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006008 }
6009
6010 for (unsigned i = 0; i < 2; ++i) {
6011 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6012 default: break;
6013 case 0:
6014 V[i] = V[i*2]; // Must be a zero vector.
6015 break;
6016 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006017 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006018 break;
6019 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006020 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006021 break;
6022 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006023 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006024 break;
6025 }
6026 }
6027
Benjamin Kramer9c683542012-01-30 15:16:21 +00006028 bool Reverse1 = (NonZeros & 0x3) == 2;
6029 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6030 int MaskVec[] = {
6031 Reverse1 ? 1 : 0,
6032 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006033 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6034 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006035 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006036 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006037 }
6038
Craig Topper7a9a28b2012-08-12 02:23:29 +00006039 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006040 // Check for a build vector of consecutive loads.
6041 for (unsigned i = 0; i < NumElems; ++i)
6042 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006043
Nate Begemanfdea31a2010-03-24 20:49:50 +00006044 // Check for elements which are consecutive loads.
6045 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6046 if (LD.getNode())
6047 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006048
Michael Liaofacace82012-10-19 17:15:18 +00006049 // Check for a build vector from mostly shuffle plus few inserting.
6050 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6051 if (Sh.getNode())
6052 return Sh;
6053
Michael J. Spencerec38de22010-10-10 22:04:20 +00006054 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006055 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006056 SDValue Result;
6057 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6058 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6059 else
6060 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006061
Chris Lattner24faf612010-08-28 17:59:08 +00006062 for (unsigned i = 1; i < NumElems; ++i) {
6063 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6064 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006065 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006066 }
6067 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006068 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006069
Chris Lattner6e80e442010-08-28 17:15:43 +00006070 // Otherwise, expand into a number of unpckl*, start by extending each of
6071 // our (non-undef) elements to the full vector width with the element in the
6072 // bottom slot of the vector (which generates no code for SSE).
6073 for (unsigned i = 0; i < NumElems; ++i) {
6074 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6075 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6076 else
6077 V[i] = DAG.getUNDEF(VT);
6078 }
6079
6080 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006081 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6082 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6083 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006084 unsigned EltStride = NumElems >> 1;
6085 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006086 for (unsigned i = 0; i < EltStride; ++i) {
6087 // If V[i+EltStride] is undef and this is the first round of mixing,
6088 // then it is safe to just drop this shuffle: V[i] is already in the
6089 // right place, the one element (since it's the first round) being
6090 // inserted as undef can be dropped. This isn't safe for successive
6091 // rounds because they will permute elements within both vectors.
6092 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6093 EltStride == NumElems/2)
6094 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006095
Chris Lattner6e80e442010-08-28 17:15:43 +00006096 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006097 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006098 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006099 }
6100 return V[0];
6101 }
Dan Gohman475871a2008-07-27 21:46:04 +00006102 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006103}
6104
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006105// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6106// to create 256-bit vectors from two other 128-bit ones.
6107static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006108 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006109 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006110
Elena Demikhovsky83952512013-07-31 11:35:14 +00006111 assert((ResVT.is256BitVector() ||
6112 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006113
6114 SDValue V1 = Op.getOperand(0);
6115 SDValue V2 = Op.getOperand(1);
6116 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006117 if(ResVT.is256BitVector())
6118 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006119
Elena Demikhovsky83952512013-07-31 11:35:14 +00006120 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006121}
6122
Craig Topper55b24052012-09-11 06:15:32 +00006123static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006124 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006125
Elena Demikhovsky83952512013-07-31 11:35:14 +00006126 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006127 // from two other 128-bit ones.
6128 return LowerAVXCONCAT_VECTORS(Op, DAG);
6129}
6130
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006131// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006132static SDValue
6133LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6134 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006135 SDValue V1 = SVOp->getOperand(0);
6136 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006137 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006138 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006139 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006140 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006141
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006142 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6143 return SDValue();
6144 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006145 return SDValue();
6146
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006147 // Check the mask for BLEND and build the value.
6148 unsigned MaskValue = 0;
6149 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006150 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006151 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006152
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006153 // Blend for v16i16 should be symetric for the both lanes.
6154 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006155
Craig Topper9b33ef72013-01-21 06:57:59 +00006156 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006157 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006158 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006159
Craig Topper04f74a12013-01-21 07:25:16 +00006160 if ((EltIdx < 0 || EltIdx == (int)i) &&
6161 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006162 continue;
6163
Craig Topper9b33ef72013-01-21 06:57:59 +00006164 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006165 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006166 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6167 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006168 else
Craig Topper1842ba02012-04-23 06:38:28 +00006169 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006170 }
6171
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006172 // Convert i32 vectors to floating point if it is not AVX2.
6173 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006174 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006175 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006176 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6177 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006178 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6179 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6180 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006181
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006182 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6183 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006184 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006185}
6186
Nate Begemanb9a47b82009-02-23 08:49:38 +00006187// v8i16 shuffles - Prefer shuffles in the following order:
6188// 1. [all] pshuflw, pshufhw, optional move
6189// 2. [ssse3] 1 x pshufb
6190// 3. [ssse3] 2 x pshufb + 1 x por
6191// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006192static SDValue
6193LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6194 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006195 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006196 SDValue V1 = SVOp->getOperand(0);
6197 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006198 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006199 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006200
Nate Begemanb9a47b82009-02-23 08:49:38 +00006201 // Determine if more than 1 of the words in each of the low and high quadwords
6202 // of the result come from the same quadword of one of the two inputs. Undef
6203 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006204 unsigned LoQuad[] = { 0, 0, 0, 0 };
6205 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006206 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006207 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006208 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006209 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006210 MaskVals.push_back(EltIdx);
6211 if (EltIdx < 0) {
6212 ++Quad[0];
6213 ++Quad[1];
6214 ++Quad[2];
6215 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006216 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006217 }
6218 ++Quad[EltIdx / 4];
6219 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006220 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006221
Nate Begemanb9a47b82009-02-23 08:49:38 +00006222 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006223 unsigned MaxQuad = 1;
6224 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006225 if (LoQuad[i] > MaxQuad) {
6226 BestLoQuad = i;
6227 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006228 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006229 }
6230
Nate Begemanb9a47b82009-02-23 08:49:38 +00006231 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006232 MaxQuad = 1;
6233 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006234 if (HiQuad[i] > MaxQuad) {
6235 BestHiQuad = i;
6236 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006237 }
6238 }
6239
Nate Begemanb9a47b82009-02-23 08:49:38 +00006240 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006241 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006242 // single pshufb instruction is necessary. If There are more than 2 input
6243 // quads, disable the next transformation since it does not help SSSE3.
6244 bool V1Used = InputQuads[0] || InputQuads[1];
6245 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006246 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006247 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006248 BestLoQuad = InputQuads[0] ? 0 : 1;
6249 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006250 }
6251 if (InputQuads.count() > 2) {
6252 BestLoQuad = -1;
6253 BestHiQuad = -1;
6254 }
6255 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006256
Nate Begemanb9a47b82009-02-23 08:49:38 +00006257 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6258 // the shuffle mask. If a quad is scored as -1, that means that it contains
6259 // words from all 4 input quadwords.
6260 SDValue NewV;
6261 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006262 int MaskV[] = {
6263 BestLoQuad < 0 ? 0 : BestLoQuad,
6264 BestHiQuad < 0 ? 1 : BestHiQuad
6265 };
Eric Christopherfd179292009-08-27 18:07:15 +00006266 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006267 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6268 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6269 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006270
Nate Begemanb9a47b82009-02-23 08:49:38 +00006271 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6272 // source words for the shuffle, to aid later transformations.
6273 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006274 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006275 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006276 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006277 if (idx != (int)i)
6278 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006279 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006280 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006281 AllWordsInNewV = false;
6282 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006283 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006284
Nate Begemanb9a47b82009-02-23 08:49:38 +00006285 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6286 if (AllWordsInNewV) {
6287 for (int i = 0; i != 8; ++i) {
6288 int idx = MaskVals[i];
6289 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006290 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006291 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006292 if ((idx != i) && idx < 4)
6293 pshufhw = false;
6294 if ((idx != i) && idx > 3)
6295 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006296 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006297 V1 = NewV;
6298 V2Used = false;
6299 BestLoQuad = 0;
6300 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006301 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006302
Nate Begemanb9a47b82009-02-23 08:49:38 +00006303 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6304 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006305 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006306 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6307 unsigned TargetMask = 0;
6308 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006309 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006310 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6311 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6312 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006313 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006314 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006315 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006316 }
Eric Christopherfd179292009-08-27 18:07:15 +00006317
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006318 // Promote splats to a larger type which usually leads to more efficient code.
6319 // FIXME: Is this true if pshufb is available?
6320 if (SVOp->isSplat())
6321 return PromoteSplat(SVOp, DAG);
6322
Nate Begemanb9a47b82009-02-23 08:49:38 +00006323 // If we have SSSE3, and all words of the result are from 1 input vector,
6324 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6325 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006326 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006327 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006328
Nate Begemanb9a47b82009-02-23 08:49:38 +00006329 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006330 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006331 // mask, and elements that come from V1 in the V2 mask, so that the two
6332 // results can be OR'd together.
6333 bool TwoInputs = V1Used && V2Used;
6334 for (unsigned i = 0; i != 8; ++i) {
6335 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006336 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6337 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006338 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006339 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006340 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006341 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006342 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006343 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006344 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006345 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006346 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006347
Nate Begemanb9a47b82009-02-23 08:49:38 +00006348 // Calculate the shuffle mask for the second input, shuffle it, and
6349 // OR it with the first shuffled input.
6350 pshufbMask.clear();
6351 for (unsigned i = 0; i != 8; ++i) {
6352 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006353 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6354 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6355 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6356 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006357 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006358 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006359 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006360 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006361 MVT::v16i8, &pshufbMask[0], 16));
6362 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006363 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006364 }
6365
6366 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6367 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006368 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006369 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006370 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006371 for (int i = 0; i != 4; ++i) {
6372 int idx = MaskVals[i];
6373 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006374 InOrder.set(i);
6375 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006376 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006377 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006378 }
6379 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006380 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006381 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006382
Craig Topperdd637ae2012-02-19 05:41:45 +00006383 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6384 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006385 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006386 NewV.getOperand(0),
6387 getShufflePSHUFLWImmediate(SVOp), DAG);
6388 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006389 }
Eric Christopherfd179292009-08-27 18:07:15 +00006390
Nate Begemanb9a47b82009-02-23 08:49:38 +00006391 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6392 // and update MaskVals with the new element order.
6393 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006394 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006395 for (unsigned i = 4; i != 8; ++i) {
6396 int idx = MaskVals[i];
6397 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006398 InOrder.set(i);
6399 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006400 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006401 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006402 }
6403 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006404 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006405 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006406
Craig Topperdd637ae2012-02-19 05:41:45 +00006407 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6408 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006409 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006410 NewV.getOperand(0),
6411 getShufflePSHUFHWImmediate(SVOp), DAG);
6412 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006413 }
Eric Christopherfd179292009-08-27 18:07:15 +00006414
Nate Begemanb9a47b82009-02-23 08:49:38 +00006415 // In case BestHi & BestLo were both -1, which means each quadword has a word
6416 // from each of the four input quadwords, calculate the InOrder bitvector now
6417 // before falling through to the insert/extract cleanup.
6418 if (BestLoQuad == -1 && BestHiQuad == -1) {
6419 NewV = V1;
6420 for (int i = 0; i != 8; ++i)
6421 if (MaskVals[i] < 0 || MaskVals[i] == i)
6422 InOrder.set(i);
6423 }
Eric Christopherfd179292009-08-27 18:07:15 +00006424
Nate Begemanb9a47b82009-02-23 08:49:38 +00006425 // The other elements are put in the right place using pextrw and pinsrw.
6426 for (unsigned i = 0; i != 8; ++i) {
6427 if (InOrder[i])
6428 continue;
6429 int EltIdx = MaskVals[i];
6430 if (EltIdx < 0)
6431 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006432 SDValue ExtOp = (EltIdx < 8) ?
6433 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6434 DAG.getIntPtrConstant(EltIdx)) :
6435 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006436 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006437 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006438 DAG.getIntPtrConstant(i));
6439 }
6440 return NewV;
6441}
6442
6443// v16i8 shuffles - Prefer shuffles in the following order:
6444// 1. [ssse3] 1 x pshufb
6445// 2. [ssse3] 2 x pshufb + 1 x por
6446// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006447static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6448 const X86Subtarget* Subtarget,
6449 SelectionDAG &DAG) {
6450 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006451 SDValue V1 = SVOp->getOperand(0);
6452 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006453 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006454 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006455
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006456 // Promote splats to a larger type which usually leads to more efficient code.
6457 // FIXME: Is this true if pshufb is available?
6458 if (SVOp->isSplat())
6459 return PromoteSplat(SVOp, DAG);
6460
Nate Begemanb9a47b82009-02-23 08:49:38 +00006461 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006462 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006463 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006464
Nate Begemanb9a47b82009-02-23 08:49:38 +00006465 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006466 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006467 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006468
Nate Begemanb9a47b82009-02-23 08:49:38 +00006469 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006470 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006471 //
6472 // Otherwise, we have elements from both input vectors, and must zero out
6473 // elements that come from V2 in the first mask, and V1 in the second mask
6474 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006475 for (unsigned i = 0; i != 16; ++i) {
6476 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006477 if (EltIdx < 0 || EltIdx >= 16)
6478 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006479 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006480 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006481 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006482 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006483 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006484
6485 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6486 // the 2nd operand if it's undefined or zero.
6487 if (V2.getOpcode() == ISD::UNDEF ||
6488 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006489 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006490
Nate Begemanb9a47b82009-02-23 08:49:38 +00006491 // Calculate the shuffle mask for the second input, shuffle it, and
6492 // OR it with the first shuffled input.
6493 pshufbMask.clear();
6494 for (unsigned i = 0; i != 16; ++i) {
6495 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006496 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006497 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006498 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006499 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006500 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006501 MVT::v16i8, &pshufbMask[0], 16));
6502 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006503 }
Eric Christopherfd179292009-08-27 18:07:15 +00006504
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 // No SSSE3 - Calculate in place words and then fix all out of place words
6506 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6507 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006508 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6509 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006510 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006511 for (int i = 0; i != 8; ++i) {
6512 int Elt0 = MaskVals[i*2];
6513 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006514
Nate Begemanb9a47b82009-02-23 08:49:38 +00006515 // This word of the result is all undef, skip it.
6516 if (Elt0 < 0 && Elt1 < 0)
6517 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006518
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006520 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006521 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006522
Nate Begemanb9a47b82009-02-23 08:49:38 +00006523 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6524 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6525 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006526
6527 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6528 // using a single extract together, load it and store it.
6529 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006530 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006531 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006532 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006533 DAG.getIntPtrConstant(i));
6534 continue;
6535 }
6536
Nate Begemanb9a47b82009-02-23 08:49:38 +00006537 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006538 // source byte is not also odd, shift the extracted word left 8 bits
6539 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006540 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006541 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006542 DAG.getIntPtrConstant(Elt1 / 2));
6543 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006544 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006545 DAG.getConstant(8,
6546 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006547 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006548 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6549 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006550 }
6551 // If Elt0 is defined, extract it from the appropriate source. If the
6552 // source byte is not also even, shift the extracted word right 8 bits. If
6553 // Elt1 was also defined, OR the extracted values together before
6554 // inserting them in the result.
6555 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006556 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006557 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6558 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006559 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006560 DAG.getConstant(8,
6561 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006562 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006563 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6564 DAG.getConstant(0x00FF, MVT::i16));
6565 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006566 : InsElt0;
6567 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006568 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006569 DAG.getIntPtrConstant(i));
6570 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006571 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006572}
6573
Elena Demikhovsky41789462012-09-06 12:42:01 +00006574// v32i8 shuffles - Translate to VPSHUFB if possible.
6575static
6576SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006577 const X86Subtarget *Subtarget,
6578 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006579 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006580 SDValue V1 = SVOp->getOperand(0);
6581 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006582 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006583 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006584
6585 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006586 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6587 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006588
Michael Liao471b9172012-10-03 23:43:52 +00006589 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006590 // (1) one of input vector is undefined or zeroinitializer.
6591 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6592 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006593 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006594 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006595 return SDValue();
6596
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006597 if (V1IsAllZero && !V2IsAllZero) {
6598 CommuteVectorShuffleMask(MaskVals, 32);
6599 V1 = V2;
6600 }
6601 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006602 for (unsigned i = 0; i != 32; i++) {
6603 int EltIdx = MaskVals[i];
6604 if (EltIdx < 0 || EltIdx >= 32)
6605 EltIdx = 0x80;
6606 else {
6607 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6608 // Cross lane is not allowed.
6609 return SDValue();
6610 EltIdx &= 0xf;
6611 }
6612 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6613 }
6614 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6615 DAG.getNode(ISD::BUILD_VECTOR, dl,
6616 MVT::v32i8, &pshufbMask[0], 32));
6617}
6618
Evan Cheng7a831ce2007-12-15 03:00:47 +00006619/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006620/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006621/// done when every pair / quad of shuffle mask elements point to elements in
6622/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006623/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006624static
Nate Begeman9008ca62009-04-27 18:41:29 +00006625SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006626 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006627 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006628 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006629 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006630 MVT NewVT;
6631 unsigned Scale;
6632 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006633 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006634 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6635 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6636 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6637 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6638 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6639 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006640 }
6641
Nate Begeman9008ca62009-04-27 18:41:29 +00006642 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006643 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006644 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006645 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006646 int EltIdx = SVOp->getMaskElt(i+j);
6647 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006648 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006649 if (StartIdx < 0)
6650 StartIdx = (EltIdx / Scale);
6651 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006652 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006653 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006654 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006655 }
6656
Craig Topper11ac1f82012-05-04 04:08:44 +00006657 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6658 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006659 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006660}
6661
Evan Chengd880b972008-05-09 21:53:03 +00006662/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006663///
Craig Topper8d725b92013-08-15 05:33:45 +00006664static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006665 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006666 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006667 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006668 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006669 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006670 LD = dyn_cast<LoadSDNode>(SrcOp);
6671 if (!LD) {
6672 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6673 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006674 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006675 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006676 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006677 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006678 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006679 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006680 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006681 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006682 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6683 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6684 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006685 SrcOp.getOperand(0)
6686 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006687 }
6688 }
6689 }
6690
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006691 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006692 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006693 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006694 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006695}
6696
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006697/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6698/// which could not be matched by any known target speficic shuffle
6699static SDValue
6700LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006701
6702 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6703 if (NewOp.getNode())
6704 return NewOp;
6705
Craig Topper5a0910b2013-08-15 02:33:50 +00006706 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006707
Craig Topper8f35c132012-01-20 09:29:03 +00006708 unsigned NumElems = VT.getVectorNumElements();
6709 unsigned NumLaneElems = NumElems / 2;
6710
Andrew Trickac6d9be2013-05-25 02:42:55 +00006711 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006712 MVT EltVT = VT.getVectorElementType();
6713 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006714 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006715
Craig Topper9a2b6e12012-04-06 07:45:23 +00006716 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006717 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006718 // Build a shuffle mask for the output, discovering on the fly which
6719 // input vectors to use as shuffle operands (recorded in InputUsed).
6720 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006721 // out with UseBuildVector set.
6722 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006723 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006724 unsigned LaneStart = l * NumLaneElems;
6725 for (unsigned i = 0; i != NumLaneElems; ++i) {
6726 // The mask element. This indexes into the input.
6727 int Idx = SVOp->getMaskElt(i+LaneStart);
6728 if (Idx < 0) {
6729 // the mask element does not index into any input vector.
6730 Mask.push_back(-1);
6731 continue;
6732 }
Craig Topper8f35c132012-01-20 09:29:03 +00006733
Craig Topper9a2b6e12012-04-06 07:45:23 +00006734 // The input vector this mask element indexes into.
6735 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006736
Craig Topper9a2b6e12012-04-06 07:45:23 +00006737 // Turn the index into an offset from the start of the input vector.
6738 Idx -= Input * NumLaneElems;
6739
6740 // Find or create a shuffle vector operand to hold this input.
6741 unsigned OpNo;
6742 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6743 if (InputUsed[OpNo] == Input)
6744 // This input vector is already an operand.
6745 break;
6746 if (InputUsed[OpNo] < 0) {
6747 // Create a new operand for this input vector.
6748 InputUsed[OpNo] = Input;
6749 break;
6750 }
6751 }
6752
6753 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006754 // More than two input vectors used! Give up on trying to create a
6755 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6756 UseBuildVector = true;
6757 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006758 }
6759
6760 // Add the mask index for the new shuffle vector.
6761 Mask.push_back(Idx + OpNo * NumLaneElems);
6762 }
6763
Craig Topper8ae97ba2012-05-21 06:40:16 +00006764 if (UseBuildVector) {
6765 SmallVector<SDValue, 16> SVOps;
6766 for (unsigned i = 0; i != NumLaneElems; ++i) {
6767 // The mask element. This indexes into the input.
6768 int Idx = SVOp->getMaskElt(i+LaneStart);
6769 if (Idx < 0) {
6770 SVOps.push_back(DAG.getUNDEF(EltVT));
6771 continue;
6772 }
6773
6774 // The input vector this mask element indexes into.
6775 int Input = Idx / NumElems;
6776
6777 // Turn the index into an offset from the start of the input vector.
6778 Idx -= Input * NumElems;
6779
6780 // Extract the vector element by hand.
6781 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6782 SVOp->getOperand(Input),
6783 DAG.getIntPtrConstant(Idx)));
6784 }
6785
6786 // Construct the output using a BUILD_VECTOR.
6787 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6788 SVOps.size());
6789 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006790 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006791 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006792 } else {
6793 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006794 (InputUsed[0] % 2) * NumLaneElems,
6795 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006796 // If only one input was used, use an undefined vector for the other.
6797 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6798 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006799 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006800 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006801 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006802 }
6803
6804 Mask.clear();
6805 }
Craig Topper8f35c132012-01-20 09:29:03 +00006806
6807 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006808 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006809}
6810
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006811/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6812/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006813static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006814LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006815 SDValue V1 = SVOp->getOperand(0);
6816 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006817 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006818 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006819
Craig Topper7a9a28b2012-08-12 02:23:29 +00006820 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006821
Benjamin Kramer9c683542012-01-30 15:16:21 +00006822 std::pair<int, int> Locs[4];
6823 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006824 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006825
Evan Chengace3c172008-07-22 21:13:36 +00006826 unsigned NumHi = 0;
6827 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006828 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006829 int Idx = PermMask[i];
6830 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006831 Locs[i] = std::make_pair(-1, -1);
6832 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006833 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6834 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006835 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006836 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006837 NumLo++;
6838 } else {
6839 Locs[i] = std::make_pair(1, NumHi);
6840 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006841 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006842 NumHi++;
6843 }
6844 }
6845 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006846
Evan Chengace3c172008-07-22 21:13:36 +00006847 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006848 // If no more than two elements come from either vector. This can be
6849 // implemented with two shuffles. First shuffle gather the elements.
6850 // The second shuffle, which takes the first shuffle as both of its
6851 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006852 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006853
Benjamin Kramer9c683542012-01-30 15:16:21 +00006854 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006855
Benjamin Kramer9c683542012-01-30 15:16:21 +00006856 for (unsigned i = 0; i != 4; ++i)
6857 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006858 unsigned Idx = (i < 2) ? 0 : 4;
6859 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006860 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006861 }
Evan Chengace3c172008-07-22 21:13:36 +00006862
Nate Begeman9008ca62009-04-27 18:41:29 +00006863 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006864 }
6865
6866 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006867 // Otherwise, we must have three elements from one vector, call it X, and
6868 // one element from the other, call it Y. First, use a shufps to build an
6869 // intermediate vector with the one element from Y and the element from X
6870 // that will be in the same half in the final destination (the indexes don't
6871 // matter). Then, use a shufps to build the final vector, taking the half
6872 // containing the element from Y from the intermediate, and the other half
6873 // from X.
6874 if (NumHi == 3) {
6875 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006876 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006877 std::swap(V1, V2);
6878 }
6879
6880 // Find the element from V2.
6881 unsigned HiIndex;
6882 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006883 int Val = PermMask[HiIndex];
6884 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006885 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006886 if (Val >= 4)
6887 break;
6888 }
6889
Nate Begeman9008ca62009-04-27 18:41:29 +00006890 Mask1[0] = PermMask[HiIndex];
6891 Mask1[1] = -1;
6892 Mask1[2] = PermMask[HiIndex^1];
6893 Mask1[3] = -1;
6894 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006895
6896 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006897 Mask1[0] = PermMask[0];
6898 Mask1[1] = PermMask[1];
6899 Mask1[2] = HiIndex & 1 ? 6 : 4;
6900 Mask1[3] = HiIndex & 1 ? 4 : 6;
6901 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006902 }
Craig Topper69947b92012-04-23 06:57:04 +00006903
6904 Mask1[0] = HiIndex & 1 ? 2 : 0;
6905 Mask1[1] = HiIndex & 1 ? 0 : 2;
6906 Mask1[2] = PermMask[2];
6907 Mask1[3] = PermMask[3];
6908 if (Mask1[2] >= 0)
6909 Mask1[2] += 4;
6910 if (Mask1[3] >= 0)
6911 Mask1[3] += 4;
6912 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006913 }
6914
6915 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006916 int LoMask[] = { -1, -1, -1, -1 };
6917 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006918
Benjamin Kramer9c683542012-01-30 15:16:21 +00006919 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006920 unsigned MaskIdx = 0;
6921 unsigned LoIdx = 0;
6922 unsigned HiIdx = 2;
6923 for (unsigned i = 0; i != 4; ++i) {
6924 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006925 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006926 MaskIdx = 1;
6927 LoIdx = 0;
6928 HiIdx = 2;
6929 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006930 int Idx = PermMask[i];
6931 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006932 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006933 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006934 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006935 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006936 LoIdx++;
6937 } else {
6938 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006939 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006940 HiIdx++;
6941 }
6942 }
6943
Nate Begeman9008ca62009-04-27 18:41:29 +00006944 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6945 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006946 int MaskOps[] = { -1, -1, -1, -1 };
6947 for (unsigned i = 0; i != 4; ++i)
6948 if (Locs[i].first != -1)
6949 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006950 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006951}
6952
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006953static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006954 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006955 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006956
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006957 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6958 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006959 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6960 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6961 // BUILD_VECTOR (load), undef
6962 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006963
6964 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006965}
6966
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006967static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006968SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006969 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00006970
6971 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006972 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6973 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006974 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6975 V1, DAG));
6976}
6977
6978static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006979SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006980 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006981 SDValue V1 = Op.getOperand(0);
6982 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00006983 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006984
6985 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6986
Craig Topper1accb7e2012-01-10 06:54:16 +00006987 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006988 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6989
Evan Cheng0899f5c2011-08-31 02:05:24 +00006990 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6991 return DAG.getNode(ISD::BITCAST, dl, VT,
6992 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6993 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6994 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006995}
6996
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006997static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006998SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006999 SDValue V1 = Op.getOperand(0);
7000 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007001 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007002
7003 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7004 "unsupported shuffle type");
7005
7006 if (V2.getOpcode() == ISD::UNDEF)
7007 V2 = V1;
7008
7009 // v4i32 or v4f32
7010 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7011}
7012
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007013static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007014SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007015 SDValue V1 = Op.getOperand(0);
7016 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007017 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007018 unsigned NumElems = VT.getVectorNumElements();
7019
7020 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7021 // operand of these instructions is only memory, so check if there's a
7022 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7023 // same masks.
7024 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007025
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007026 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007027 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007028 CanFoldLoad = true;
7029
7030 // When V1 is a load, it can be folded later into a store in isel, example:
7031 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7032 // turns into:
7033 // (MOVLPSmr addr:$src1, VR128:$src2)
7034 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007035 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007036 CanFoldLoad = true;
7037
Dan Gohman65fd6562011-11-03 21:49:52 +00007038 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007039 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007040 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007041 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7042
7043 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007044 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007045 if (SVOp->getMaskElt(1) != -1)
7046 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007047 }
7048
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007049 // movl and movlp will both match v2i64, but v2i64 is never matched by
7050 // movl earlier because we make it strict to avoid messing with the movlp load
7051 // folding logic (see the code above getMOVLP call). Match it here then,
7052 // this is horrible, but will stay like this until we move all shuffle
7053 // matching to x86 specific nodes. Note that for the 1st condition all
7054 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007055 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007056 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7057 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007058 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007059 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007060 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007061 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007062
7063 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7064
7065 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007066 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007067 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007068}
7069
Michael Liaod9d09602012-10-23 17:34:00 +00007070// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007071static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7072 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007073 // PMOVZX is only available from SSE41.
7074 if (!Subtarget->hasSSE41())
7075 return SDValue();
7076
Craig Topper8d725b92013-08-15 05:33:45 +00007077 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007078
7079 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007080 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007081 return SDValue();
7082
7083 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007084 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007085 SDValue V1 = Op.getOperand(0);
7086 SDValue V2 = Op.getOperand(1);
7087 unsigned NumElems = VT.getVectorNumElements();
7088
7089 // Extending is an unary operation and the element type of the source vector
7090 // won't be equal to or larger than i64.
7091 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7092 VT.getVectorElementType() == MVT::i64)
7093 return SDValue();
7094
7095 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7096 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007097 while ((1U << Shift) < NumElems) {
7098 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007099 break;
7100 Shift += 1;
7101 // The maximal ratio is 8, i.e. from i8 to i64.
7102 if (Shift > 3)
7103 return SDValue();
7104 }
7105
7106 // Check the shuffle mask.
7107 unsigned Mask = (1U << Shift) - 1;
7108 for (unsigned i = 0; i != NumElems; ++i) {
7109 int EltIdx = SVOp->getMaskElt(i);
7110 if ((i & Mask) != 0 && EltIdx != -1)
7111 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007112 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007113 return SDValue();
7114 }
7115
7116 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007117 MVT NeVT = MVT::getIntegerVT(NBits);
7118 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007119
Craig Topper158ec072013-08-14 07:34:43 +00007120 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007121 return SDValue();
7122
7123 // Simplify the operand as it's prepared to be fed into shuffle.
7124 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7125 if (V1.getOpcode() == ISD::BITCAST &&
7126 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7127 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007128 V1.getOperand(0).getOperand(0)
7129 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007130 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7131 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007132 ConstantSDNode *CIdx =
7133 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007134 // If it's foldable, i.e. normal load with single use, we will let code
7135 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007136 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007137 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007138 MVT FullVT = V.getSimpleValueType();
7139 MVT V1VT = V1.getSimpleValueType();
7140 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007141 // The "ext_vec_elt" node is wider than the result node.
7142 // In this case we should extract subvector from V.
7143 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007144 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7145 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007146 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007147 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007148 DAG.getIntPtrConstant(0));
7149 }
Craig Topper8d725b92013-08-15 05:33:45 +00007150 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007151 }
Michael Liaod9d09602012-10-23 17:34:00 +00007152 }
7153
7154 return DAG.getNode(ISD::BITCAST, DL, VT,
7155 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7156}
7157
Craig Topper158ec072013-08-14 07:34:43 +00007158static SDValue
7159NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7160 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007161 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007162 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007163 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007164 SDValue V1 = Op.getOperand(0);
7165 SDValue V2 = Op.getOperand(1);
7166
7167 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007168 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007169
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007170 // Handle splat operations
7171 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007172 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007173 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007174 if (Broadcast.getNode())
7175 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007176 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007177
Michael Liaod9d09602012-10-23 17:34:00 +00007178 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007179 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007180 if (NewOp.getNode())
7181 return NewOp;
7182
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007183 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7184 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007185 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7186 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007187 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007188 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007189 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007190 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007191 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007192 // FIXME: Figure out a cleaner way to do this.
7193 // Try to make use of movq to zero out the top part.
7194 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007195 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007196 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007197 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007198 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7199 NewVT, true, false))
7200 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007201 DAG, Subtarget, dl);
7202 }
7203 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007204 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007205 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007206 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007207 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7208 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7209 DAG, Subtarget, dl);
7210 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007211 }
7212 }
7213 return SDValue();
7214}
7215
Dan Gohman475871a2008-07-27 21:46:04 +00007216SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007217X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007218 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007219 SDValue V1 = Op.getOperand(0);
7220 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007221 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007222 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007223 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007224 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007225 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007226 bool V1IsSplat = false;
7227 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007228 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007229 bool HasFp256 = Subtarget->hasFp256();
7230 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007231 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007232 bool OptForSize = MF.getFunction()->getAttributes().
7233 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007234
Craig Topper3426a3e2011-11-14 06:46:21 +00007235 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007236
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007237 if (V1IsUndef && V2IsUndef)
7238 return DAG.getUNDEF(VT);
7239
7240 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007241
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007242 // Vector shuffle lowering takes 3 steps:
7243 //
7244 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7245 // narrowing and commutation of operands should be handled.
7246 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7247 // shuffle nodes.
7248 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7249 // so the shuffle can be broken into other shuffles and the legalizer can
7250 // try the lowering again.
7251 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007252 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007253 // be matched during isel, all of them must be converted to a target specific
7254 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007255
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007256 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7257 // narrowing and commutation of operands should be handled. The actual code
7258 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007259 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007260 if (NewOp.getNode())
7261 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007262
Craig Topper5aaffa82012-02-19 02:53:47 +00007263 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7264
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007265 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7266 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007267 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007268 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007269 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007270 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007271
Craig Topperdd637ae2012-02-19 05:41:45 +00007272 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007273 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007274 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007275
Craig Topperdd637ae2012-02-19 05:41:45 +00007276 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007277 return getMOVHighToLow(Op, dl, DAG);
7278
7279 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007280 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007281 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007282 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007283
Craig Topper5aaffa82012-02-19 02:53:47 +00007284 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007285 // The actual implementation will match the mask in the if above and then
7286 // during isel it can match several different instructions, not only pshufd
7287 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007288 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7289 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007290
Craig Topper5aaffa82012-02-19 02:53:47 +00007291 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007292
Craig Topper1accb7e2012-01-10 06:54:16 +00007293 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007294 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7295
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007296 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7297 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7298 DAG);
7299
Craig Topperb3982da2011-12-31 23:50:21 +00007300 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007301 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007302 }
Eric Christopherfd179292009-08-27 18:07:15 +00007303
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007304 if (isPALIGNRMask(M, VT, Subtarget))
7305 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7306 getShufflePALIGNRImmediate(SVOp),
7307 DAG);
7308
Evan Chengf26ffe92008-05-29 08:22:04 +00007309 // Check if this can be converted into a logical shift.
7310 bool isLeft = false;
7311 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007312 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007313 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007314 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007315 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007316 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007317 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007318 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007319 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007320 }
Eric Christopherfd179292009-08-27 18:07:15 +00007321
Craig Topper5aaffa82012-02-19 02:53:47 +00007322 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007323 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007324 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007325 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007326 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007327 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7328
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007329 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007330 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7331 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007332 }
Eric Christopherfd179292009-08-27 18:07:15 +00007333
Nate Begeman9008ca62009-04-27 18:41:29 +00007334 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007335 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007336 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007337
Craig Topperdd637ae2012-02-19 05:41:45 +00007338 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007339 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007340
Craig Topperdd637ae2012-02-19 05:41:45 +00007341 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007342 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007343
Craig Topperdd637ae2012-02-19 05:41:45 +00007344 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007345 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007346
Craig Topperdd637ae2012-02-19 05:41:45 +00007347 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007348 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007349
Craig Topperdd637ae2012-02-19 05:41:45 +00007350 if (ShouldXformToMOVHLPS(M, VT) ||
7351 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007352 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007353
Evan Chengf26ffe92008-05-29 08:22:04 +00007354 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007355 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007356 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007357 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007358 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007359 }
Eric Christopherfd179292009-08-27 18:07:15 +00007360
Evan Cheng9eca5e82006-10-25 21:49:50 +00007361 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007362 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7363 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007364 V1IsSplat = isSplatVector(V1.getNode());
7365 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007366
Chris Lattner8a594482007-11-25 00:24:49 +00007367 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007368 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7369 CommuteVectorShuffleMask(M, NumElems);
7370 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007371 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007372 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007373 }
7374
Craig Topperbeabc6c2011-12-05 06:56:46 +00007375 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007376 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007377 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007378 return V1;
7379 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7380 // the instruction selector will not match, so get a canonical MOVL with
7381 // swapped operands to undo the commute.
7382 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007383 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007384
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007385 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007386 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007387
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007388 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007389 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007390
Evan Cheng9bbbb982006-10-25 20:48:19 +00007391 if (V2IsSplat) {
7392 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007393 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007394 // new vector_shuffle with the corrected mask.p
7395 SmallVector<int, 8> NewMask(M.begin(), M.end());
7396 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007397 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007398 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007399 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007400 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007401 }
7402
Evan Cheng9eca5e82006-10-25 21:49:50 +00007403 if (Commuted) {
7404 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007405 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007406 CommuteVectorShuffleMask(M, NumElems);
7407 std::swap(V1, V2);
7408 std::swap(V1IsSplat, V2IsSplat);
7409 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007410
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007411 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007412 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007413
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007414 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007415 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007416 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007417
Nate Begeman9008ca62009-04-27 18:41:29 +00007418 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007419 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007420 return CommuteVectorShuffle(SVOp, DAG);
7421
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007422 // The checks below are all present in isShuffleMaskLegal, but they are
7423 // inlined here right now to enable us to directly emit target specific
7424 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007425
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007426 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7427 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007428 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007429 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007430 }
7431
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007432 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007433 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007434 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007435 DAG);
7436
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007437 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007438 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007439 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007440 DAG);
7441
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007442 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007443 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007444 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007445
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007446 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007447 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007448 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007449 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007450
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007451 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007452 // Generate target specific nodes for 128 or 256-bit shuffles only
7453 // supported in the AVX instruction set.
7454 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007455
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007456 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007457 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007458 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7459
Craig Topper70b883b2011-11-28 10:14:51 +00007460 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007461 if (isVPERMILPMask(M, VT)) {
7462 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007463 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007464 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007465 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007466 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007467 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007468
Craig Topper70b883b2011-11-28 10:14:51 +00007469 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007470 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007471 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007472 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007473
Craig Topper1842ba02012-04-23 06:38:28 +00007474 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007475 if (BlendOp.getNode())
7476 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007477
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007478 unsigned Imm8;
7479 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7480 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007481
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007482 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7483 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007484 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7485 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007486 SmallVector<SDValue, 16> permclMask;
7487 for (unsigned i = 0; i != NumElems; ++i) {
7488 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7489 }
7490
7491 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7492 &permclMask[0], NumElems);
7493 if (V2IsUndef)
7494 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7495 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7496 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7497 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7498 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7499 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007500
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007501 //===--------------------------------------------------------------------===//
7502 // Since no target specific shuffle was selected for this generic one,
7503 // lower it into other known shuffles. FIXME: this isn't true yet, but
7504 // this is the plan.
7505 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007506
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007507 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7508 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007509 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007510 if (NewOp.getNode())
7511 return NewOp;
7512 }
7513
7514 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007515 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007516 if (NewOp.getNode())
7517 return NewOp;
7518 }
7519
Elena Demikhovsky41789462012-09-06 12:42:01 +00007520 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007521 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007522 if (NewOp.getNode())
7523 return NewOp;
7524 }
7525
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007526 // Handle all 128-bit wide vectors with 4 elements, and match them with
7527 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007528 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007529 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7530
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007531 // Handle general 256-bit shuffles
7532 if (VT.is256BitVector())
7533 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7534
Dan Gohman475871a2008-07-27 21:46:04 +00007535 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007536}
7537
Craig Topperf84b7502013-01-20 00:50:58 +00007538static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007539 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007540 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007541
Craig Topper5a0910b2013-08-15 02:33:50 +00007542 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007543 return SDValue();
7544
Duncan Sands83ec4b62008-06-06 12:08:01 +00007545 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007546 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007547 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007548 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007549 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007550 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007551 }
7552
7553 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007554 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7555 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7556 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007557 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7558 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007559 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007560 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007561 Op.getOperand(0)),
7562 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007563 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007564 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007565 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007566 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007567 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007568 }
7569
7570 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007571 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7572 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007573 // result has a single use which is a store or a bitcast to i32. And in
7574 // the case of a store, it's not worth it if the index is a constant 0,
7575 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007576 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007577 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007578 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007579 if ((User->getOpcode() != ISD::STORE ||
7580 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7581 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007582 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007583 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007584 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007585 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007586 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007587 Op.getOperand(0)),
7588 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007589 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007590 }
7591
7592 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007593 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007594 if (isa<ConstantSDNode>(Op.getOperand(1)))
7595 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007596 }
Dan Gohman475871a2008-07-27 21:46:04 +00007597 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007598}
7599
Dan Gohman475871a2008-07-27 21:46:04 +00007600SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007601X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7602 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007603 SDLoc dl(Op);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007604 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00007605 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007606
David Greene74a579d2011-02-10 16:57:36 +00007607 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007608 MVT VecVT = Vec.getSimpleValueType();
David Greene74a579d2011-02-10 16:57:36 +00007609
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007610 // If this is a 256-bit vector result, first extract the 128-bit vector and
7611 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007612 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007613 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00007614 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7615
7616 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007617 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007618 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007619
Elena Demikhovsky83952512013-07-31 11:35:14 +00007620 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7621
7622 //if (IdxVal >= NumElems/2)
7623 // IdxVal -= NumElems/2;
7624 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007625 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007626 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007627 }
7628
Craig Topper7a9a28b2012-08-12 02:23:29 +00007629 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007630
Craig Topperd0a31172012-01-10 06:37:29 +00007631 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007632 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007633 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007634 return Res;
7635 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007636
Craig Topper5a0910b2013-08-15 02:33:50 +00007637 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007638 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007639 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007640 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007641 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007642 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007643 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7644 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007645 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007646 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007647 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007648 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007649 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007650 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007651 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007652 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007653 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007654 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007655 }
7656
7657 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007658 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007659 if (Idx == 0)
7660 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007661
Evan Cheng0db9fe62006-04-25 20:13:52 +00007662 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007663 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007664 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007665 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007666 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007667 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007668 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007669 }
7670
7671 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007672 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7673 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7674 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007675 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007676 if (Idx == 0)
7677 return Op;
7678
7679 // UNPCKHPD the element to the lowest double word, then movsd.
7680 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7681 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007682 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007683 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007684 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007685 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007686 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007687 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007688 }
7689
Dan Gohman475871a2008-07-27 21:46:04 +00007690 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007691}
7692
Craig Topperf84b7502013-01-20 00:50:58 +00007693static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007694 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007695 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007696 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007697
Dan Gohman475871a2008-07-27 21:46:04 +00007698 SDValue N0 = Op.getOperand(0);
7699 SDValue N1 = Op.getOperand(1);
7700 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007701
Craig Topper7a9a28b2012-08-12 02:23:29 +00007702 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007703 return SDValue();
7704
Dan Gohman8a55ce42009-09-23 21:02:20 +00007705 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007706 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007707 unsigned Opc;
7708 if (VT == MVT::v8i16)
7709 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007710 else if (VT == MVT::v16i8)
7711 Opc = X86ISD::PINSRB;
7712 else
7713 Opc = X86ISD::PINSRB;
7714
Nate Begeman14d12ca2008-02-11 04:19:36 +00007715 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7716 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007717 if (N1.getValueType() != MVT::i32)
7718 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7719 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007720 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007721 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007722 }
7723
7724 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007725 // Bits [7:6] of the constant are the source select. This will always be
7726 // zero here. The DAG Combiner may combine an extract_elt index into these
7727 // bits. For example (insert (extract, 3), 2) could be matched by putting
7728 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007729 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007730 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007731 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007732 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007733 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007734 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007735 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007736 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007737 }
7738
7739 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007740 // PINSR* works with constant index.
7741 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007742 }
Dan Gohman475871a2008-07-27 21:46:04 +00007743 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007744}
7745
Dan Gohman475871a2008-07-27 21:46:04 +00007746SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007747X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007748 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007749 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007750
Andrew Trickac6d9be2013-05-25 02:42:55 +00007751 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007752 SDValue N0 = Op.getOperand(0);
7753 SDValue N1 = Op.getOperand(1);
7754 SDValue N2 = Op.getOperand(2);
7755
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007756 // If this is a 256-bit vector result, first extract the 128-bit vector,
7757 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007758 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007759 if (!isa<ConstantSDNode>(N2))
7760 return SDValue();
7761
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007762 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007763 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007764 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007765
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007766 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007767 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7768 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7769
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007770 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007771 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007772
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007773 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007774 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007775 }
7776
Craig Topperd0a31172012-01-10 06:37:29 +00007777 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007778 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7779
Dan Gohman8a55ce42009-09-23 21:02:20 +00007780 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007781 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007782
Dan Gohman8a55ce42009-09-23 21:02:20 +00007783 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007784 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7785 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007786 if (N1.getValueType() != MVT::i32)
7787 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7788 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007789 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007790 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007791 }
Dan Gohman475871a2008-07-27 21:46:04 +00007792 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007793}
7794
Craig Topper55b24052012-09-11 06:15:32 +00007795static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007796 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007797 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007798
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007799 // If this is a 256-bit vector result, first insert into a 128-bit
7800 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007801 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007802 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007803 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007804 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007805 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007806
7807 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7808
7809 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007810 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007811 }
7812
Craig Topperd77d2fe2012-04-29 20:22:05 +00007813 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007814 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007815 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007816
Owen Anderson825b72b2009-08-11 20:47:22 +00007817 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007818 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007819 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007820 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007821}
7822
David Greene91585092011-01-26 15:38:49 +00007823// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7824// a simple subregister reference or explicit instructions to grab
7825// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007826static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7827 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007828 SDLoc dl(Op);
7829 SDValue In = Op.getOperand(0);
7830 SDValue Idx = Op.getOperand(1);
7831 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007832 MVT ResVT = Op.getSimpleValueType();
7833 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007834
Elena Demikhovsky83952512013-07-31 11:35:14 +00007835 if (Subtarget->hasFp256()) {
7836 if (ResVT.is128BitVector() &&
7837 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007838 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007839 return Extract128BitVector(In, IdxVal, DAG, dl);
7840 }
7841 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7842 isa<ConstantSDNode>(Idx)) {
7843 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007844 }
David Greene91585092011-01-26 15:38:49 +00007845 }
7846 return SDValue();
7847}
7848
David Greenecfe33c42011-01-26 19:13:22 +00007849// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7850// simple superregister reference or explicit instructions to insert
7851// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007852static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7853 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007854 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007855 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007856 SDValue Vec = Op.getNode()->getOperand(0);
7857 SDValue SubVec = Op.getNode()->getOperand(1);
7858 SDValue Idx = Op.getNode()->getOperand(2);
7859
Craig Topper8d725b92013-08-15 05:33:45 +00007860 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7861 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7862 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007863 isa<ConstantSDNode>(Idx)) {
7864 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7865 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007866 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007867
Craig Topper8d725b92013-08-15 05:33:45 +00007868 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7869 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007870 isa<ConstantSDNode>(Idx)) {
7871 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7872 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7873 }
David Greenecfe33c42011-01-26 19:13:22 +00007874 }
7875 return SDValue();
7876}
7877
Bill Wendling056292f2008-09-16 21:48:12 +00007878// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7879// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7880// one of the above mentioned nodes. It has to be wrapped because otherwise
7881// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7882// be used to form addressing mode. These wrapped nodes will be selected
7883// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007884SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007885X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007886 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007887
Chris Lattner41621a22009-06-26 19:22:52 +00007888 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7889 // global base reg.
7890 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007891 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007892 CodeModel::Model M = getTargetMachine().getCodeModel();
7893
Chris Lattner4f066492009-07-11 20:29:19 +00007894 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007895 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007896 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007897 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007898 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007899 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007900 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007901
Evan Cheng1606e8e2009-03-13 07:51:59 +00007902 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007903 CP->getAlignment(),
7904 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007905 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007906 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007907 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007908 if (OpFlag) {
7909 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007910 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007911 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007912 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007913 }
7914
7915 return Result;
7916}
7917
Dan Gohmand858e902010-04-17 15:26:15 +00007918SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007919 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007920
Chris Lattner18c59872009-06-27 04:16:01 +00007921 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7922 // global base reg.
7923 unsigned char OpFlag = 0;
7924 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007925 CodeModel::Model M = getTargetMachine().getCodeModel();
7926
Chris Lattner4f066492009-07-11 20:29:19 +00007927 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007928 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007929 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007930 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007931 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007932 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007933 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007934
Chris Lattner18c59872009-06-27 04:16:01 +00007935 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7936 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007937 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007938 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007939
Chris Lattner18c59872009-06-27 04:16:01 +00007940 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007941 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007942 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7943 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007944 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007945 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007946
Chris Lattner18c59872009-06-27 04:16:01 +00007947 return Result;
7948}
7949
7950SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007951X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007952 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007953
Chris Lattner18c59872009-06-27 04:16:01 +00007954 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7955 // global base reg.
7956 unsigned char OpFlag = 0;
7957 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007958 CodeModel::Model M = getTargetMachine().getCodeModel();
7959
Chris Lattner4f066492009-07-11 20:29:19 +00007960 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007961 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7962 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7963 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007964 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007965 } else if (Subtarget->isPICStyleGOT()) {
7966 OpFlag = X86II::MO_GOT;
7967 } else if (Subtarget->isPICStyleStubPIC()) {
7968 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7969 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7970 OpFlag = X86II::MO_DARWIN_NONLAZY;
7971 }
Eric Christopherfd179292009-08-27 18:07:15 +00007972
Chris Lattner18c59872009-06-27 04:16:01 +00007973 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007974
Andrew Trickac6d9be2013-05-25 02:42:55 +00007975 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00007976 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007977
Chris Lattner18c59872009-06-27 04:16:01 +00007978 // With PIC, the address is actually $g + Offset.
7979 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007980 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007981 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7982 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007983 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007984 Result);
7985 }
Eric Christopherfd179292009-08-27 18:07:15 +00007986
Eli Friedman586272d2011-08-11 01:48:05 +00007987 // For symbols that require a load from a stub to get the address, emit the
7988 // load.
7989 if (isGlobalStubReference(OpFlag))
7990 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007991 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00007992
Chris Lattner18c59872009-06-27 04:16:01 +00007993 return Result;
7994}
7995
Dan Gohman475871a2008-07-27 21:46:04 +00007996SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007997X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007998 // Create the TargetBlockAddressAddress node.
7999 unsigned char OpFlags =
8000 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008001 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008002 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008003 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008004 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008005 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8006 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008007
Dan Gohmanf705adb2009-10-30 01:28:02 +00008008 if (Subtarget->isPICStyleRIPRel() &&
8009 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008010 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8011 else
8012 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008013
Dan Gohman29cbade2009-11-20 23:18:13 +00008014 // With PIC, the address is actually $g + Offset.
8015 if (isGlobalRelativeToPICBase(OpFlags)) {
8016 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8017 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8018 Result);
8019 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008020
8021 return Result;
8022}
8023
8024SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008025X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008026 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008027 // Create the TargetGlobalAddress node, folding in the constant
8028 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008029 unsigned char OpFlags =
8030 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008031 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008032 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008033 if (OpFlags == X86II::MO_NO_FLAG &&
8034 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008035 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008036 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008037 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008038 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008039 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008040 }
Eric Christopherfd179292009-08-27 18:07:15 +00008041
Chris Lattner4f066492009-07-11 20:29:19 +00008042 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008043 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008044 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8045 else
8046 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008047
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008048 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008049 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008050 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8051 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008052 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008053 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008054
Chris Lattner36c25012009-07-10 07:34:39 +00008055 // For globals that require a load from a stub to get the address, emit the
8056 // load.
8057 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008058 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008059 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008060
Dan Gohman6520e202008-10-18 02:06:02 +00008061 // If there was a non-zero offset that we didn't fold, create an explicit
8062 // addition for it.
8063 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008064 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008065 DAG.getConstant(Offset, getPointerTy()));
8066
Evan Cheng0db9fe62006-04-25 20:13:52 +00008067 return Result;
8068}
8069
Evan Chengda43bcf2008-09-24 00:05:32 +00008070SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008071X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008072 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008073 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008074 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008075}
8076
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008077static SDValue
8078GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008079 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008080 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008081 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008082 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008083 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008084 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008085 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008086 GA->getOffset(),
8087 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008088
8089 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8090 : X86ISD::TLSADDR;
8091
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008092 if (InFlag) {
8093 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008094 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008095 } else {
8096 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008097 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008098 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008099
8100 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008101 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008102
Rafael Espindola15f1b662009-04-24 12:59:40 +00008103 SDValue Flag = Chain.getValue(1);
8104 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008105}
8106
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008107// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008108static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008109LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008110 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008111 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008112 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008113 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008114 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008115 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008116 InFlag = Chain.getValue(1);
8117
Chris Lattnerb903bed2009-06-26 21:20:29 +00008118 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008119}
8120
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008121// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008122static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008123LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008124 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008125 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8126 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008127}
8128
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008129static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8130 SelectionDAG &DAG,
8131 const EVT PtrVT,
8132 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008133 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008134
8135 // Get the start address of the TLS block for this module.
8136 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8137 .getInfo<X86MachineFunctionInfo>();
8138 MFI->incNumLocalDynamicTLSAccesses();
8139
8140 SDValue Base;
8141 if (is64Bit) {
8142 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8143 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8144 } else {
8145 SDValue InFlag;
8146 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008147 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008148 InFlag = Chain.getValue(1);
8149 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8150 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8151 }
8152
8153 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8154 // of Base.
8155
8156 // Build x@dtpoff.
8157 unsigned char OperandFlags = X86II::MO_DTPOFF;
8158 unsigned WrapperKind = X86ISD::Wrapper;
8159 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8160 GA->getValueType(0),
8161 GA->getOffset(), OperandFlags);
8162 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8163
8164 // Add x@dtpoff with the base.
8165 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8166}
8167
Hans Wennborg228756c2012-05-11 10:11:01 +00008168// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008169static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008170 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008171 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008172 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008173
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008174 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8175 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8176 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008177
Michael J. Spencerec38de22010-10-10 22:04:20 +00008178 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008179 DAG.getIntPtrConstant(0),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008180 MachinePointerInfo(Ptr),
8181 false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008182
Chris Lattnerb903bed2009-06-26 21:20:29 +00008183 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008184 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8185 // initialexec.
8186 unsigned WrapperKind = X86ISD::Wrapper;
8187 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008188 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008189 } else if (model == TLSModel::InitialExec) {
8190 if (is64Bit) {
8191 OperandFlags = X86II::MO_GOTTPOFF;
8192 WrapperKind = X86ISD::WrapperRIP;
8193 } else {
8194 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8195 }
Chris Lattner18c59872009-06-27 04:16:01 +00008196 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008197 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008198 }
Eric Christopherfd179292009-08-27 18:07:15 +00008199
Hans Wennborg228756c2012-05-11 10:11:01 +00008200 // emit "addl x@ntpoff,%eax" (local exec)
8201 // or "addl x@indntpoff,%eax" (initial exec)
8202 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Michael J. Spencerec38de22010-10-10 22:04:20 +00008203 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00008204 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008205 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008206 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008207
Hans Wennborg228756c2012-05-11 10:11:01 +00008208 if (model == TLSModel::InitialExec) {
8209 if (isPIC && !is64Bit) {
8210 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008211 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008212 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008213 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008214
8215 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8216 MachinePointerInfo::getGOT(), false, false, false,
8217 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008218 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008219
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008220 // The address of the thread local variable is the add of the thread
8221 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008222 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008223}
8224
Dan Gohman475871a2008-07-27 21:46:04 +00008225SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008226X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008227
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008228 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008229 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008230
Eric Christopher30ef0e52010-06-03 04:07:48 +00008231 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008232 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008233
Eric Christopher30ef0e52010-06-03 04:07:48 +00008234 switch (model) {
8235 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008236 if (Subtarget->is64Bit())
8237 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8238 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008239 case TLSModel::LocalDynamic:
8240 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8241 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008242 case TLSModel::InitialExec:
8243 case TLSModel::LocalExec:
8244 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008245 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008246 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008247 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008248 llvm_unreachable("Unknown TLS model.");
8249 }
8250
8251 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008252 // Darwin only has one model of TLS. Lower to that.
8253 unsigned char OpFlag = 0;
8254 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8255 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008256
Eric Christopher30ef0e52010-06-03 04:07:48 +00008257 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8258 // global base reg.
8259 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8260 !Subtarget->is64Bit();
8261 if (PIC32)
8262 OpFlag = X86II::MO_TLVP_PIC_BASE;
8263 else
8264 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008265 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008266 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008267 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008268 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008269 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008270
Eric Christopher30ef0e52010-06-03 04:07:48 +00008271 // With PIC32, the address is actually $g + Offset.
8272 if (PIC32)
8273 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8274 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008275 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008276 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008277
Eric Christopher30ef0e52010-06-03 04:07:48 +00008278 // Lowering the machine isd will make sure everything is in the right
8279 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008280 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008281 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008282 SDValue Args[] = { Chain, Offset };
8283 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008284
Eric Christopher30ef0e52010-06-03 04:07:48 +00008285 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8286 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8287 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008288
Eric Christopher30ef0e52010-06-03 04:07:48 +00008289 // And our return value (tls address) is in the standard call return value
8290 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008291 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008292 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8293 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008294 }
8295
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008296 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008297 // Just use the implicit TLS architecture
8298 // Need to generate someting similar to:
8299 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8300 // ; from TEB
8301 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8302 // mov rcx, qword [rdx+rcx*8]
8303 // mov eax, .tls$:tlsvar
8304 // [rax+rcx] contains the address
8305 // Windows 64bit: gs:0x58
8306 // Windows 32bit: fs:__tls_array
8307
8308 // If GV is an alias then use the aliasee for determining
8309 // thread-localness.
8310 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8311 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008312 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008313 SDValue Chain = DAG.getEntryNode();
8314
8315 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008316 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8317 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008318 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8319 ? Type::getInt8PtrTy(*DAG.getContext(),
8320 256)
8321 : Type::getInt32PtrTy(*DAG.getContext(),
8322 257));
8323
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008324 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8325 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8326 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8327
8328 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008329 MachinePointerInfo(Ptr),
8330 false, false, false, 0);
8331
8332 // Load the _tls_index variable
8333 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8334 if (Subtarget->is64Bit())
8335 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8336 IDX, MachinePointerInfo(), MVT::i32,
8337 false, false, 0);
8338 else
8339 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8340 false, false, false, 0);
8341
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008342 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008343 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008344 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8345
8346 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8347 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8348 false, false, false, 0);
8349
8350 // Get the offset of start of .tls section
8351 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8352 GA->getValueType(0),
8353 GA->getOffset(), X86II::MO_SECREL);
8354 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8355
8356 // The address of the thread local variable is the add of the thread
8357 // pointer with the offset of the variable.
8358 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008359 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008360
David Blaikie4d6ccb52012-01-20 21:51:11 +00008361 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008362}
8363
Chad Rosierb90d2a92012-01-03 23:19:12 +00008364/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8365/// and take a 2 x i32 value to shift plus a shift amount.
8366SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008367 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008368 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008369 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008370 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008371 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008372 SDValue ShOpLo = Op.getOperand(0);
8373 SDValue ShOpHi = Op.getOperand(1);
8374 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008375 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008376 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008377 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008378
Dan Gohman475871a2008-07-27 21:46:04 +00008379 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008380 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008381 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8382 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008383 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008384 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8385 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008386 }
Evan Chenge3413162006-01-09 18:33:28 +00008387
Owen Anderson825b72b2009-08-11 20:47:22 +00008388 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8389 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008390 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008391 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008392
Dan Gohman475871a2008-07-27 21:46:04 +00008393 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008394 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008395 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8396 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008397
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008398 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008399 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8400 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008401 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008402 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8403 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008404 }
8405
Dan Gohman475871a2008-07-27 21:46:04 +00008406 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008407 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008408}
Evan Chenga3195e82006-01-12 22:54:21 +00008409
Dan Gohmand858e902010-04-17 15:26:15 +00008410SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8411 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008412 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008413
Dale Johannesen0488fb62010-09-30 23:57:10 +00008414 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008415 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008416
Owen Anderson825b72b2009-08-11 20:47:22 +00008417 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008418 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008419
Eli Friedman36df4992009-05-27 00:47:34 +00008420 // These are really Legal; return the operand so the caller accepts it as
8421 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008422 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008423 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008424 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008425 Subtarget->is64Bit()) {
8426 return Op;
8427 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008428
Andrew Trickac6d9be2013-05-25 02:42:55 +00008429 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008430 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008431 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008432 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008433 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008434 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008435 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008436 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008437 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008438 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8439}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008440
Owen Andersone50ed302009-08-10 22:56:29 +00008441SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008442 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008443 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008444 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008445 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008446 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008447 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008448 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008449 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008450 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008451 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008452
Chris Lattner492a43e2010-09-22 01:28:21 +00008453 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008454
Stuart Hastings84be9582011-06-02 15:57:11 +00008455 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8456 MachineMemOperand *MMO;
8457 if (FI) {
8458 int SSFI = FI->getIndex();
8459 MMO =
8460 DAG.getMachineFunction()
8461 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8462 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8463 } else {
8464 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8465 StackSlot = StackSlot.getOperand(1);
8466 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008467 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008468 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8469 X86ISD::FILD, DL,
8470 Tys, Ops, array_lengthof(Ops),
8471 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008472
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008473 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008474 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008475 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008476
8477 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8478 // shouldn't be necessary except that RFP cannot be live across
8479 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008480 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008481 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8482 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008483 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008484 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008485 SDValue Ops[] = {
8486 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8487 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008488 MachineMemOperand *MMO =
8489 DAG.getMachineFunction()
8490 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008491 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008492
Chris Lattner492a43e2010-09-22 01:28:21 +00008493 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8494 Ops, array_lengthof(Ops),
8495 Op.getValueType(), MMO);
8496 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008497 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008498 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008499 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008500
Evan Cheng0db9fe62006-04-25 20:13:52 +00008501 return Result;
8502}
8503
Bill Wendling8b8a6362009-01-17 03:56:04 +00008504// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008505SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8506 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008507 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008508 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008509 movq %rax, %xmm0
8510 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8511 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8512 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008513 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008514 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008515 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008516 addpd %xmm1, %xmm0
8517 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008518 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008519
Andrew Trickac6d9be2013-05-25 02:42:55 +00008520 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008521 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008522
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008523 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008524 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008525 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008526 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008527
Chris Lattner97484792012-01-25 09:56:22 +00008528 SmallVector<Constant*,2> CV1;
8529 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008530 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8531 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008532 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008533 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8534 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008535 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008536 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008537
Bill Wendling397ae212012-01-05 02:13:20 +00008538 // Load the 64-bit value into an XMM register.
8539 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8540 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008541 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008542 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008543 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008544 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8545 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8546 CLod0);
8547
Owen Anderson825b72b2009-08-11 20:47:22 +00008548 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008549 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008550 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008551 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008552 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008553 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008554
Craig Topperd0a31172012-01-10 06:37:29 +00008555 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008556 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8557 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8558 } else {
8559 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8560 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8561 S2F, 0x4E, DAG);
8562 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8563 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8564 Sub);
8565 }
8566
8567 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008568 DAG.getIntPtrConstant(0));
8569}
8570
Bill Wendling8b8a6362009-01-17 03:56:04 +00008571// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008572SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8573 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008574 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008575 // FP constant to bias correct the final result.
8576 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008577 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008578
8579 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008580 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008581 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008582
Eli Friedmanf3704762011-08-29 21:15:46 +00008583 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008584 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008585
Owen Anderson825b72b2009-08-11 20:47:22 +00008586 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008587 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008588 DAG.getIntPtrConstant(0));
8589
8590 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008591 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008592 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008593 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008594 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008595 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008596 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008597 MVT::v2f64, Bias)));
8598 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008599 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008600 DAG.getIntPtrConstant(0));
8601
8602 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008603 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008604
8605 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008606 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008607
Craig Topper69947b92012-04-23 06:57:04 +00008608 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008609 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008610 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008611 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008612 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008613
8614 // Handle final rounding.
8615 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008616}
8617
Michael Liaoa7554632012-10-23 17:36:08 +00008618SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8619 SelectionDAG &DAG) const {
8620 SDValue N0 = Op.getOperand(0);
8621 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008622 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008623
8624 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8625 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8626 "Custom UINT_TO_FP is not supported!");
8627
Craig Topperb99bafe2013-01-21 06:21:54 +00008628 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8629 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008630 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8631 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8632}
8633
Dan Gohmand858e902010-04-17 15:26:15 +00008634SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8635 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008636 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008637 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008638
Michael Liaoa7554632012-10-23 17:36:08 +00008639 if (Op.getValueType().isVector())
8640 return lowerUINT_TO_FP_vec(Op, DAG);
8641
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008642 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008643 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8644 // the optimization here.
8645 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008646 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008647
Owen Andersone50ed302009-08-10 22:56:29 +00008648 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008649 EVT DstVT = Op.getValueType();
8650 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008651 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008652 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008653 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008654 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008655 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008656
8657 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008658 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008659 if (SrcVT == MVT::i32) {
8660 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8661 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8662 getPointerTy(), StackSlot, WordOff);
8663 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008664 StackSlot, MachinePointerInfo(),
8665 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008666 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008667 OffsetSlot, MachinePointerInfo(),
8668 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008669 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8670 return Fild;
8671 }
8672
8673 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8674 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008675 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008676 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008677 // For i64 source, we need to add the appropriate power of 2 if the input
8678 // was negative. This is the same as the optimization in
8679 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8680 // we must be careful to do the computation in x87 extended precision, not
8681 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008682 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8683 MachineMemOperand *MMO =
8684 DAG.getMachineFunction()
8685 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8686 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008687
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008688 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8689 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008690 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8691 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008692
8693 APInt FF(32, 0x5F800000ULL);
8694
8695 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008696 SDValue SignSet = DAG.getSetCC(dl,
8697 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008698 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8699 ISD::SETLT);
8700
8701 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8702 SDValue FudgePtr = DAG.getConstantPool(
8703 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8704 getPointerTy());
8705
8706 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8707 SDValue Zero = DAG.getIntPtrConstant(0);
8708 SDValue Four = DAG.getIntPtrConstant(4);
8709 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8710 Zero, Four);
8711 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8712
8713 // Load the value out, extending it from f32 to f80.
8714 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008715 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008716 FudgePtr, MachinePointerInfo::getConstantPool(),
8717 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008718 // Extend everything to 80 bits to force it to be done on x87.
8719 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8720 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008721}
8722
Craig Topperb99bafe2013-01-21 06:21:54 +00008723std::pair<SDValue,SDValue>
8724X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8725 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008726 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008727
Owen Andersone50ed302009-08-10 22:56:29 +00008728 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008729
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008730 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008731 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8732 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008733 }
8734
Owen Anderson825b72b2009-08-11 20:47:22 +00008735 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8736 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008737 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008738
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008739 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008740 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008741 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008742 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008743 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008744 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008745 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008746 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008747
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008748 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8749 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008750 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008751 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008752 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008753 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008754
Evan Cheng0db9fe62006-04-25 20:13:52 +00008755 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008756 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8757 Opc = X86ISD::WIN_FTOL;
8758 else
8759 switch (DstTy.getSimpleVT().SimpleTy) {
8760 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8761 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8762 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8763 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8764 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008765
Dan Gohman475871a2008-07-27 21:46:04 +00008766 SDValue Chain = DAG.getEntryNode();
8767 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008768 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008769 // FIXME This causes a redundant load/store if the SSE-class value is already
8770 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008771 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008772 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008773 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008774 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008775 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008776 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008777 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008778 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008779 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008780
Chris Lattner492a43e2010-09-22 01:28:21 +00008781 MachineMemOperand *MMO =
8782 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8783 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008784 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8785 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008786 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008787 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008788 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8789 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008790
Chris Lattner07290932010-09-22 01:05:16 +00008791 MachineMemOperand *MMO =
8792 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8793 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008794
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008795 if (Opc != X86ISD::WIN_FTOL) {
8796 // Build the FP_TO_INT*_IN_MEM
8797 SDValue Ops[] = { Chain, Value, StackSlot };
8798 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008799 Ops, array_lengthof(Ops), DstTy,
8800 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008801 return std::make_pair(FIST, StackSlot);
8802 } else {
8803 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8804 DAG.getVTList(MVT::Other, MVT::Glue),
8805 Chain, Value);
8806 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8807 MVT::i32, ftol.getValue(1));
8808 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8809 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008810 SDValue Ops[] = { eax, edx };
8811 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008812 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8813 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008814 return std::make_pair(pair, SDValue());
8815 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008816}
8817
Nadav Rotem0509db22012-12-28 05:45:24 +00008818static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8819 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008820 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008821 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008822 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008823 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008824
8825 // Optimize vectors in AVX mode:
8826 //
8827 // v8i16 -> v8i32
8828 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8829 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8830 // Concat upper and lower parts.
8831 //
8832 // v4i32 -> v4i64
8833 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8834 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8835 // Concat upper and lower parts.
8836 //
8837
8838 if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8839 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8840 return SDValue();
8841
8842 if (Subtarget->hasInt256())
8843 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8844
8845 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8846 SDValue Undef = DAG.getUNDEF(InVT);
8847 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8848 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8849 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8850
Craig Toppera080daf2013-01-20 21:50:27 +00008851 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008852 VT.getVectorNumElements()/2);
8853
8854 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8855 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8856
8857 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8858}
8859
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008860static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8861 SelectionDAG &DAG) {
8862 MVT VT = Op->getValueType(0).getSimpleVT();
8863 SDValue In = Op->getOperand(0);
8864 MVT InVT = In.getValueType().getSimpleVT();
8865 SDLoc DL(Op);
8866 unsigned int NumElts = VT.getVectorNumElements();
8867 if (NumElts != 8 && NumElts != 16)
8868 return SDValue();
8869
8870 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8871 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8872
8873 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8874 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8875 // Now we have only mask extension
8876 assert(InVT.getVectorElementType() == MVT::i1);
8877 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8878 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8879 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8880 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8881 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8882 MachinePointerInfo::getConstantPool(),
8883 false, false, false, Alignment);
8884
8885 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8886 if (VT.is512BitVector())
8887 return Brcst;
8888 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8889}
8890
Craig Topperff79bc62013-08-18 08:53:01 +00008891static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8892 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008893 if (Subtarget->hasFp256()) {
8894 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8895 if (Res.getNode())
8896 return Res;
8897 }
8898
8899 return SDValue();
8900}
Craig Topperff79bc62013-08-18 08:53:01 +00008901
8902static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8903 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008904 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008905 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008906 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008907 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008908
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008909 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8910 return LowerZERO_EXTEND_AVX512(Op, DAG);
8911
Nadav Rotem0509db22012-12-28 05:45:24 +00008912 if (Subtarget->hasFp256()) {
8913 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8914 if (Res.getNode())
8915 return Res;
8916 }
8917
Michael Liaoa7554632012-10-23 17:36:08 +00008918 if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8919 VT.getVectorNumElements() != SVT.getVectorNumElements())
8920 return SDValue();
8921
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008922 assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
Michael Liaoa7554632012-10-23 17:36:08 +00008923
8924 // AVX2 has better support of integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008925 if (Subtarget->hasInt256())
Michael Liaoa7554632012-10-23 17:36:08 +00008926 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8927
8928 SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8929 static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8930 SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008931 DAG.getVectorShuffle(MVT::v8i16, DL, In,
8932 DAG.getUNDEF(MVT::v8i16),
8933 &Mask[0]));
Michael Liaoa7554632012-10-23 17:36:08 +00008934
8935 return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8936}
8937
Craig Topperd713c0f2013-01-20 21:34:37 +00008938SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008939 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008940 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008941 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008942 MVT InVT = In.getSimpleValueType();
8943 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8944 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008945
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008946 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8947 if (VT.getVectorElementType().getSizeInBits() >=8)
8948 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8949
8950 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8951 unsigned NumElts = InVT.getVectorNumElements();
8952 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8953 if (InVT.getSizeInBits() < 512) {
8954 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8955 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8956 InVT = ExtVT;
8957 }
8958 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8959 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8960 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8961 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8962 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8963 MachinePointerInfo::getConstantPool(),
8964 false, false, false, Alignment);
8965 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8966 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8967 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8968 }
8969
8970 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00008971 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8972 if (Subtarget->hasInt256()) {
8973 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8974 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8975 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8976 ShufMask);
8977 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8978 DAG.getIntPtrConstant(0));
8979 }
8980
8981 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8982 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8983 DAG.getIntPtrConstant(0));
8984 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8985 DAG.getIntPtrConstant(2));
8986
8987 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8988 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8989
8990 // The PSHUFD mask:
8991 static const int ShufMask1[] = {0, 2, 0, 0};
8992 SDValue Undef = DAG.getUNDEF(VT);
8993 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
8994 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
8995
8996 // The MOVLHPS mask:
8997 static const int ShufMask2[] = {0, 1, 4, 5};
8998 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
8999 }
9000
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009001 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009002 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9003 if (Subtarget->hasInt256()) {
9004 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9005
9006 SmallVector<SDValue,32> pshufbMask;
9007 for (unsigned i = 0; i < 2; ++i) {
9008 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9009 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9010 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9011 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9012 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9013 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9014 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9015 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9016 for (unsigned j = 0; j < 8; ++j)
9017 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9018 }
9019 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9020 &pshufbMask[0], 32);
9021 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9022 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9023
9024 static const int ShufMask[] = {0, 2, -1, -1};
9025 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9026 &ShufMask[0]);
9027 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9028 DAG.getIntPtrConstant(0));
9029 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9030 }
9031
9032 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9033 DAG.getIntPtrConstant(0));
9034
9035 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9036 DAG.getIntPtrConstant(4));
9037
9038 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9039 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9040
9041 // The PSHUFB mask:
9042 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9043 -1, -1, -1, -1, -1, -1, -1, -1};
9044
9045 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9046 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9047 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9048
9049 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9050 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9051
9052 // The MOVLHPS Mask:
9053 static const int ShufMask2[] = {0, 1, 4, 5};
9054 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9055 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9056 }
9057
9058 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009059 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009060 return SDValue();
9061
Nadav Rotem3c22a442012-12-27 07:45:10 +00009062 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009063
9064 unsigned NumElems = VT.getVectorNumElements();
9065 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9066 NumElems * 2);
9067
Michael Liaobedcbd42012-10-16 18:14:11 +00009068 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9069 // Prepare truncation shuffle mask
9070 for (unsigned i = 0; i != NumElems; ++i)
9071 MaskVec[i] = i * 2;
9072 SDValue V = DAG.getVectorShuffle(NVT, DL,
9073 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9074 DAG.getUNDEF(NVT), &MaskVec[0]);
9075 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9076 DAG.getIntPtrConstant(0));
9077}
9078
Dan Gohmand858e902010-04-17 15:26:15 +00009079SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9080 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009081 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009082 if (VT.isVector()) {
9083 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009084 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9085 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009086 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009087 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009088 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009089
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009090 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9091 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009092 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009093 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9094 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009095
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009096 if (StackSlot.getNode())
9097 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009098 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009099 FIST, StackSlot, MachinePointerInfo(),
9100 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009101
9102 // The node is the result.
9103 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009104}
9105
Dan Gohmand858e902010-04-17 15:26:15 +00009106SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9107 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009108 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9109 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009110 SDValue FIST = Vals.first, StackSlot = Vals.second;
9111 assert(FIST.getNode() && "Unexpected failure");
9112
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009113 if (StackSlot.getNode())
9114 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009115 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009116 FIST, StackSlot, MachinePointerInfo(),
9117 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009118
9119 // The node is the result.
9120 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009121}
9122
Craig Topperb84b4232013-01-21 06:13:28 +00009123static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009124 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009125 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009126 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009127 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009128
9129 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9130
9131 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9132 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9133 In, DAG.getUNDEF(SVT)));
9134}
9135
Craig Topper43620672012-09-08 07:31:51 +00009136SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009137 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009138 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009139 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009140 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009141 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9142 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009143 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009144 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009145 }
Craig Topper43620672012-09-08 07:31:51 +00009146 Constant *C;
9147 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009148 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9149 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009150 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009151 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9152 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009153 C = ConstantVector::getSplat(NumElts, C);
9154 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9155 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009156 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009157 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009158 false, false, false, Alignment);
9159 if (VT.isVector()) {
9160 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9161 return DAG.getNode(ISD::BITCAST, dl, VT,
9162 DAG.getNode(ISD::AND, dl, ANDVT,
9163 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9164 Op.getOperand(0)),
9165 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9166 }
Dale Johannesenace16102009-02-03 19:33:06 +00009167 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009168}
9169
Dan Gohmand858e902010-04-17 15:26:15 +00009170SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009171 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009172 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009173 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009174 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009175 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9176 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009177 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009178 NumElts = VT.getVectorNumElements();
9179 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009180 Constant *C;
9181 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009182 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9183 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009184 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009185 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9186 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009187 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009188 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9189 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009190 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009191 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009192 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009193 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009194 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009195 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009196 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009197 DAG.getNode(ISD::BITCAST, dl, XORVT,
9198 Op.getOperand(0)),
9199 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009200 }
Craig Topper69947b92012-04-23 06:57:04 +00009201
9202 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009203}
9204
Dan Gohmand858e902010-04-17 15:26:15 +00009205SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009206 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009207 SDValue Op0 = Op.getOperand(0);
9208 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009209 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009210 MVT VT = Op.getSimpleValueType();
9211 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009212
9213 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009214 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009215 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009216 SrcVT = VT;
9217 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009218 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009219 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009220 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009221 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009222 }
9223
9224 // At this point the operands and the result should have the same
9225 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009226
Evan Cheng68c47cb2007-01-05 07:55:56 +00009227 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009228 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009229 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009230 const fltSemantics &Sem = APFloat::IEEEdouble;
9231 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9232 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009233 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009234 const fltSemantics &Sem = APFloat::IEEEsingle;
9235 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9236 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9237 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9238 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009239 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009240 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009241 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009242 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009243 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009244 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009245 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009246
9247 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009248 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009249 // Op0 is MVT::f32, Op1 is MVT::f64.
9250 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9251 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9252 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009253 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009254 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009255 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009256 }
9257
Evan Cheng73d6cf12007-01-05 21:37:56 +00009258 // Clear first operand sign bit.
9259 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009260 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009261 const fltSemantics &Sem = APFloat::IEEEdouble;
9262 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9263 APInt(64, ~(1ULL << 63)))));
9264 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009265 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009266 const fltSemantics &Sem = APFloat::IEEEsingle;
9267 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9268 APInt(32, ~(1U << 31)))));
9269 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9270 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9271 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009272 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009273 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009274 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009275 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009276 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009277 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009278 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009279
9280 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009281 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009282}
9283
Craig Topper55b24052012-09-11 06:15:32 +00009284static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009285 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009286 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009287 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009288
9289 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9290 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9291 DAG.getConstant(1, VT));
9292 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9293}
9294
Michael Liaof966e4e2012-09-13 20:24:54 +00009295// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9296//
Craig Topper158ec072013-08-14 07:34:43 +00009297static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9298 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009299 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9300
9301 if (!Subtarget->hasSSE41())
9302 return SDValue();
9303
9304 if (!Op->hasOneUse())
9305 return SDValue();
9306
9307 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009308 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009309
9310 SmallVector<SDValue, 8> Opnds;
9311 DenseMap<SDValue, unsigned> VecInMap;
9312 EVT VT = MVT::Other;
9313
9314 // Recognize a special case where a vector is casted into wide integer to
9315 // test all 0s.
9316 Opnds.push_back(N->getOperand(0));
9317 Opnds.push_back(N->getOperand(1));
9318
9319 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009320 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009321 // BFS traverse all OR'd operands.
9322 if (I->getOpcode() == ISD::OR) {
9323 Opnds.push_back(I->getOperand(0));
9324 Opnds.push_back(I->getOperand(1));
9325 // Re-evaluate the number of nodes to be traversed.
9326 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9327 continue;
9328 }
9329
9330 // Quit if a non-EXTRACT_VECTOR_ELT
9331 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9332 return SDValue();
9333
9334 // Quit if without a constant index.
9335 SDValue Idx = I->getOperand(1);
9336 if (!isa<ConstantSDNode>(Idx))
9337 return SDValue();
9338
9339 SDValue ExtractedFromVec = I->getOperand(0);
9340 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9341 if (M == VecInMap.end()) {
9342 VT = ExtractedFromVec.getValueType();
9343 // Quit if not 128/256-bit vector.
9344 if (!VT.is128BitVector() && !VT.is256BitVector())
9345 return SDValue();
9346 // Quit if not the same type.
9347 if (VecInMap.begin() != VecInMap.end() &&
9348 VT != VecInMap.begin()->first.getValueType())
9349 return SDValue();
9350 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9351 }
9352 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9353 }
9354
9355 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009356 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009357
9358 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9359 SmallVector<SDValue, 8> VecIns;
9360
9361 for (DenseMap<SDValue, unsigned>::const_iterator
9362 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9363 // Quit if not all elements are used.
9364 if (I->second != FullMask)
9365 return SDValue();
9366 VecIns.push_back(I->first);
9367 }
9368
9369 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9370
9371 // Cast all vectors into TestVT for PTEST.
9372 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9373 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9374
9375 // If more than one full vectors are evaluated, OR them first before PTEST.
9376 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9377 // Each iteration will OR 2 nodes and append the result until there is only
9378 // 1 node left, i.e. the final OR'd value of all vectors.
9379 SDValue LHS = VecIns[Slot];
9380 SDValue RHS = VecIns[Slot + 1];
9381 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9382 }
9383
9384 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9385 VecIns.back(), VecIns.back());
9386}
9387
Dan Gohman076aee32009-03-04 19:44:21 +00009388/// Emit nodes that will be selected as "test Op0,Op0", or something
9389/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009390SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009391 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009392 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009393
Dan Gohman31125812009-03-07 01:58:32 +00009394 // CF and OF aren't always set the way we want. Determine which
9395 // of these we need.
9396 bool NeedCF = false;
9397 bool NeedOF = false;
9398 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009399 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009400 case X86::COND_A: case X86::COND_AE:
9401 case X86::COND_B: case X86::COND_BE:
9402 NeedCF = true;
9403 break;
9404 case X86::COND_G: case X86::COND_GE:
9405 case X86::COND_L: case X86::COND_LE:
9406 case X86::COND_O: case X86::COND_NO:
9407 NeedOF = true;
9408 break;
Dan Gohman31125812009-03-07 01:58:32 +00009409 }
9410
Dan Gohman076aee32009-03-04 19:44:21 +00009411 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009412 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9413 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009414 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9415 // Emit a CMP with 0, which is the TEST pattern.
9416 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9417 DAG.getConstant(0, Op.getValueType()));
9418
9419 unsigned Opcode = 0;
9420 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009421
9422 // Truncate operations may prevent the merge of the SETCC instruction
9423 // and the arithmetic intruction before it. Attempt to truncate the operands
9424 // of the arithmetic instruction and use a reduced bit-width instruction.
9425 bool NeedTruncation = false;
9426 SDValue ArithOp = Op;
9427 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9428 SDValue Arith = Op->getOperand(0);
9429 // Both the trunc and the arithmetic op need to have one user each.
9430 if (Arith->hasOneUse())
9431 switch (Arith.getOpcode()) {
9432 default: break;
9433 case ISD::ADD:
9434 case ISD::SUB:
9435 case ISD::AND:
9436 case ISD::OR:
9437 case ISD::XOR: {
9438 NeedTruncation = true;
9439 ArithOp = Arith;
9440 }
9441 }
9442 }
9443
9444 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9445 // which may be the result of a CAST. We use the variable 'Op', which is the
9446 // non-casted variable when we check for possible users.
9447 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009448 case ISD::ADD:
9449 // Due to an isel shortcoming, be conservative if this add is likely to be
9450 // selected as part of a load-modify-store instruction. When the root node
9451 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9452 // uses of other nodes in the match, such as the ADD in this case. This
9453 // leads to the ADD being left around and reselected, with the result being
9454 // two adds in the output. Alas, even if none our users are stores, that
9455 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9456 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9457 // climbing the DAG back to the root, and it doesn't seem to be worth the
9458 // effort.
9459 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009460 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9461 if (UI->getOpcode() != ISD::CopyToReg &&
9462 UI->getOpcode() != ISD::SETCC &&
9463 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009464 goto default_case;
9465
9466 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009467 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009468 // An add of one will be selected as an INC.
9469 if (C->getAPIntValue() == 1) {
9470 Opcode = X86ISD::INC;
9471 NumOperands = 1;
9472 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009473 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009474
9475 // An add of negative one (subtract of one) will be selected as a DEC.
9476 if (C->getAPIntValue().isAllOnesValue()) {
9477 Opcode = X86ISD::DEC;
9478 NumOperands = 1;
9479 break;
9480 }
Dan Gohman076aee32009-03-04 19:44:21 +00009481 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009482
9483 // Otherwise use a regular EFLAGS-setting add.
9484 Opcode = X86ISD::ADD;
9485 NumOperands = 2;
9486 break;
9487 case ISD::AND: {
9488 // If the primary and result isn't used, don't bother using X86ISD::AND,
9489 // because a TEST instruction will be better.
9490 bool NonFlagUse = false;
9491 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9492 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9493 SDNode *User = *UI;
9494 unsigned UOpNo = UI.getOperandNo();
9495 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9496 // Look pass truncate.
9497 UOpNo = User->use_begin().getOperandNo();
9498 User = *User->use_begin();
9499 }
9500
9501 if (User->getOpcode() != ISD::BRCOND &&
9502 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009503 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009504 NonFlagUse = true;
9505 break;
9506 }
Dan Gohman076aee32009-03-04 19:44:21 +00009507 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009508
9509 if (!NonFlagUse)
9510 break;
9511 }
9512 // FALL THROUGH
9513 case ISD::SUB:
9514 case ISD::OR:
9515 case ISD::XOR:
9516 // Due to the ISEL shortcoming noted above, be conservative if this op is
9517 // likely to be selected as part of a load-modify-store instruction.
9518 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9519 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9520 if (UI->getOpcode() == ISD::STORE)
9521 goto default_case;
9522
9523 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009524 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009525 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009526 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009527 case ISD::XOR: Opcode = X86ISD::XOR; break;
9528 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009529 case ISD::OR: {
9530 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009531 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009532 if (EFLAGS.getNode())
9533 return EFLAGS;
9534 }
9535 Opcode = X86ISD::OR;
9536 break;
9537 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009538 }
9539
9540 NumOperands = 2;
9541 break;
9542 case X86ISD::ADD:
9543 case X86ISD::SUB:
9544 case X86ISD::INC:
9545 case X86ISD::DEC:
9546 case X86ISD::OR:
9547 case X86ISD::XOR:
9548 case X86ISD::AND:
9549 return SDValue(Op.getNode(), 1);
9550 default:
9551 default_case:
9552 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009553 }
9554
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009555 // If we found that truncation is beneficial, perform the truncation and
9556 // update 'Op'.
9557 if (NeedTruncation) {
9558 EVT VT = Op.getValueType();
9559 SDValue WideVal = Op->getOperand(0);
9560 EVT WideVT = WideVal.getValueType();
9561 unsigned ConvertedOp = 0;
9562 // Use a target machine opcode to prevent further DAGCombine
9563 // optimizations that may separate the arithmetic operations
9564 // from the setcc node.
9565 switch (WideVal.getOpcode()) {
9566 default: break;
9567 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9568 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9569 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9570 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9571 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9572 }
9573
9574 if (ConvertedOp) {
9575 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9576 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9577 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9578 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9579 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9580 }
9581 }
9582 }
9583
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009584 if (Opcode == 0)
9585 // Emit a CMP with 0, which is the TEST pattern.
9586 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9587 DAG.getConstant(0, Op.getValueType()));
9588
9589 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9590 SmallVector<SDValue, 4> Ops;
9591 for (unsigned i = 0; i != NumOperands; ++i)
9592 Ops.push_back(Op.getOperand(i));
9593
9594 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9595 DAG.ReplaceAllUsesWith(Op, New);
9596 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009597}
9598
9599/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9600/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009601SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009602 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009603 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9604 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009605 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009606
Andrew Trickac6d9be2013-05-25 02:42:55 +00009607 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009608 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9609 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9610 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9611 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9612 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9613 Op0, Op1);
9614 return SDValue(Sub.getNode(), 1);
9615 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009616 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009617}
9618
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009619/// Convert a comparison if required by the subtarget.
9620SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9621 SelectionDAG &DAG) const {
9622 // If the subtarget does not support the FUCOMI instruction, floating-point
9623 // comparisons have to be converted.
9624 if (Subtarget->hasCMov() ||
9625 Cmp.getOpcode() != X86ISD::CMP ||
9626 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9627 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9628 return Cmp;
9629
9630 // The instruction selector will select an FUCOM instruction instead of
9631 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9632 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9633 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009634 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009635 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9636 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9637 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9638 DAG.getConstant(8, MVT::i8));
9639 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9640 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9641}
9642
Evan Cheng4e544802012-12-05 00:10:38 +00009643static bool isAllOnes(SDValue V) {
9644 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9645 return C && C->isAllOnesValue();
9646}
9647
Evan Chengd40d03e2010-01-06 19:38:29 +00009648/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9649/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009650SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009651 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009652 SDValue Op0 = And.getOperand(0);
9653 SDValue Op1 = And.getOperand(1);
9654 if (Op0.getOpcode() == ISD::TRUNCATE)
9655 Op0 = Op0.getOperand(0);
9656 if (Op1.getOpcode() == ISD::TRUNCATE)
9657 Op1 = Op1.getOperand(0);
9658
Evan Chengd40d03e2010-01-06 19:38:29 +00009659 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009660 if (Op1.getOpcode() == ISD::SHL)
9661 std::swap(Op0, Op1);
9662 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009663 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9664 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009665 // If we looked past a truncate, check that it's only truncating away
9666 // known zeros.
9667 unsigned BitWidth = Op0.getValueSizeInBits();
9668 unsigned AndBitWidth = And.getValueSizeInBits();
9669 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009670 APInt Zeros, Ones;
9671 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009672 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9673 return SDValue();
9674 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009675 LHS = Op1;
9676 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009677 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009678 } else if (Op1.getOpcode() == ISD::Constant) {
9679 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009680 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009681 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009682
9683 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009684 LHS = AndLHS.getOperand(0);
9685 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009686 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009687
9688 // Use BT if the immediate can't be encoded in a TEST instruction.
9689 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9690 LHS = AndLHS;
9691 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9692 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009693 }
Evan Cheng0488db92007-09-25 01:57:46 +00009694
Evan Chengd40d03e2010-01-06 19:38:29 +00009695 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009696 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009697 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009698 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009699 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009700 // Also promote i16 to i32 for performance / code size reason.
9701 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009702 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009703 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009704
Evan Chengd40d03e2010-01-06 19:38:29 +00009705 // If the operand types disagree, extend the shift amount to match. Since
9706 // BT ignores high bits (like shifts) we can use anyextend.
9707 if (LHS.getValueType() != RHS.getValueType())
9708 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009709
Evan Chengd40d03e2010-01-06 19:38:29 +00009710 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009711 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009712 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9713 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009714 }
9715
Evan Cheng54de3ea2010-01-05 06:52:31 +00009716 return SDValue();
9717}
9718
Benjamin Kramer75311b72013-08-04 12:05:16 +00009719/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9720/// mask CMPs.
9721static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9722 SDValue &Op1) {
9723 unsigned SSECC;
9724 bool Swap = false;
9725
9726 // SSE Condition code mapping:
9727 // 0 - EQ
9728 // 1 - LT
9729 // 2 - LE
9730 // 3 - UNORD
9731 // 4 - NEQ
9732 // 5 - NLT
9733 // 6 - NLE
9734 // 7 - ORD
9735 switch (SetCCOpcode) {
9736 default: llvm_unreachable("Unexpected SETCC condition");
9737 case ISD::SETOEQ:
9738 case ISD::SETEQ: SSECC = 0; break;
9739 case ISD::SETOGT:
9740 case ISD::SETGT: Swap = true; // Fallthrough
9741 case ISD::SETLT:
9742 case ISD::SETOLT: SSECC = 1; break;
9743 case ISD::SETOGE:
9744 case ISD::SETGE: Swap = true; // Fallthrough
9745 case ISD::SETLE:
9746 case ISD::SETOLE: SSECC = 2; break;
9747 case ISD::SETUO: SSECC = 3; break;
9748 case ISD::SETUNE:
9749 case ISD::SETNE: SSECC = 4; break;
9750 case ISD::SETULE: Swap = true; // Fallthrough
9751 case ISD::SETUGE: SSECC = 5; break;
9752 case ISD::SETULT: Swap = true; // Fallthrough
9753 case ISD::SETUGT: SSECC = 6; break;
9754 case ISD::SETO: SSECC = 7; break;
9755 case ISD::SETUEQ:
9756 case ISD::SETONE: SSECC = 8; break;
9757 }
9758 if (Swap)
9759 std::swap(Op0, Op1);
9760
9761 return SSECC;
9762}
9763
Craig Topper89af15e2011-09-18 08:03:58 +00009764// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009765// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009766static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009767 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009768
Craig Topper7a9a28b2012-08-12 02:23:29 +00009769 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009770 "Unsupported value type for operation");
9771
Craig Topper66ddd152012-04-27 22:54:43 +00009772 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009773 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009774 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009775
9776 // Extract the LHS vectors
9777 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009778 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9779 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009780
9781 // Extract the RHS vectors
9782 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009783 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9784 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009785
9786 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009787 MVT EltVT = VT.getVectorElementType();
9788 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009789 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9790 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9791 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9792}
9793
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009794static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9795 SDValue Cond;
9796 SDValue Op0 = Op.getOperand(0);
9797 SDValue Op1 = Op.getOperand(1);
9798 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009799 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009800
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009801 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009802 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009803 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009804
9805 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9806 SDLoc dl(Op);
9807
9808 bool Unsigned = false;
9809 unsigned SSECC;
9810 switch (SetCCOpcode) {
9811 default: llvm_unreachable("Unexpected SETCC condition");
9812 case ISD::SETNE: SSECC = 4; break;
9813 case ISD::SETEQ: SSECC = 0; break;
9814 case ISD::SETUGT: Unsigned = true;
9815 case ISD::SETGT: SSECC = 6; break; // NLE
9816 case ISD::SETULT: Unsigned = true;
9817 case ISD::SETLT: SSECC = 1; break;
9818 case ISD::SETUGE: Unsigned = true;
9819 case ISD::SETGE: SSECC = 5; break; // NLT
9820 case ISD::SETULE: Unsigned = true;
9821 case ISD::SETLE: SSECC = 2; break;
9822 }
9823 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9824 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9825 DAG.getConstant(SSECC, MVT::i8));
9826
9827}
9828
Craig Topper26827f32013-01-20 09:02:22 +00009829static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9830 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009831 SDValue Cond;
9832 SDValue Op0 = Op.getOperand(0);
9833 SDValue Op1 = Op.getOperand(1);
9834 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009835 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009836 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009837 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009838 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009839
9840 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009841#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009842 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009843 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9844#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009845
Benjamin Kramer75311b72013-08-04 12:05:16 +00009846 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009847 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009848 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009849 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009850 Opc = X86ISD::CMPM;
9851 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009852 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009853 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009854 unsigned CC0, CC1;
9855 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009856 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009857 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9858 } else {
9859 assert(SetCCOpcode == ISD::SETONE);
9860 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009861 }
Craig Topper523908d2012-08-13 02:34:03 +00009862
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009863 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009864 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009865 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009866 DAG.getConstant(CC1, MVT::i8));
9867 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009868 }
9869 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009870 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009871 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009872 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009873
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009874 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009875 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009876 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009877
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009878 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9879 EVT OpVT = Op1.getValueType();
9880 if (Subtarget->hasAVX512()) {
9881 if (Op1.getValueType().is512BitVector() ||
9882 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9883 return LowerIntVSETCC_AVX512(Op, DAG);
9884
9885 // In AVX-512 architecture setcc returns mask with i1 elements,
9886 // But there is no compare instruction for i8 and i16 elements.
9887 // We are not talking about 512-bit operands in this case, these
9888 // types are illegal.
9889 if (MaskResult &&
9890 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9891 OpVT.getVectorElementType().getSizeInBits() >= 8))
9892 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9893 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9894 }
9895
Nate Begeman30a0de92008-07-17 16:51:19 +00009896 // We are handling one of the integer comparisons here. Since SSE only has
9897 // GT and EQ comparisons for integer, swapping operands and multiple
9898 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009899 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009900 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9901
Nate Begeman30a0de92008-07-17 16:51:19 +00009902 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009903 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009904 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009905 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009906 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009907 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009908 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009909 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9910 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009911 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009912 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9913 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009914 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009915 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9916 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009917 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009918
9919 // Special case: Use min/max operations for SETULE/SETUGE
9920 MVT VET = VT.getVectorElementType();
9921 bool hasMinMax =
9922 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9923 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9924
9925 if (hasMinMax) {
9926 switch (SetCCOpcode) {
9927 default: break;
9928 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9929 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9930 }
9931
9932 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9933 }
9934
Nate Begeman30a0de92008-07-17 16:51:19 +00009935 if (Swap)
9936 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009937
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009938 // Check that the operation in question is available (most are plain SSE2,
9939 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009940 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009941 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9942 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9943
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009944 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009945 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9946 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9947
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009948 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009949 // bits of the inputs before performing those operations. The lower
9950 // compare is always unsigned.
9951 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009952 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009953 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9954 } else {
9955 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9956 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9957 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9958 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009959 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009960 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9961 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009962
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009963 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9964 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9965 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9966
9967 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009968 static const int MaskHi[] = { 1, 1, 3, 3 };
9969 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009970 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9971 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9972 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9973
9974 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9975 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9976
9977 if (Invert)
9978 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9979
9980 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9981 }
9982
Benjamin Kramer382ed782012-12-25 12:54:19 +00009983 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9984 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +00009985 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +00009986 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
9987
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009988 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +00009989 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9990 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9991
9992 // Do the compare.
9993 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
9994
9995 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +00009996 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +00009997 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
9998 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +00009999
10000 if (Invert)
10001 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10002
10003 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10004 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010005 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010006
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010007 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10008 // bits of the inputs before performing those operations.
10009 if (FlipSigns) {
10010 EVT EltVT = VT.getVectorElementType();
10011 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10012 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10013 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10014 }
10015
Dale Johannesenace16102009-02-03 19:33:06 +000010016 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010017
10018 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010019 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010020 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010021
10022 if (MinMax)
10023 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010024
Nate Begeman30a0de92008-07-17 16:51:19 +000010025 return Result;
10026}
Evan Cheng0488db92007-09-25 01:57:46 +000010027
Craig Topper26827f32013-01-20 09:02:22 +000010028SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10029
Craig Topper5a0910b2013-08-15 02:33:50 +000010030 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010031
10032 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10033
10034 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10035 SDValue Op0 = Op.getOperand(0);
10036 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010037 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010038 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10039
10040 // Optimize to BT if possible.
10041 // Lower (X & (1 << N)) == 0 to BT(X, N).
10042 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10043 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10044 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10045 Op1.getOpcode() == ISD::Constant &&
10046 cast<ConstantSDNode>(Op1)->isNullValue() &&
10047 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10048 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10049 if (NewSetCC.getNode())
10050 return NewSetCC;
10051 }
10052
10053 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10054 // these.
10055 if (Op1.getOpcode() == ISD::Constant &&
10056 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10057 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10058 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10059
10060 // If the input is a setcc, then reuse the input setcc or use a new one with
10061 // the inverted condition.
10062 if (Op0.getOpcode() == X86ISD::SETCC) {
10063 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10064 bool Invert = (CC == ISD::SETNE) ^
10065 cast<ConstantSDNode>(Op1)->isNullValue();
10066 if (!Invert) return Op0;
10067
10068 CCode = X86::GetOppositeBranchCondition(CCode);
10069 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10070 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10071 }
10072 }
10073
Craig Topper5a0910b2013-08-15 02:33:50 +000010074 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010075 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10076 if (X86CC == X86::COND_INVALID)
10077 return SDValue();
10078
10079 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10080 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10081 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10082 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10083}
10084
Evan Cheng370e5342008-12-03 08:38:43 +000010085// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010086static bool isX86LogicalCmp(SDValue Op) {
10087 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010088 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10089 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010090 return true;
10091 if (Op.getResNo() == 1 &&
10092 (Opc == X86ISD::ADD ||
10093 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010094 Opc == X86ISD::ADC ||
10095 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010096 Opc == X86ISD::SMUL ||
10097 Opc == X86ISD::UMUL ||
10098 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010099 Opc == X86ISD::DEC ||
10100 Opc == X86ISD::OR ||
10101 Opc == X86ISD::XOR ||
10102 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010103 return true;
10104
Chris Lattner9637d5b2010-12-05 07:49:54 +000010105 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10106 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010107
Dan Gohman076aee32009-03-04 19:44:21 +000010108 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010109}
10110
Chris Lattnera2b56002010-12-05 01:23:24 +000010111static bool isZero(SDValue V) {
10112 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10113 return C && C->isNullValue();
10114}
10115
Evan Chengb64dd5f2012-08-07 22:21:00 +000010116static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10117 if (V.getOpcode() != ISD::TRUNCATE)
10118 return false;
10119
10120 SDValue VOp0 = V.getOperand(0);
10121 unsigned InBits = VOp0.getValueSizeInBits();
10122 unsigned Bits = V.getValueSizeInBits();
10123 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10124}
10125
Dan Gohmand858e902010-04-17 15:26:15 +000010126SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010127 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010128 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010129 SDValue Op1 = Op.getOperand(1);
10130 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010131 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010132 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010133 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010134
Benjamin Kramer75311b72013-08-04 12:05:16 +000010135 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10136 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10137 // sequence later on.
10138 if (Cond.getOpcode() == ISD::SETCC &&
10139 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10140 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10141 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10142 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10143 int SSECC = translateX86FSETCC(
10144 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10145
10146 if (SSECC != 8) {
10147 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10148 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10149 DAG.getConstant(SSECC, MVT::i8));
10150 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10151 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10152 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10153 }
10154 }
10155
Dan Gohman1a492952009-10-20 16:22:37 +000010156 if (Cond.getOpcode() == ISD::SETCC) {
10157 SDValue NewCond = LowerSETCC(Cond, DAG);
10158 if (NewCond.getNode())
10159 Cond = NewCond;
10160 }
Evan Cheng734503b2006-09-11 02:19:56 +000010161
Chris Lattnera2b56002010-12-05 01:23:24 +000010162 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010163 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010164 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010165 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010166 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010167 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10168 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010169 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010170
Chris Lattnera2b56002010-12-05 01:23:24 +000010171 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010172
10173 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010174 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10175 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010176
10177 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010178 // Apply further optimizations for special cases
10179 // (select (x != 0), -1, 0) -> neg & sbb
10180 // (select (x == 0), 0, -1) -> neg & sbb
10181 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010182 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010183 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10184 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010185 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10186 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010187 CmpOp0);
10188 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10189 DAG.getConstant(X86::COND_B, MVT::i8),
10190 SDValue(Neg.getNode(), 1));
10191 return Res;
10192 }
10193
Chris Lattnera2b56002010-12-05 01:23:24 +000010194 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10195 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010196 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010197
Chris Lattner96908b12010-12-05 02:00:51 +000010198 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010199 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10200 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010201
Chris Lattner96908b12010-12-05 02:00:51 +000010202 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10203 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010204
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010205 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010206 if (N2C == 0 || !N2C->isNullValue())
10207 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10208 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010209 }
10210 }
10211
Chris Lattnera2b56002010-12-05 01:23:24 +000010212 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010213 if (Cond.getOpcode() == ISD::AND &&
10214 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10215 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010216 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010217 Cond = Cond.getOperand(0);
10218 }
10219
Evan Cheng3f41d662007-10-08 22:16:29 +000010220 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10221 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010222 unsigned CondOpcode = Cond.getOpcode();
10223 if (CondOpcode == X86ISD::SETCC ||
10224 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010225 CC = Cond.getOperand(0);
10226
Dan Gohman475871a2008-07-27 21:46:04 +000010227 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010228 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010229 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010230
Evan Cheng3f41d662007-10-08 22:16:29 +000010231 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010232 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010233 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010234 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010235
Chris Lattnerd1980a52009-03-12 06:52:53 +000010236 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10237 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010238 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010239 addTest = false;
10240 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010241 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10242 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10243 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10244 Cond.getOperand(0).getValueType() != MVT::i8)) {
10245 SDValue LHS = Cond.getOperand(0);
10246 SDValue RHS = Cond.getOperand(1);
10247 unsigned X86Opcode;
10248 unsigned X86Cond;
10249 SDVTList VTs;
10250 switch (CondOpcode) {
10251 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10252 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10253 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10254 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10255 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10256 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10257 default: llvm_unreachable("unexpected overflowing operator");
10258 }
10259 if (CondOpcode == ISD::UMULO)
10260 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10261 MVT::i32);
10262 else
10263 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10264
10265 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10266
10267 if (CondOpcode == ISD::UMULO)
10268 Cond = X86Op.getValue(2);
10269 else
10270 Cond = X86Op.getValue(1);
10271
10272 CC = DAG.getConstant(X86Cond, MVT::i8);
10273 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010274 }
10275
10276 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010277 // Look pass the truncate if the high bits are known zero.
10278 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10279 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010280
10281 // We know the result of AND is compared against zero. Try to match
10282 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010283 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010284 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010285 if (NewSetCC.getNode()) {
10286 CC = NewSetCC.getOperand(0);
10287 Cond = NewSetCC.getOperand(1);
10288 addTest = false;
10289 }
10290 }
10291 }
10292
10293 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010294 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010295 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010296 }
10297
Benjamin Kramere915ff32010-12-22 23:09:28 +000010298 // a < b ? -1 : 0 -> RES = ~setcc_carry
10299 // a < b ? 0 : -1 -> RES = setcc_carry
10300 // a >= b ? -1 : 0 -> RES = setcc_carry
10301 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010302 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010303 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010304 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10305
10306 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10307 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10308 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10309 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10310 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10311 return DAG.getNOT(DL, Res, Res.getValueType());
10312 return Res;
10313 }
10314 }
10315
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010316 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10317 // widen the cmov and push the truncate through. This avoids introducing a new
10318 // branch during isel and doesn't add any extensions.
10319 if (Op.getValueType() == MVT::i8 &&
10320 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10321 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10322 if (T1.getValueType() == T2.getValueType() &&
10323 // Blacklist CopyFromReg to avoid partial register stalls.
10324 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10325 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010326 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010327 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10328 }
10329 }
10330
Evan Cheng0488db92007-09-25 01:57:46 +000010331 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10332 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010333 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010334 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010335 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010336}
10337
Craig Topperff79bc62013-08-18 08:53:01 +000010338static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10339 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010340 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010341 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010342 SDLoc dl(Op);
10343
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010344 unsigned int NumElts = VT.getVectorNumElements();
10345 if (NumElts != 8 && NumElts != 16)
10346 return SDValue();
10347
10348 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010349 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10350
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010351 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10352 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10353
10354 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10355 Constant *C = ConstantInt::get(*DAG.getContext(),
10356 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10357
10358 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10359 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10360 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10361 MachinePointerInfo::getConstantPool(),
10362 false, false, false, Alignment);
10363 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10364 if (VT.is512BitVector())
10365 return Brcst;
10366 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010367}
10368
Craig Topperff79bc62013-08-18 08:53:01 +000010369static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10370 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010371 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010372 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010373 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010374 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010375
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010376 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10377 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10378
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010379 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10380 (VT != MVT::v8i32 || InVT != MVT::v8i16))
10381 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010382
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010383 if (Subtarget->hasInt256())
10384 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010385
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010386 // Optimize vectors in AVX mode
10387 // Sign extend v8i16 to v8i32 and
10388 // v4i32 to v4i64
10389 //
10390 // Divide input vector into two parts
10391 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10392 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10393 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010394
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010395 unsigned NumElems = InVT.getVectorNumElements();
10396 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010397
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010398 SmallVector<int,8> ShufMask1(NumElems, -1);
10399 for (unsigned i = 0; i != NumElems/2; ++i)
10400 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010401
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010402 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010403
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010404 SmallVector<int,8> ShufMask2(NumElems, -1);
10405 for (unsigned i = 0; i != NumElems/2; ++i)
10406 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010407
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010408 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010409
Craig Toppera080daf2013-01-20 21:50:27 +000010410 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010411 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010412
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010413 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10414 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010415
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010416 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010417}
10418
Evan Cheng370e5342008-12-03 08:38:43 +000010419// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10420// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10421// from the AND / OR.
10422static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10423 Opc = Op.getOpcode();
10424 if (Opc != ISD::OR && Opc != ISD::AND)
10425 return false;
10426 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10427 Op.getOperand(0).hasOneUse() &&
10428 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10429 Op.getOperand(1).hasOneUse());
10430}
10431
Evan Cheng961d6d42009-02-02 08:19:07 +000010432// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10433// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010434static bool isXor1OfSetCC(SDValue Op) {
10435 if (Op.getOpcode() != ISD::XOR)
10436 return false;
10437 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10438 if (N1C && N1C->getAPIntValue() == 1) {
10439 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10440 Op.getOperand(0).hasOneUse();
10441 }
10442 return false;
10443}
10444
Dan Gohmand858e902010-04-17 15:26:15 +000010445SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010446 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010447 SDValue Chain = Op.getOperand(0);
10448 SDValue Cond = Op.getOperand(1);
10449 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010450 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010451 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010452 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010453
Dan Gohman1a492952009-10-20 16:22:37 +000010454 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010455 // Check for setcc([su]{add,sub,mul}o == 0).
10456 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10457 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10458 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10459 Cond.getOperand(0).getResNo() == 1 &&
10460 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10461 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10462 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10463 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10464 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10465 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10466 Inverted = true;
10467 Cond = Cond.getOperand(0);
10468 } else {
10469 SDValue NewCond = LowerSETCC(Cond, DAG);
10470 if (NewCond.getNode())
10471 Cond = NewCond;
10472 }
Dan Gohman1a492952009-10-20 16:22:37 +000010473 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010474#if 0
10475 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010476 else if (Cond.getOpcode() == X86ISD::ADD ||
10477 Cond.getOpcode() == X86ISD::SUB ||
10478 Cond.getOpcode() == X86ISD::SMUL ||
10479 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010480 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010481#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010482
Evan Chengad9c0a32009-12-15 00:53:42 +000010483 // Look pass (and (setcc_carry (cmp ...)), 1).
10484 if (Cond.getOpcode() == ISD::AND &&
10485 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10486 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010487 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010488 Cond = Cond.getOperand(0);
10489 }
10490
Evan Cheng3f41d662007-10-08 22:16:29 +000010491 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10492 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010493 unsigned CondOpcode = Cond.getOpcode();
10494 if (CondOpcode == X86ISD::SETCC ||
10495 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010496 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010497
Dan Gohman475871a2008-07-27 21:46:04 +000010498 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010499 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010500 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010501 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010502 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010503 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010504 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010505 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010506 default: break;
10507 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010508 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010509 // These can only come from an arithmetic instruction with overflow,
10510 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010511 Cond = Cond.getNode()->getOperand(1);
10512 addTest = false;
10513 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010514 }
Evan Cheng0488db92007-09-25 01:57:46 +000010515 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010516 }
10517 CondOpcode = Cond.getOpcode();
10518 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10519 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10520 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10521 Cond.getOperand(0).getValueType() != MVT::i8)) {
10522 SDValue LHS = Cond.getOperand(0);
10523 SDValue RHS = Cond.getOperand(1);
10524 unsigned X86Opcode;
10525 unsigned X86Cond;
10526 SDVTList VTs;
10527 switch (CondOpcode) {
10528 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10529 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10530 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10531 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10532 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10533 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10534 default: llvm_unreachable("unexpected overflowing operator");
10535 }
10536 if (Inverted)
10537 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10538 if (CondOpcode == ISD::UMULO)
10539 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10540 MVT::i32);
10541 else
10542 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10543
10544 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10545
10546 if (CondOpcode == ISD::UMULO)
10547 Cond = X86Op.getValue(2);
10548 else
10549 Cond = X86Op.getValue(1);
10550
10551 CC = DAG.getConstant(X86Cond, MVT::i8);
10552 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010553 } else {
10554 unsigned CondOpc;
10555 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10556 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010557 if (CondOpc == ISD::OR) {
10558 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10559 // two branches instead of an explicit OR instruction with a
10560 // separate test.
10561 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010562 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010563 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010564 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010565 Chain, Dest, CC, Cmp);
10566 CC = Cond.getOperand(1).getOperand(0);
10567 Cond = Cmp;
10568 addTest = false;
10569 }
10570 } else { // ISD::AND
10571 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10572 // two branches instead of an explicit AND instruction with a
10573 // separate test. However, we only do this if this block doesn't
10574 // have a fall-through edge, because this requires an explicit
10575 // jmp when the condition is false.
10576 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010577 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010578 Op.getNode()->hasOneUse()) {
10579 X86::CondCode CCode =
10580 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10581 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010582 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010583 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010584 // Look for an unconditional branch following this conditional branch.
10585 // We need this because we need to reverse the successors in order
10586 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010587 if (User->getOpcode() == ISD::BR) {
10588 SDValue FalseBB = User->getOperand(1);
10589 SDNode *NewBR =
10590 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010591 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010592 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010593 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010594
Dale Johannesene4d209d2009-02-03 20:21:25 +000010595 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010596 Chain, Dest, CC, Cmp);
10597 X86::CondCode CCode =
10598 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10599 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010600 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010601 Cond = Cmp;
10602 addTest = false;
10603 }
10604 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010605 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010606 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10607 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10608 // It should be transformed during dag combiner except when the condition
10609 // is set by a arithmetics with overflow node.
10610 X86::CondCode CCode =
10611 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10612 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010613 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010614 Cond = Cond.getOperand(0).getOperand(1);
10615 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010616 } else if (Cond.getOpcode() == ISD::SETCC &&
10617 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10618 // For FCMP_OEQ, we can emit
10619 // two branches instead of an explicit AND instruction with a
10620 // separate test. However, we only do this if this block doesn't
10621 // have a fall-through edge, because this requires an explicit
10622 // jmp when the condition is false.
10623 if (Op.getNode()->hasOneUse()) {
10624 SDNode *User = *Op.getNode()->use_begin();
10625 // Look for an unconditional branch following this conditional branch.
10626 // We need this because we need to reverse the successors in order
10627 // to implement FCMP_OEQ.
10628 if (User->getOpcode() == ISD::BR) {
10629 SDValue FalseBB = User->getOperand(1);
10630 SDNode *NewBR =
10631 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10632 assert(NewBR == User);
10633 (void)NewBR;
10634 Dest = FalseBB;
10635
10636 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10637 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010638 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010639 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10640 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10641 Chain, Dest, CC, Cmp);
10642 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10643 Cond = Cmp;
10644 addTest = false;
10645 }
10646 }
10647 } else if (Cond.getOpcode() == ISD::SETCC &&
10648 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10649 // For FCMP_UNE, we can emit
10650 // two branches instead of an explicit AND instruction with a
10651 // separate test. However, we only do this if this block doesn't
10652 // have a fall-through edge, because this requires an explicit
10653 // jmp when the condition is false.
10654 if (Op.getNode()->hasOneUse()) {
10655 SDNode *User = *Op.getNode()->use_begin();
10656 // Look for an unconditional branch following this conditional branch.
10657 // We need this because we need to reverse the successors in order
10658 // to implement FCMP_UNE.
10659 if (User->getOpcode() == ISD::BR) {
10660 SDValue FalseBB = User->getOperand(1);
10661 SDNode *NewBR =
10662 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10663 assert(NewBR == User);
10664 (void)NewBR;
10665
10666 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10667 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010668 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010669 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10670 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10671 Chain, Dest, CC, Cmp);
10672 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10673 Cond = Cmp;
10674 addTest = false;
10675 Dest = FalseBB;
10676 }
10677 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010678 }
Evan Cheng0488db92007-09-25 01:57:46 +000010679 }
10680
10681 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010682 // Look pass the truncate if the high bits are known zero.
10683 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10684 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010685
10686 // We know the result of AND is compared against zero. Try to match
10687 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010688 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010689 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10690 if (NewSetCC.getNode()) {
10691 CC = NewSetCC.getOperand(0);
10692 Cond = NewSetCC.getOperand(1);
10693 addTest = false;
10694 }
10695 }
10696 }
10697
10698 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010699 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010700 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010701 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010702 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010703 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010704 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010705}
10706
Anton Korobeynikove060b532007-04-17 19:34:00 +000010707// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10708// Calls to _alloca is needed to probe the stack when allocating more than 4k
10709// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10710// that the guard pages used by the OS virtual memory manager are allocated in
10711// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010712SDValue
10713X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010714 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010715 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010716 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010717 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010718 "are being used");
10719 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010720 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010721
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010722 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010723 SDValue Chain = Op.getOperand(0);
10724 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010725 // FIXME: Ensure alignment here
10726
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010727 bool Is64Bit = Subtarget->is64Bit();
10728 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010729
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010730 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010731 MachineFunction &MF = DAG.getMachineFunction();
10732 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010733
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010734 if (Is64Bit) {
10735 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010736 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010737 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010738
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010739 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010740 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010741 if (I->hasNestAttr())
10742 report_fatal_error("Cannot use segmented stacks with functions that "
10743 "have nested arguments.");
10744 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010745
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010746 const TargetRegisterClass *AddrRegClass =
10747 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10748 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10749 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10750 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10751 DAG.getRegister(Vreg, SPTy));
10752 SDValue Ops1[2] = { Value, Chain };
10753 return DAG.getMergeValues(Ops1, 2, dl);
10754 } else {
10755 SDValue Flag;
10756 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010757
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010758 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10759 Flag = Chain.getValue(1);
10760 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010761
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010762 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10763 Flag = Chain.getValue(1);
10764
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010765 const X86RegisterInfo *RegInfo =
10766 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoc5c970e2012-10-31 04:14:09 +000010767 Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10768 SPTy).getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010769
10770 SDValue Ops1[2] = { Chain.getValue(0), Chain };
10771 return DAG.getMergeValues(Ops1, 2, dl);
10772 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010773}
10774
Dan Gohmand858e902010-04-17 15:26:15 +000010775SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010776 MachineFunction &MF = DAG.getMachineFunction();
10777 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10778
Dan Gohman69de1932008-02-06 22:27:42 +000010779 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010780 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010781
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010782 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010783 // vastart just stores the address of the VarArgsFrameIndex slot into the
10784 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010785 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10786 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010787 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10788 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010789 }
10790
10791 // __va_list_tag:
10792 // gp_offset (0 - 6 * 8)
10793 // fp_offset (48 - 48 + 8 * 16)
10794 // overflow_arg_area (point to parameters coming in memory).
10795 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010796 SmallVector<SDValue, 8> MemOps;
10797 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010798 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010799 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010800 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10801 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010802 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010803 MemOps.push_back(Store);
10804
10805 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010806 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010807 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010808 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010809 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10810 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010811 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010812 MemOps.push_back(Store);
10813
10814 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010815 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010816 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010817 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10818 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010819 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10820 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010821 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010822 MemOps.push_back(Store);
10823
10824 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010825 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010826 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010827 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10828 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010829 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10830 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010831 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010832 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010833 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010834}
10835
Dan Gohmand858e902010-04-17 15:26:15 +000010836SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010837 assert(Subtarget->is64Bit() &&
10838 "LowerVAARG only handles 64-bit va_arg!");
10839 assert((Subtarget->isTargetLinux() ||
10840 Subtarget->isTargetDarwin()) &&
10841 "Unhandled target in LowerVAARG");
10842 assert(Op.getNode()->getNumOperands() == 4);
10843 SDValue Chain = Op.getOperand(0);
10844 SDValue SrcPtr = Op.getOperand(1);
10845 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10846 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010847 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010848
Dan Gohman320afb82010-10-12 18:00:49 +000010849 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010850 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010851 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010852 uint8_t ArgMode;
10853
10854 // Decide which area this value should be read from.
10855 // TODO: Implement the AMD64 ABI in its entirety. This simple
10856 // selection mechanism works only for the basic types.
10857 if (ArgVT == MVT::f80) {
10858 llvm_unreachable("va_arg for f80 not yet implemented");
10859 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10860 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10861 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10862 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10863 } else {
10864 llvm_unreachable("Unhandled argument type in LowerVAARG");
10865 }
10866
10867 if (ArgMode == 2) {
10868 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010869 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010870 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010871 .getFunction()->getAttributes()
10872 .hasAttribute(AttributeSet::FunctionIndex,
10873 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010874 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010875 }
10876
10877 // Insert VAARG_64 node into the DAG
10878 // VAARG_64 returns two values: Variable Argument Address, Chain
10879 SmallVector<SDValue, 11> InstOps;
10880 InstOps.push_back(Chain);
10881 InstOps.push_back(SrcPtr);
10882 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10883 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10884 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10885 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10886 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10887 VTs, &InstOps[0], InstOps.size(),
10888 MVT::i64,
10889 MachinePointerInfo(SV),
10890 /*Align=*/0,
10891 /*Volatile=*/false,
10892 /*ReadMem=*/true,
10893 /*WriteMem=*/true);
10894 Chain = VAARG.getValue(1);
10895
10896 // Load the next argument and return it
10897 return DAG.getLoad(ArgVT, dl,
10898 Chain,
10899 VAARG,
10900 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010901 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010902}
10903
Craig Topper55b24052012-09-11 06:15:32 +000010904static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10905 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010906 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010907 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010908 SDValue Chain = Op.getOperand(0);
10909 SDValue DstPtr = Op.getOperand(1);
10910 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010911 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10912 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010913 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010914
Chris Lattnere72f2022010-09-21 05:40:29 +000010915 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010916 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010917 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010918 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010919}
10920
Craig Topperff3139f2013-02-19 07:43:59 +000010921// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010922// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010923static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010924 SDValue SrcOp, SDValue ShAmt,
10925 SelectionDAG &DAG) {
10926 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10927
10928 if (isa<ConstantSDNode>(ShAmt)) {
Nadav Rotemd896e242012-07-15 20:27:43 +000010929 // Constant may be a TargetConstant. Use a regular constant.
10930 uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Craig Topper80e46362012-01-23 06:16:53 +000010931 switch (Opc) {
10932 default: llvm_unreachable("Unknown target vector shift node");
10933 case X86ISD::VSHLI:
10934 case X86ISD::VSRLI:
10935 case X86ISD::VSRAI:
Nadav Rotemd896e242012-07-15 20:27:43 +000010936 return DAG.getNode(Opc, dl, VT, SrcOp,
10937 DAG.getConstant(ShiftAmt, MVT::i32));
Craig Topper80e46362012-01-23 06:16:53 +000010938 }
10939 }
10940
10941 // Change opcode to non-immediate version
10942 switch (Opc) {
10943 default: llvm_unreachable("Unknown target vector shift node");
10944 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10945 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10946 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10947 }
10948
10949 // Need to build a vector containing shift amount
10950 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10951 SDValue ShOps[4];
10952 ShOps[0] = ShAmt;
10953 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000010954 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000010955 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000010956
10957 // The return type has to be a 128-bit type with the same element
10958 // type as the input type.
10959 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10960 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10961
10962 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000010963 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10964}
10965
Craig Topper55b24052012-09-11 06:15:32 +000010966static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010967 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010968 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000010969 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000010970 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000010971 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000010972 case Intrinsic::x86_sse_comieq_ss:
10973 case Intrinsic::x86_sse_comilt_ss:
10974 case Intrinsic::x86_sse_comile_ss:
10975 case Intrinsic::x86_sse_comigt_ss:
10976 case Intrinsic::x86_sse_comige_ss:
10977 case Intrinsic::x86_sse_comineq_ss:
10978 case Intrinsic::x86_sse_ucomieq_ss:
10979 case Intrinsic::x86_sse_ucomilt_ss:
10980 case Intrinsic::x86_sse_ucomile_ss:
10981 case Intrinsic::x86_sse_ucomigt_ss:
10982 case Intrinsic::x86_sse_ucomige_ss:
10983 case Intrinsic::x86_sse_ucomineq_ss:
10984 case Intrinsic::x86_sse2_comieq_sd:
10985 case Intrinsic::x86_sse2_comilt_sd:
10986 case Intrinsic::x86_sse2_comile_sd:
10987 case Intrinsic::x86_sse2_comigt_sd:
10988 case Intrinsic::x86_sse2_comige_sd:
10989 case Intrinsic::x86_sse2_comineq_sd:
10990 case Intrinsic::x86_sse2_ucomieq_sd:
10991 case Intrinsic::x86_sse2_ucomilt_sd:
10992 case Intrinsic::x86_sse2_ucomile_sd:
10993 case Intrinsic::x86_sse2_ucomigt_sd:
10994 case Intrinsic::x86_sse2_ucomige_sd:
10995 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000010996 unsigned Opc;
10997 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000010998 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000010999 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011000 case Intrinsic::x86_sse_comieq_ss:
11001 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011002 Opc = X86ISD::COMI;
11003 CC = ISD::SETEQ;
11004 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011005 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011006 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011007 Opc = X86ISD::COMI;
11008 CC = ISD::SETLT;
11009 break;
11010 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011011 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011012 Opc = X86ISD::COMI;
11013 CC = ISD::SETLE;
11014 break;
11015 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011016 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011017 Opc = X86ISD::COMI;
11018 CC = ISD::SETGT;
11019 break;
11020 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011021 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011022 Opc = X86ISD::COMI;
11023 CC = ISD::SETGE;
11024 break;
11025 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011026 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011027 Opc = X86ISD::COMI;
11028 CC = ISD::SETNE;
11029 break;
11030 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011031 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011032 Opc = X86ISD::UCOMI;
11033 CC = ISD::SETEQ;
11034 break;
11035 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011036 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011037 Opc = X86ISD::UCOMI;
11038 CC = ISD::SETLT;
11039 break;
11040 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011041 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011042 Opc = X86ISD::UCOMI;
11043 CC = ISD::SETLE;
11044 break;
11045 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011046 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011047 Opc = X86ISD::UCOMI;
11048 CC = ISD::SETGT;
11049 break;
11050 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011051 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011052 Opc = X86ISD::UCOMI;
11053 CC = ISD::SETGE;
11054 break;
11055 case Intrinsic::x86_sse_ucomineq_ss:
11056 case Intrinsic::x86_sse2_ucomineq_sd:
11057 Opc = X86ISD::UCOMI;
11058 CC = ISD::SETNE;
11059 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011060 }
Evan Cheng734503b2006-09-11 02:19:56 +000011061
Dan Gohman475871a2008-07-27 21:46:04 +000011062 SDValue LHS = Op.getOperand(1);
11063 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011064 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011065 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011066 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11067 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11068 DAG.getConstant(X86CC, MVT::i8), Cond);
11069 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011070 }
Craig Topper6d688152012-08-14 07:43:25 +000011071
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011072 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011073 case Intrinsic::x86_sse2_pmulu_dq:
11074 case Intrinsic::x86_avx2_pmulu_dq:
11075 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11076 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011077
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011078 // SSE2/AVX2 sub with unsigned saturation intrinsics
11079 case Intrinsic::x86_sse2_psubus_b:
11080 case Intrinsic::x86_sse2_psubus_w:
11081 case Intrinsic::x86_avx2_psubus_b:
11082 case Intrinsic::x86_avx2_psubus_w:
11083 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11084 Op.getOperand(1), Op.getOperand(2));
11085
Craig Topper6d688152012-08-14 07:43:25 +000011086 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011087 case Intrinsic::x86_sse3_hadd_ps:
11088 case Intrinsic::x86_sse3_hadd_pd:
11089 case Intrinsic::x86_avx_hadd_ps_256:
11090 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011091 case Intrinsic::x86_sse3_hsub_ps:
11092 case Intrinsic::x86_sse3_hsub_pd:
11093 case Intrinsic::x86_avx_hsub_ps_256:
11094 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011095 case Intrinsic::x86_ssse3_phadd_w_128:
11096 case Intrinsic::x86_ssse3_phadd_d_128:
11097 case Intrinsic::x86_avx2_phadd_w:
11098 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011099 case Intrinsic::x86_ssse3_phsub_w_128:
11100 case Intrinsic::x86_ssse3_phsub_d_128:
11101 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011102 case Intrinsic::x86_avx2_phsub_d: {
11103 unsigned Opcode;
11104 switch (IntNo) {
11105 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11106 case Intrinsic::x86_sse3_hadd_ps:
11107 case Intrinsic::x86_sse3_hadd_pd:
11108 case Intrinsic::x86_avx_hadd_ps_256:
11109 case Intrinsic::x86_avx_hadd_pd_256:
11110 Opcode = X86ISD::FHADD;
11111 break;
11112 case Intrinsic::x86_sse3_hsub_ps:
11113 case Intrinsic::x86_sse3_hsub_pd:
11114 case Intrinsic::x86_avx_hsub_ps_256:
11115 case Intrinsic::x86_avx_hsub_pd_256:
11116 Opcode = X86ISD::FHSUB;
11117 break;
11118 case Intrinsic::x86_ssse3_phadd_w_128:
11119 case Intrinsic::x86_ssse3_phadd_d_128:
11120 case Intrinsic::x86_avx2_phadd_w:
11121 case Intrinsic::x86_avx2_phadd_d:
11122 Opcode = X86ISD::HADD;
11123 break;
11124 case Intrinsic::x86_ssse3_phsub_w_128:
11125 case Intrinsic::x86_ssse3_phsub_d_128:
11126 case Intrinsic::x86_avx2_phsub_w:
11127 case Intrinsic::x86_avx2_phsub_d:
11128 Opcode = X86ISD::HSUB;
11129 break;
11130 }
11131 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011132 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011133 }
11134
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011135 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11136 case Intrinsic::x86_sse2_pmaxu_b:
11137 case Intrinsic::x86_sse41_pmaxuw:
11138 case Intrinsic::x86_sse41_pmaxud:
11139 case Intrinsic::x86_avx2_pmaxu_b:
11140 case Intrinsic::x86_avx2_pmaxu_w:
11141 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011142 case Intrinsic::x86_sse2_pminu_b:
11143 case Intrinsic::x86_sse41_pminuw:
11144 case Intrinsic::x86_sse41_pminud:
11145 case Intrinsic::x86_avx2_pminu_b:
11146 case Intrinsic::x86_avx2_pminu_w:
11147 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011148 case Intrinsic::x86_sse41_pmaxsb:
11149 case Intrinsic::x86_sse2_pmaxs_w:
11150 case Intrinsic::x86_sse41_pmaxsd:
11151 case Intrinsic::x86_avx2_pmaxs_b:
11152 case Intrinsic::x86_avx2_pmaxs_w:
11153 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011154 case Intrinsic::x86_sse41_pminsb:
11155 case Intrinsic::x86_sse2_pmins_w:
11156 case Intrinsic::x86_sse41_pminsd:
11157 case Intrinsic::x86_avx2_pmins_b:
11158 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000011159 case Intrinsic::x86_avx2_pmins_d: {
11160 unsigned Opcode;
11161 switch (IntNo) {
11162 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11163 case Intrinsic::x86_sse2_pmaxu_b:
11164 case Intrinsic::x86_sse41_pmaxuw:
11165 case Intrinsic::x86_sse41_pmaxud:
11166 case Intrinsic::x86_avx2_pmaxu_b:
11167 case Intrinsic::x86_avx2_pmaxu_w:
11168 case Intrinsic::x86_avx2_pmaxu_d:
11169 Opcode = X86ISD::UMAX;
11170 break;
11171 case Intrinsic::x86_sse2_pminu_b:
11172 case Intrinsic::x86_sse41_pminuw:
11173 case Intrinsic::x86_sse41_pminud:
11174 case Intrinsic::x86_avx2_pminu_b:
11175 case Intrinsic::x86_avx2_pminu_w:
11176 case Intrinsic::x86_avx2_pminu_d:
11177 Opcode = X86ISD::UMIN;
11178 break;
11179 case Intrinsic::x86_sse41_pmaxsb:
11180 case Intrinsic::x86_sse2_pmaxs_w:
11181 case Intrinsic::x86_sse41_pmaxsd:
11182 case Intrinsic::x86_avx2_pmaxs_b:
11183 case Intrinsic::x86_avx2_pmaxs_w:
11184 case Intrinsic::x86_avx2_pmaxs_d:
11185 Opcode = X86ISD::SMAX;
11186 break;
11187 case Intrinsic::x86_sse41_pminsb:
11188 case Intrinsic::x86_sse2_pmins_w:
11189 case Intrinsic::x86_sse41_pminsd:
11190 case Intrinsic::x86_avx2_pmins_b:
11191 case Intrinsic::x86_avx2_pmins_w:
11192 case Intrinsic::x86_avx2_pmins_d:
11193 Opcode = X86ISD::SMIN;
11194 break;
11195 }
11196 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011197 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011198 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011199
Craig Topper6d183e42012-12-29 16:44:25 +000011200 // SSE/SSE2/AVX floating point max/min intrinsics.
11201 case Intrinsic::x86_sse_max_ps:
11202 case Intrinsic::x86_sse2_max_pd:
11203 case Intrinsic::x86_avx_max_ps_256:
11204 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011205 case Intrinsic::x86_avx512_max_ps_512:
11206 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011207 case Intrinsic::x86_sse_min_ps:
11208 case Intrinsic::x86_sse2_min_pd:
11209 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011210 case Intrinsic::x86_avx_min_pd_256:
11211 case Intrinsic::x86_avx512_min_ps_512:
11212 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011213 unsigned Opcode;
11214 switch (IntNo) {
11215 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11216 case Intrinsic::x86_sse_max_ps:
11217 case Intrinsic::x86_sse2_max_pd:
11218 case Intrinsic::x86_avx_max_ps_256:
11219 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011220 case Intrinsic::x86_avx512_max_ps_512:
11221 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011222 Opcode = X86ISD::FMAX;
11223 break;
11224 case Intrinsic::x86_sse_min_ps:
11225 case Intrinsic::x86_sse2_min_pd:
11226 case Intrinsic::x86_avx_min_ps_256:
11227 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011228 case Intrinsic::x86_avx512_min_ps_512:
11229 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011230 Opcode = X86ISD::FMIN;
11231 break;
11232 }
11233 return DAG.getNode(Opcode, dl, Op.getValueType(),
11234 Op.getOperand(1), Op.getOperand(2));
11235 }
11236
Craig Topper6d688152012-08-14 07:43:25 +000011237 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011238 case Intrinsic::x86_avx2_psllv_d:
11239 case Intrinsic::x86_avx2_psllv_q:
11240 case Intrinsic::x86_avx2_psllv_d_256:
11241 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011242 case Intrinsic::x86_avx2_psrlv_d:
11243 case Intrinsic::x86_avx2_psrlv_q:
11244 case Intrinsic::x86_avx2_psrlv_d_256:
11245 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011246 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011247 case Intrinsic::x86_avx2_psrav_d_256: {
11248 unsigned Opcode;
11249 switch (IntNo) {
11250 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11251 case Intrinsic::x86_avx2_psllv_d:
11252 case Intrinsic::x86_avx2_psllv_q:
11253 case Intrinsic::x86_avx2_psllv_d_256:
11254 case Intrinsic::x86_avx2_psllv_q_256:
11255 Opcode = ISD::SHL;
11256 break;
11257 case Intrinsic::x86_avx2_psrlv_d:
11258 case Intrinsic::x86_avx2_psrlv_q:
11259 case Intrinsic::x86_avx2_psrlv_d_256:
11260 case Intrinsic::x86_avx2_psrlv_q_256:
11261 Opcode = ISD::SRL;
11262 break;
11263 case Intrinsic::x86_avx2_psrav_d:
11264 case Intrinsic::x86_avx2_psrav_d_256:
11265 Opcode = ISD::SRA;
11266 break;
11267 }
11268 return DAG.getNode(Opcode, dl, Op.getValueType(),
11269 Op.getOperand(1), Op.getOperand(2));
11270 }
11271
Craig Topper969ba282012-01-25 06:43:11 +000011272 case Intrinsic::x86_ssse3_pshuf_b_128:
11273 case Intrinsic::x86_avx2_pshuf_b:
11274 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11275 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011276
Craig Topper969ba282012-01-25 06:43:11 +000011277 case Intrinsic::x86_ssse3_psign_b_128:
11278 case Intrinsic::x86_ssse3_psign_w_128:
11279 case Intrinsic::x86_ssse3_psign_d_128:
11280 case Intrinsic::x86_avx2_psign_b:
11281 case Intrinsic::x86_avx2_psign_w:
11282 case Intrinsic::x86_avx2_psign_d:
11283 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11284 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011285
Craig Toppere566cd02012-01-26 07:18:03 +000011286 case Intrinsic::x86_sse41_insertps:
11287 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11288 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011289
Craig Toppere566cd02012-01-26 07:18:03 +000011290 case Intrinsic::x86_avx_vperm2f128_ps_256:
11291 case Intrinsic::x86_avx_vperm2f128_pd_256:
11292 case Intrinsic::x86_avx_vperm2f128_si_256:
11293 case Intrinsic::x86_avx2_vperm2i128:
11294 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11295 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011296
Craig Topperffa6c402012-04-16 07:13:00 +000011297 case Intrinsic::x86_avx2_permd:
11298 case Intrinsic::x86_avx2_permps:
11299 // Operands intentionally swapped. Mask is last operand to intrinsic,
11300 // but second operand for node/intruction.
11301 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11302 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011303
Craig Topper22d8f0d2012-12-29 18:18:20 +000011304 case Intrinsic::x86_sse_sqrt_ps:
11305 case Intrinsic::x86_sse2_sqrt_pd:
11306 case Intrinsic::x86_avx_sqrt_ps_256:
11307 case Intrinsic::x86_avx_sqrt_pd_256:
11308 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11309
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011310 // ptest and testp intrinsics. The intrinsic these come from are designed to
11311 // return an integer value, not just an instruction so lower it to the ptest
11312 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011313 case Intrinsic::x86_sse41_ptestz:
11314 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011315 case Intrinsic::x86_sse41_ptestnzc:
11316 case Intrinsic::x86_avx_ptestz_256:
11317 case Intrinsic::x86_avx_ptestc_256:
11318 case Intrinsic::x86_avx_ptestnzc_256:
11319 case Intrinsic::x86_avx_vtestz_ps:
11320 case Intrinsic::x86_avx_vtestc_ps:
11321 case Intrinsic::x86_avx_vtestnzc_ps:
11322 case Intrinsic::x86_avx_vtestz_pd:
11323 case Intrinsic::x86_avx_vtestc_pd:
11324 case Intrinsic::x86_avx_vtestnzc_pd:
11325 case Intrinsic::x86_avx_vtestz_ps_256:
11326 case Intrinsic::x86_avx_vtestc_ps_256:
11327 case Intrinsic::x86_avx_vtestnzc_ps_256:
11328 case Intrinsic::x86_avx_vtestz_pd_256:
11329 case Intrinsic::x86_avx_vtestc_pd_256:
11330 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11331 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011332 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011333 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011334 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011335 case Intrinsic::x86_avx_vtestz_ps:
11336 case Intrinsic::x86_avx_vtestz_pd:
11337 case Intrinsic::x86_avx_vtestz_ps_256:
11338 case Intrinsic::x86_avx_vtestz_pd_256:
11339 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011340 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011341 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011342 // ZF = 1
11343 X86CC = X86::COND_E;
11344 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011345 case Intrinsic::x86_avx_vtestc_ps:
11346 case Intrinsic::x86_avx_vtestc_pd:
11347 case Intrinsic::x86_avx_vtestc_ps_256:
11348 case Intrinsic::x86_avx_vtestc_pd_256:
11349 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011350 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011351 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011352 // CF = 1
11353 X86CC = X86::COND_B;
11354 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011355 case Intrinsic::x86_avx_vtestnzc_ps:
11356 case Intrinsic::x86_avx_vtestnzc_pd:
11357 case Intrinsic::x86_avx_vtestnzc_ps_256:
11358 case Intrinsic::x86_avx_vtestnzc_pd_256:
11359 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011360 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011361 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011362 // ZF and CF = 0
11363 X86CC = X86::COND_A;
11364 break;
11365 }
Eric Christopherfd179292009-08-27 18:07:15 +000011366
Eric Christopher71c67532009-07-29 00:28:05 +000011367 SDValue LHS = Op.getOperand(1);
11368 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011369 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11370 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011371 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11372 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11373 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011374 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011375 case Intrinsic::x86_avx512_kortestz:
11376 case Intrinsic::x86_avx512_kortestc: {
11377 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11378 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11379 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11380 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11381 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11382 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11383 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11384 }
Evan Cheng5759f972008-05-04 09:15:50 +000011385
Craig Topper80e46362012-01-23 06:16:53 +000011386 // SSE/AVX shift intrinsics
11387 case Intrinsic::x86_sse2_psll_w:
11388 case Intrinsic::x86_sse2_psll_d:
11389 case Intrinsic::x86_sse2_psll_q:
11390 case Intrinsic::x86_avx2_psll_w:
11391 case Intrinsic::x86_avx2_psll_d:
11392 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011393 case Intrinsic::x86_sse2_psrl_w:
11394 case Intrinsic::x86_sse2_psrl_d:
11395 case Intrinsic::x86_sse2_psrl_q:
11396 case Intrinsic::x86_avx2_psrl_w:
11397 case Intrinsic::x86_avx2_psrl_d:
11398 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011399 case Intrinsic::x86_sse2_psra_w:
11400 case Intrinsic::x86_sse2_psra_d:
11401 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011402 case Intrinsic::x86_avx2_psra_d: {
11403 unsigned Opcode;
11404 switch (IntNo) {
11405 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11406 case Intrinsic::x86_sse2_psll_w:
11407 case Intrinsic::x86_sse2_psll_d:
11408 case Intrinsic::x86_sse2_psll_q:
11409 case Intrinsic::x86_avx2_psll_w:
11410 case Intrinsic::x86_avx2_psll_d:
11411 case Intrinsic::x86_avx2_psll_q:
11412 Opcode = X86ISD::VSHL;
11413 break;
11414 case Intrinsic::x86_sse2_psrl_w:
11415 case Intrinsic::x86_sse2_psrl_d:
11416 case Intrinsic::x86_sse2_psrl_q:
11417 case Intrinsic::x86_avx2_psrl_w:
11418 case Intrinsic::x86_avx2_psrl_d:
11419 case Intrinsic::x86_avx2_psrl_q:
11420 Opcode = X86ISD::VSRL;
11421 break;
11422 case Intrinsic::x86_sse2_psra_w:
11423 case Intrinsic::x86_sse2_psra_d:
11424 case Intrinsic::x86_avx2_psra_w:
11425 case Intrinsic::x86_avx2_psra_d:
11426 Opcode = X86ISD::VSRA;
11427 break;
11428 }
11429 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011430 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011431 }
11432
11433 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011434 case Intrinsic::x86_sse2_pslli_w:
11435 case Intrinsic::x86_sse2_pslli_d:
11436 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011437 case Intrinsic::x86_avx2_pslli_w:
11438 case Intrinsic::x86_avx2_pslli_d:
11439 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011440 case Intrinsic::x86_sse2_psrli_w:
11441 case Intrinsic::x86_sse2_psrli_d:
11442 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011443 case Intrinsic::x86_avx2_psrli_w:
11444 case Intrinsic::x86_avx2_psrli_d:
11445 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011446 case Intrinsic::x86_sse2_psrai_w:
11447 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011448 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011449 case Intrinsic::x86_avx2_psrai_d: {
11450 unsigned Opcode;
11451 switch (IntNo) {
11452 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11453 case Intrinsic::x86_sse2_pslli_w:
11454 case Intrinsic::x86_sse2_pslli_d:
11455 case Intrinsic::x86_sse2_pslli_q:
11456 case Intrinsic::x86_avx2_pslli_w:
11457 case Intrinsic::x86_avx2_pslli_d:
11458 case Intrinsic::x86_avx2_pslli_q:
11459 Opcode = X86ISD::VSHLI;
11460 break;
11461 case Intrinsic::x86_sse2_psrli_w:
11462 case Intrinsic::x86_sse2_psrli_d:
11463 case Intrinsic::x86_sse2_psrli_q:
11464 case Intrinsic::x86_avx2_psrli_w:
11465 case Intrinsic::x86_avx2_psrli_d:
11466 case Intrinsic::x86_avx2_psrli_q:
11467 Opcode = X86ISD::VSRLI;
11468 break;
11469 case Intrinsic::x86_sse2_psrai_w:
11470 case Intrinsic::x86_sse2_psrai_d:
11471 case Intrinsic::x86_avx2_psrai_w:
11472 case Intrinsic::x86_avx2_psrai_d:
11473 Opcode = X86ISD::VSRAI;
11474 break;
11475 }
11476 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011477 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011478 }
11479
Craig Topper4feb6472012-08-06 06:22:36 +000011480 case Intrinsic::x86_sse42_pcmpistria128:
11481 case Intrinsic::x86_sse42_pcmpestria128:
11482 case Intrinsic::x86_sse42_pcmpistric128:
11483 case Intrinsic::x86_sse42_pcmpestric128:
11484 case Intrinsic::x86_sse42_pcmpistrio128:
11485 case Intrinsic::x86_sse42_pcmpestrio128:
11486 case Intrinsic::x86_sse42_pcmpistris128:
11487 case Intrinsic::x86_sse42_pcmpestris128:
11488 case Intrinsic::x86_sse42_pcmpistriz128:
11489 case Intrinsic::x86_sse42_pcmpestriz128: {
11490 unsigned Opcode;
11491 unsigned X86CC;
11492 switch (IntNo) {
11493 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11494 case Intrinsic::x86_sse42_pcmpistria128:
11495 Opcode = X86ISD::PCMPISTRI;
11496 X86CC = X86::COND_A;
11497 break;
11498 case Intrinsic::x86_sse42_pcmpestria128:
11499 Opcode = X86ISD::PCMPESTRI;
11500 X86CC = X86::COND_A;
11501 break;
11502 case Intrinsic::x86_sse42_pcmpistric128:
11503 Opcode = X86ISD::PCMPISTRI;
11504 X86CC = X86::COND_B;
11505 break;
11506 case Intrinsic::x86_sse42_pcmpestric128:
11507 Opcode = X86ISD::PCMPESTRI;
11508 X86CC = X86::COND_B;
11509 break;
11510 case Intrinsic::x86_sse42_pcmpistrio128:
11511 Opcode = X86ISD::PCMPISTRI;
11512 X86CC = X86::COND_O;
11513 break;
11514 case Intrinsic::x86_sse42_pcmpestrio128:
11515 Opcode = X86ISD::PCMPESTRI;
11516 X86CC = X86::COND_O;
11517 break;
11518 case Intrinsic::x86_sse42_pcmpistris128:
11519 Opcode = X86ISD::PCMPISTRI;
11520 X86CC = X86::COND_S;
11521 break;
11522 case Intrinsic::x86_sse42_pcmpestris128:
11523 Opcode = X86ISD::PCMPESTRI;
11524 X86CC = X86::COND_S;
11525 break;
11526 case Intrinsic::x86_sse42_pcmpistriz128:
11527 Opcode = X86ISD::PCMPISTRI;
11528 X86CC = X86::COND_E;
11529 break;
11530 case Intrinsic::x86_sse42_pcmpestriz128:
11531 Opcode = X86ISD::PCMPESTRI;
11532 X86CC = X86::COND_E;
11533 break;
11534 }
Craig Topper20b46b02013-08-06 04:12:40 +000011535 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011536 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11537 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11538 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11539 DAG.getConstant(X86CC, MVT::i8),
11540 SDValue(PCMP.getNode(), 1));
11541 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11542 }
Craig Topper6d688152012-08-14 07:43:25 +000011543
Craig Topper4feb6472012-08-06 06:22:36 +000011544 case Intrinsic::x86_sse42_pcmpistri128:
11545 case Intrinsic::x86_sse42_pcmpestri128: {
11546 unsigned Opcode;
11547 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11548 Opcode = X86ISD::PCMPISTRI;
11549 else
11550 Opcode = X86ISD::PCMPESTRI;
11551
Craig Topper20b46b02013-08-06 04:12:40 +000011552 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011553 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11554 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11555 }
Craig Topper0e292372012-08-24 04:03:22 +000011556 case Intrinsic::x86_fma_vfmadd_ps:
11557 case Intrinsic::x86_fma_vfmadd_pd:
11558 case Intrinsic::x86_fma_vfmsub_ps:
11559 case Intrinsic::x86_fma_vfmsub_pd:
11560 case Intrinsic::x86_fma_vfnmadd_ps:
11561 case Intrinsic::x86_fma_vfnmadd_pd:
11562 case Intrinsic::x86_fma_vfnmsub_ps:
11563 case Intrinsic::x86_fma_vfnmsub_pd:
11564 case Intrinsic::x86_fma_vfmaddsub_ps:
11565 case Intrinsic::x86_fma_vfmaddsub_pd:
11566 case Intrinsic::x86_fma_vfmsubadd_ps:
11567 case Intrinsic::x86_fma_vfmsubadd_pd:
11568 case Intrinsic::x86_fma_vfmadd_ps_256:
11569 case Intrinsic::x86_fma_vfmadd_pd_256:
11570 case Intrinsic::x86_fma_vfmsub_ps_256:
11571 case Intrinsic::x86_fma_vfmsub_pd_256:
11572 case Intrinsic::x86_fma_vfnmadd_ps_256:
11573 case Intrinsic::x86_fma_vfnmadd_pd_256:
11574 case Intrinsic::x86_fma_vfnmsub_ps_256:
11575 case Intrinsic::x86_fma_vfnmsub_pd_256:
11576 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11577 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11578 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11579 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011580 unsigned Opc;
11581 switch (IntNo) {
11582 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11583 case Intrinsic::x86_fma_vfmadd_ps:
11584 case Intrinsic::x86_fma_vfmadd_pd:
11585 case Intrinsic::x86_fma_vfmadd_ps_256:
11586 case Intrinsic::x86_fma_vfmadd_pd_256:
11587 Opc = X86ISD::FMADD;
11588 break;
11589 case Intrinsic::x86_fma_vfmsub_ps:
11590 case Intrinsic::x86_fma_vfmsub_pd:
11591 case Intrinsic::x86_fma_vfmsub_ps_256:
11592 case Intrinsic::x86_fma_vfmsub_pd_256:
11593 Opc = X86ISD::FMSUB;
11594 break;
11595 case Intrinsic::x86_fma_vfnmadd_ps:
11596 case Intrinsic::x86_fma_vfnmadd_pd:
11597 case Intrinsic::x86_fma_vfnmadd_ps_256:
11598 case Intrinsic::x86_fma_vfnmadd_pd_256:
11599 Opc = X86ISD::FNMADD;
11600 break;
11601 case Intrinsic::x86_fma_vfnmsub_ps:
11602 case Intrinsic::x86_fma_vfnmsub_pd:
11603 case Intrinsic::x86_fma_vfnmsub_ps_256:
11604 case Intrinsic::x86_fma_vfnmsub_pd_256:
11605 Opc = X86ISD::FNMSUB;
11606 break;
11607 case Intrinsic::x86_fma_vfmaddsub_ps:
11608 case Intrinsic::x86_fma_vfmaddsub_pd:
11609 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11610 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11611 Opc = X86ISD::FMADDSUB;
11612 break;
11613 case Intrinsic::x86_fma_vfmsubadd_ps:
11614 case Intrinsic::x86_fma_vfmsubadd_pd:
11615 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11616 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11617 Opc = X86ISD::FMSUBADD;
11618 break;
11619 }
11620
11621 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11622 Op.getOperand(2), Op.getOperand(3));
11623 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011624 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011625}
Evan Cheng72261582005-12-20 06:22:03 +000011626
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011627static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11628 SDValue Base, SDValue Index,
11629 SDValue ScaleOp, SDValue Chain,
11630 const X86Subtarget * Subtarget) {
11631 SDLoc dl(Op);
11632 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11633 assert(C && "Invalid scale type");
11634 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11635 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11636 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11637 Index.getValueType().getVectorNumElements());
11638 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11639 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11640 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11641 SDValue Segment = DAG.getRegister(0, MVT::i32);
11642 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11643 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11644 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11645 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11646}
11647
11648static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11649 SDValue Src, SDValue Mask, SDValue Base,
11650 SDValue Index, SDValue ScaleOp, SDValue Chain,
11651 const X86Subtarget * Subtarget) {
11652 SDLoc dl(Op);
11653 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11654 assert(C && "Invalid scale type");
11655 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11656 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11657 Index.getValueType().getVectorNumElements());
11658 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11659 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11660 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11661 SDValue Segment = DAG.getRegister(0, MVT::i32);
11662 if (Src.getOpcode() == ISD::UNDEF)
11663 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11664 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11665 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11666 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11667 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11668}
11669
11670static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11671 SDValue Src, SDValue Base, SDValue Index,
11672 SDValue ScaleOp, SDValue Chain) {
11673 SDLoc dl(Op);
11674 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11675 assert(C && "Invalid scale type");
11676 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11677 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11678 SDValue Segment = DAG.getRegister(0, MVT::i32);
11679 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11680 Index.getValueType().getVectorNumElements());
11681 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11682 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11683 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11684 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11685 return SDValue(Res, 1);
11686}
11687
11688static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11689 SDValue Src, SDValue Mask, SDValue Base,
11690 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11691 SDLoc dl(Op);
11692 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11693 assert(C && "Invalid scale type");
11694 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11695 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11696 SDValue Segment = DAG.getRegister(0, MVT::i32);
11697 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11698 Index.getValueType().getVectorNumElements());
11699 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11700 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11701 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11702 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11703 return SDValue(Res, 1);
11704}
11705
11706static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11707 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011708 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011709 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11710 switch (IntNo) {
11711 default: return SDValue(); // Don't custom lower most intrinsics.
11712
Michael Liaoc26392a2013-03-28 23:41:26 +000011713 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011714 case Intrinsic::x86_rdrand_16:
11715 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011716 case Intrinsic::x86_rdrand_64:
11717 case Intrinsic::x86_rdseed_16:
11718 case Intrinsic::x86_rdseed_32:
11719 case Intrinsic::x86_rdseed_64: {
11720 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11721 IntNo == Intrinsic::x86_rdseed_32 ||
11722 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11723 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011724 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011725 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011726 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011727
Michael Liaoc26392a2013-03-28 23:41:26 +000011728 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11729 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011730 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11731 DAG.getConstant(1, Op->getValueType(1)),
11732 DAG.getConstant(X86::COND_B, MVT::i32),
11733 SDValue(Result.getNode(), 1) };
11734 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11735 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011736 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011737
11738 // Return { result, isValid, chain }.
11739 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011740 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011741 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011742 //int_gather(index, base, scale);
11743 case Intrinsic::x86_avx512_gather_qpd_512:
11744 case Intrinsic::x86_avx512_gather_qps_512:
11745 case Intrinsic::x86_avx512_gather_dpd_512:
11746 case Intrinsic::x86_avx512_gather_qpi_512:
11747 case Intrinsic::x86_avx512_gather_qpq_512:
11748 case Intrinsic::x86_avx512_gather_dpq_512:
11749 case Intrinsic::x86_avx512_gather_dps_512:
11750 case Intrinsic::x86_avx512_gather_dpi_512: {
11751 unsigned Opc;
11752 switch (IntNo) {
11753 default: llvm_unreachable("Unexpected intrinsic!");
11754 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11755 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11756 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11757 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11758 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11759 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11760 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11761 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11762 }
11763 SDValue Chain = Op.getOperand(0);
11764 SDValue Index = Op.getOperand(2);
11765 SDValue Base = Op.getOperand(3);
11766 SDValue Scale = Op.getOperand(4);
11767 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11768 }
11769 //int_gather_mask(v1, mask, index, base, scale);
11770 case Intrinsic::x86_avx512_gather_qps_mask_512:
11771 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11772 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11773 case Intrinsic::x86_avx512_gather_dps_mask_512:
11774 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11775 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11776 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11777 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11778 unsigned Opc;
11779 switch (IntNo) {
11780 default: llvm_unreachable("Unexpected intrinsic!");
11781 case Intrinsic::x86_avx512_gather_qps_mask_512:
11782 Opc = X86::VGATHERQPSZrm; break;
11783 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11784 Opc = X86::VGATHERQPDZrm; break;
11785 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11786 Opc = X86::VGATHERDPDZrm; break;
11787 case Intrinsic::x86_avx512_gather_dps_mask_512:
11788 Opc = X86::VGATHERDPSZrm; break;
11789 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11790 Opc = X86::VPGATHERQDZrm; break;
11791 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11792 Opc = X86::VPGATHERQQZrm; break;
11793 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11794 Opc = X86::VPGATHERDDZrm; break;
11795 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11796 Opc = X86::VPGATHERDQZrm; break;
11797 }
11798 SDValue Chain = Op.getOperand(0);
11799 SDValue Src = Op.getOperand(2);
11800 SDValue Mask = Op.getOperand(3);
11801 SDValue Index = Op.getOperand(4);
11802 SDValue Base = Op.getOperand(5);
11803 SDValue Scale = Op.getOperand(6);
11804 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11805 Subtarget);
11806 }
11807 //int_scatter(base, index, v1, scale);
11808 case Intrinsic::x86_avx512_scatter_qpd_512:
11809 case Intrinsic::x86_avx512_scatter_qps_512:
11810 case Intrinsic::x86_avx512_scatter_dpd_512:
11811 case Intrinsic::x86_avx512_scatter_qpi_512:
11812 case Intrinsic::x86_avx512_scatter_qpq_512:
11813 case Intrinsic::x86_avx512_scatter_dpq_512:
11814 case Intrinsic::x86_avx512_scatter_dps_512:
11815 case Intrinsic::x86_avx512_scatter_dpi_512: {
11816 unsigned Opc;
11817 switch (IntNo) {
11818 default: llvm_unreachable("Unexpected intrinsic!");
11819 case Intrinsic::x86_avx512_scatter_qpd_512:
11820 Opc = X86::VSCATTERQPDZmr; break;
11821 case Intrinsic::x86_avx512_scatter_qps_512:
11822 Opc = X86::VSCATTERQPSZmr; break;
11823 case Intrinsic::x86_avx512_scatter_dpd_512:
11824 Opc = X86::VSCATTERDPDZmr; break;
11825 case Intrinsic::x86_avx512_scatter_dps_512:
11826 Opc = X86::VSCATTERDPSZmr; break;
11827 case Intrinsic::x86_avx512_scatter_qpi_512:
11828 Opc = X86::VPSCATTERQDZmr; break;
11829 case Intrinsic::x86_avx512_scatter_qpq_512:
11830 Opc = X86::VPSCATTERQQZmr; break;
11831 case Intrinsic::x86_avx512_scatter_dpq_512:
11832 Opc = X86::VPSCATTERDQZmr; break;
11833 case Intrinsic::x86_avx512_scatter_dpi_512:
11834 Opc = X86::VPSCATTERDDZmr; break;
11835 }
11836 SDValue Chain = Op.getOperand(0);
11837 SDValue Base = Op.getOperand(2);
11838 SDValue Index = Op.getOperand(3);
11839 SDValue Src = Op.getOperand(4);
11840 SDValue Scale = Op.getOperand(5);
11841 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11842 }
11843 //int_scatter_mask(base, mask, index, v1, scale);
11844 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11845 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11846 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11847 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11848 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11849 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11850 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11851 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11852 unsigned Opc;
11853 switch (IntNo) {
11854 default: llvm_unreachable("Unexpected intrinsic!");
11855 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11856 Opc = X86::VSCATTERQPDZmr; break;
11857 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11858 Opc = X86::VSCATTERQPSZmr; break;
11859 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11860 Opc = X86::VSCATTERDPDZmr; break;
11861 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11862 Opc = X86::VSCATTERDPSZmr; break;
11863 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11864 Opc = X86::VPSCATTERQDZmr; break;
11865 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11866 Opc = X86::VPSCATTERQQZmr; break;
11867 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11868 Opc = X86::VPSCATTERDQZmr; break;
11869 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11870 Opc = X86::VPSCATTERDDZmr; break;
11871 }
11872 SDValue Chain = Op.getOperand(0);
11873 SDValue Base = Op.getOperand(2);
11874 SDValue Mask = Op.getOperand(3);
11875 SDValue Index = Op.getOperand(4);
11876 SDValue Src = Op.getOperand(5);
11877 SDValue Scale = Op.getOperand(6);
11878 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11879 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011880 // XTEST intrinsics.
11881 case Intrinsic::x86_xtest: {
11882 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11883 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11884 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11885 DAG.getConstant(X86::COND_NE, MVT::i8),
11886 InTrans);
11887 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11888 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11889 Ret, SDValue(InTrans.getNode(), 1));
11890 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011891 }
11892}
11893
Dan Gohmand858e902010-04-17 15:26:15 +000011894SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11895 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011896 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11897 MFI->setReturnAddressIsTaken(true);
11898
Bill Wendling64e87322009-01-16 19:25:27 +000011899 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011900 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011901 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011902
11903 if (Depth > 0) {
11904 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011905 const X86RegisterInfo *RegInfo =
11906 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11907 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011908 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11909 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011910 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011911 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011912 }
11913
11914 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011915 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011916 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011917 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011918}
11919
Dan Gohmand858e902010-04-17 15:26:15 +000011920SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011921 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11922 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011923
Owen Andersone50ed302009-08-10 22:56:29 +000011924 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011925 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011926 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011927 const X86RegisterInfo *RegInfo =
11928 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011929 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11930 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011931 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11932 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011933 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011934 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000011935 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11936 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011937 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000011938 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000011939}
11940
Dan Gohman475871a2008-07-27 21:46:04 +000011941SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000011942 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011943 const X86RegisterInfo *RegInfo =
11944 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011945 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011946}
11947
Dan Gohmand858e902010-04-17 15:26:15 +000011948SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011949 SDValue Chain = Op.getOperand(0);
11950 SDValue Offset = Op.getOperand(1);
11951 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011952 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011953
Michael Liaodb7da202013-05-02 09:18:38 +000011954 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011955 const X86RegisterInfo *RegInfo =
11956 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000011957 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11958 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11959 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11960 "Invalid Frame Register!");
11961 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11962 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011963
Michael Liaodb7da202013-05-02 09:18:38 +000011964 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000011965 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000011966 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000011967 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
11968 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000011969 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011970
Michael Liaodb7da202013-05-02 09:18:38 +000011971 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
11972 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011973}
11974
Michael Liao6c0e04c2012-10-15 22:39:43 +000011975SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
11976 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011977 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000011978 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
11979 DAG.getVTList(MVT::i32, MVT::Other),
11980 Op.getOperand(0), Op.getOperand(1));
11981}
11982
11983SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
11984 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011985 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000011986 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
11987 Op.getOperand(0), Op.getOperand(1));
11988}
11989
Craig Topper55b24052012-09-11 06:15:32 +000011990static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000011991 return Op.getOperand(0);
11992}
11993
11994SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
11995 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011996 SDValue Root = Op.getOperand(0);
11997 SDValue Trmp = Op.getOperand(1); // trampoline
11998 SDValue FPtr = Op.getOperand(2); // nested function
11999 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012000 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012001
Dan Gohman69de1932008-02-06 22:27:42 +000012002 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012003 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012004
12005 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012006 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012007
12008 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012009 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12010 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012011
Michael Liao7abf67a2012-10-04 19:50:43 +000012012 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12013 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012014
12015 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12016
12017 // Load the pointer to the nested function into R11.
12018 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012019 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012020 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012021 Addr, MachinePointerInfo(TrmpAddr),
12022 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012023
Owen Anderson825b72b2009-08-11 20:47:22 +000012024 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12025 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012026 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12027 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012028 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012029
12030 // Load the 'nest' parameter value into R10.
12031 // R10 is specified in X86CallingConv.td
12032 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012033 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12034 DAG.getConstant(10, MVT::i64));
12035 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012036 Addr, MachinePointerInfo(TrmpAddr, 10),
12037 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012038
Owen Anderson825b72b2009-08-11 20:47:22 +000012039 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12040 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012041 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12042 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012043 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012044
12045 // Jump to the nested function.
12046 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012047 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12048 DAG.getConstant(20, MVT::i64));
12049 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012050 Addr, MachinePointerInfo(TrmpAddr, 20),
12051 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012052
12053 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012054 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12055 DAG.getConstant(22, MVT::i64));
12056 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012057 MachinePointerInfo(TrmpAddr, 22),
12058 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012059
Duncan Sands4a544a72011-09-06 13:37:06 +000012060 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012061 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012062 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012063 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012064 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012065 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012066
12067 switch (CC) {
12068 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012069 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012070 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012071 case CallingConv::X86_StdCall: {
12072 // Pass 'nest' parameter in ECX.
12073 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012074 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012075
12076 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012077 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012078 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012079
Chris Lattner58d74912008-03-12 17:45:29 +000012080 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012081 unsigned InRegCount = 0;
12082 unsigned Idx = 1;
12083
12084 for (FunctionType::param_iterator I = FTy->param_begin(),
12085 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012086 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012087 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012088 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012089
12090 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012091 report_fatal_error("Nest register in use - reduce number of inreg"
12092 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012093 }
12094 }
12095 break;
12096 }
12097 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012098 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012099 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012100 // Pass 'nest' parameter in EAX.
12101 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012102 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012103 break;
12104 }
12105
Dan Gohman475871a2008-07-27 21:46:04 +000012106 SDValue OutChains[4];
12107 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012108
Owen Anderson825b72b2009-08-11 20:47:22 +000012109 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12110 DAG.getConstant(10, MVT::i32));
12111 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012112
Chris Lattnera62fe662010-02-05 19:20:30 +000012113 // This is storing the opcode for MOV32ri.
12114 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012115 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012116 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012117 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012118 Trmp, MachinePointerInfo(TrmpAddr),
12119 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012120
Owen Anderson825b72b2009-08-11 20:47:22 +000012121 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12122 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012123 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12124 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012125 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012126
Chris Lattnera62fe662010-02-05 19:20:30 +000012127 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012128 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12129 DAG.getConstant(5, MVT::i32));
12130 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012131 MachinePointerInfo(TrmpAddr, 5),
12132 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012133
Owen Anderson825b72b2009-08-11 20:47:22 +000012134 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12135 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012136 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12137 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012138 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012139
Duncan Sands4a544a72011-09-06 13:37:06 +000012140 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012141 }
12142}
12143
Dan Gohmand858e902010-04-17 15:26:15 +000012144SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12145 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012146 /*
12147 The rounding mode is in bits 11:10 of FPSR, and has the following
12148 settings:
12149 00 Round to nearest
12150 01 Round to -inf
12151 10 Round to +inf
12152 11 Round to 0
12153
12154 FLT_ROUNDS, on the other hand, expects the following:
12155 -1 Undefined
12156 0 Round to 0
12157 1 Round to nearest
12158 2 Round to +inf
12159 3 Round to -inf
12160
12161 To perform the conversion, we do:
12162 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12163 */
12164
12165 MachineFunction &MF = DAG.getMachineFunction();
12166 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012167 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012168 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012169 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012170 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012171
12172 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012173 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012174 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012175
Chris Lattner2156b792010-09-22 01:11:26 +000012176 MachineMemOperand *MMO =
12177 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12178 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012179
Chris Lattner2156b792010-09-22 01:11:26 +000012180 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12181 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12182 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012183 Ops, array_lengthof(Ops), MVT::i16,
12184 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012185
12186 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012187 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012188 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012189
12190 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012191 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012192 DAG.getNode(ISD::SRL, DL, MVT::i16,
12193 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012194 CWD, DAG.getConstant(0x800, MVT::i16)),
12195 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012196 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012197 DAG.getNode(ISD::SRL, DL, MVT::i16,
12198 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012199 CWD, DAG.getConstant(0x400, MVT::i16)),
12200 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012201
Dan Gohman475871a2008-07-27 21:46:04 +000012202 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012203 DAG.getNode(ISD::AND, DL, MVT::i16,
12204 DAG.getNode(ISD::ADD, DL, MVT::i16,
12205 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012206 DAG.getConstant(1, MVT::i16)),
12207 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012208
Duncan Sands83ec4b62008-06-06 12:08:01 +000012209 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012210 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012211}
12212
Craig Topper55b24052012-09-11 06:15:32 +000012213static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012214 EVT VT = Op.getValueType();
12215 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012216 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012217 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012218
12219 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012220 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012221 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012222 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012223 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012224 }
Evan Cheng18efe262007-12-14 02:13:44 +000012225
Evan Cheng152804e2007-12-14 08:30:15 +000012226 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012227 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012228 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012229
12230 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012231 SDValue Ops[] = {
12232 Op,
12233 DAG.getConstant(NumBits+NumBits-1, OpVT),
12234 DAG.getConstant(X86::COND_E, MVT::i8),
12235 Op.getValue(1)
12236 };
12237 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012238
12239 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012240 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012241
Owen Anderson825b72b2009-08-11 20:47:22 +000012242 if (VT == MVT::i8)
12243 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012244 return Op;
12245}
12246
Craig Topper55b24052012-09-11 06:15:32 +000012247static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012248 EVT VT = Op.getValueType();
12249 EVT OpVT = VT;
12250 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012251 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012252
12253 Op = Op.getOperand(0);
12254 if (VT == MVT::i8) {
12255 // Zero extend to i32 since there is not an i8 bsr.
12256 OpVT = MVT::i32;
12257 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12258 }
12259
12260 // Issue a bsr (scan bits in reverse).
12261 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12262 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12263
12264 // And xor with NumBits-1.
12265 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12266
12267 if (VT == MVT::i8)
12268 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12269 return Op;
12270}
12271
Craig Topper55b24052012-09-11 06:15:32 +000012272static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012273 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012274 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012275 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012276 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012277
12278 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012279 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012280 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012281
12282 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012283 SDValue Ops[] = {
12284 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012285 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012286 DAG.getConstant(X86::COND_E, MVT::i8),
12287 Op.getValue(1)
12288 };
Chandler Carruth77821022011-12-24 12:12:34 +000012289 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012290}
12291
Craig Topper13894fa2011-08-24 06:14:18 +000012292// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12293// ones, and then concatenate the result back.
12294static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012295 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012296
Craig Topper7a9a28b2012-08-12 02:23:29 +000012297 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012298 "Unsupported value type for operation");
12299
Craig Topper66ddd152012-04-27 22:54:43 +000012300 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012301 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012302
12303 // Extract the LHS vectors
12304 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012305 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12306 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012307
12308 // Extract the RHS vectors
12309 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012310 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12311 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012312
12313 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12314 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12315
12316 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12317 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12318 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12319}
12320
Craig Topper55b24052012-09-11 06:15:32 +000012321static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012322 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012323 Op.getValueType().isInteger() &&
12324 "Only handle AVX 256-bit vector integer operation");
12325 return Lower256IntArith(Op, DAG);
12326}
12327
Craig Topper55b24052012-09-11 06:15:32 +000012328static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012329 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012330 Op.getValueType().isInteger() &&
12331 "Only handle AVX 256-bit vector integer operation");
12332 return Lower256IntArith(Op, DAG);
12333}
12334
Craig Topper55b24052012-09-11 06:15:32 +000012335static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12336 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012337 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012338 EVT VT = Op.getValueType();
12339
12340 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012341 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012342 return Lower256IntArith(Op, DAG);
12343
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012344 SDValue A = Op.getOperand(0);
12345 SDValue B = Op.getOperand(1);
12346
12347 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12348 if (VT == MVT::v4i32) {
12349 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12350 "Should not custom lower when pmuldq is available!");
12351
12352 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012353 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012354 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12355 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12356
12357 // Multiply the even parts.
12358 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12359 // Now multiply odd parts.
12360 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12361
12362 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12363 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12364
12365 // Merge the two vectors back together with a shuffle. This expands into 2
12366 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012367 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012368 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12369 }
12370
Craig Topper5b209e82012-02-05 03:14:49 +000012371 assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12372 "Only know how to lower V2I64/V4I64 multiply");
12373
Craig Topper5b209e82012-02-05 03:14:49 +000012374 // Ahi = psrlqi(a, 32);
12375 // Bhi = psrlqi(b, 32);
12376 //
12377 // AloBlo = pmuludq(a, b);
12378 // AloBhi = pmuludq(a, Bhi);
12379 // AhiBlo = pmuludq(Ahi, b);
12380
12381 // AloBhi = psllqi(AloBhi, 32);
12382 // AhiBlo = psllqi(AhiBlo, 32);
12383 // return AloBlo + AloBhi + AhiBlo;
12384
Craig Topper5b209e82012-02-05 03:14:49 +000012385 SDValue ShAmt = DAG.getConstant(32, MVT::i32);
Craig Topperaaa643c2011-11-09 07:28:55 +000012386
Craig Topper5b209e82012-02-05 03:14:49 +000012387 SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12388 SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
Craig Topperaaa643c2011-11-09 07:28:55 +000012389
Craig Topper5b209e82012-02-05 03:14:49 +000012390 // Bit cast to 32-bit vectors for MULUDQ
12391 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12392 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12393 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12394 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12395 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012396
Craig Topper5b209e82012-02-05 03:14:49 +000012397 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12398 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12399 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012400
Craig Topper5b209e82012-02-05 03:14:49 +000012401 AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12402 AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012403
Dale Johannesene4d209d2009-02-03 20:21:25 +000012404 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012405 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012406}
12407
Craig Topper35e194f2013-08-14 07:53:41 +000012408static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012409 EVT VT = Op.getValueType();
12410 EVT EltTy = VT.getVectorElementType();
12411 unsigned NumElts = VT.getVectorNumElements();
12412 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012413 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012414
12415 // Lower sdiv X, pow2-const.
12416 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12417 if (!C)
12418 return SDValue();
12419
12420 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012421 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012422 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012423 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12424 HasAnyUndefs) ||
12425 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012426 return SDValue();
12427
12428 if ((SplatValue != 0) &&
12429 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12430 unsigned lg2 = SplatValue.countTrailingZeros();
12431 // Splat the sign bit.
12432 SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
12433 SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
12434 // Add (N0 < 0) ? abs2 - 1 : 0;
12435 SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
12436 SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
12437 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12438 SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
12439 SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
12440
12441 // If we're dividing by a positive value, we're done. Otherwise, we must
12442 // negate the result.
12443 if (SplatValue.isNonNegative())
12444 return SRA;
12445
12446 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12447 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12448 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12449 }
12450 return SDValue();
12451}
12452
Michael Liao4b7ab122013-03-20 02:20:36 +000012453static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12454 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012455 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012456 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012457 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012458 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012459
Nadav Rotem43012222011-05-11 08:12:09 +000012460 // Optimize shl/srl/sra with constant shift amount.
12461 if (isSplatVector(Amt.getNode())) {
12462 SDValue SclrAmt = Amt->getOperand(0);
12463 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12464 uint64_t ShiftAmt = C->getZExtValue();
12465
Craig Toppered2e13d2012-01-22 19:15:14 +000012466 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012467 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012468 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12469 (Subtarget->hasAVX512() &&
12470 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012471 if (Op.getOpcode() == ISD::SHL)
12472 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12473 DAG.getConstant(ShiftAmt, MVT::i32));
12474 if (Op.getOpcode() == ISD::SRL)
12475 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12476 DAG.getConstant(ShiftAmt, MVT::i32));
12477 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12478 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12479 DAG.getConstant(ShiftAmt, MVT::i32));
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012480 }
12481
Craig Toppered2e13d2012-01-22 19:15:14 +000012482 if (VT == MVT::v16i8) {
12483 if (Op.getOpcode() == ISD::SHL) {
12484 // Make a large shift.
12485 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12486 DAG.getConstant(ShiftAmt, MVT::i32));
12487 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12488 // Zero out the rightmost bits.
12489 SmallVector<SDValue, 16> V(16,
12490 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12491 MVT::i8));
12492 return DAG.getNode(ISD::AND, dl, VT, SHL,
12493 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012494 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012495 if (Op.getOpcode() == ISD::SRL) {
12496 // Make a large shift.
12497 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12498 DAG.getConstant(ShiftAmt, MVT::i32));
12499 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12500 // Zero out the leftmost bits.
12501 SmallVector<SDValue, 16> V(16,
12502 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12503 MVT::i8));
12504 return DAG.getNode(ISD::AND, dl, VT, SRL,
12505 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12506 }
12507 if (Op.getOpcode() == ISD::SRA) {
12508 if (ShiftAmt == 7) {
12509 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012510 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012511 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012512 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012513
Craig Toppered2e13d2012-01-22 19:15:14 +000012514 // R s>> a === ((R u>> a) ^ m) - m
12515 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12516 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12517 MVT::i8));
12518 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12519 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12520 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12521 return Res;
12522 }
Craig Topper731dfd02012-04-23 03:42:40 +000012523 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012524 }
Craig Topper46154eb2011-11-11 07:39:23 +000012525
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012526 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012527 if (Op.getOpcode() == ISD::SHL) {
12528 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012529 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12530 DAG.getConstant(ShiftAmt, MVT::i32));
12531 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012532 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012533 SmallVector<SDValue, 32> V(32,
12534 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12535 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012536 return DAG.getNode(ISD::AND, dl, VT, SHL,
12537 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012538 }
Craig Topper0d86d462011-11-20 00:12:05 +000012539 if (Op.getOpcode() == ISD::SRL) {
12540 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012541 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12542 DAG.getConstant(ShiftAmt, MVT::i32));
12543 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012544 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012545 SmallVector<SDValue, 32> V(32,
12546 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12547 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012548 return DAG.getNode(ISD::AND, dl, VT, SRL,
12549 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
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 Topper0d86d462011-11-20 00:12:05 +000012556 }
12557
12558 // R s>> a === ((R u>> a) ^ m) - m
12559 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12560 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12561 MVT::i8));
12562 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
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.");
Craig Topper0d86d462011-11-20 00:12:05 +000012568 }
Nadav Rotem43012222011-05-11 08:12:09 +000012569 }
12570 }
12571
Michael Liao42317cc2013-03-20 02:33:21 +000012572 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12573 if (!Subtarget->is64Bit() &&
12574 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12575 Amt.getOpcode() == ISD::BITCAST &&
12576 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12577 Amt = Amt.getOperand(0);
12578 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12579 VT.getVectorNumElements();
12580 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12581 uint64_t ShiftAmt = 0;
12582 for (unsigned i = 0; i != Ratio; ++i) {
12583 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12584 if (C == 0)
12585 return SDValue();
12586 // 6 == Log2(64)
12587 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12588 }
12589 // Check remaining shift amounts.
12590 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12591 uint64_t ShAmt = 0;
12592 for (unsigned j = 0; j != Ratio; ++j) {
12593 ConstantSDNode *C =
12594 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12595 if (C == 0)
12596 return SDValue();
12597 // 6 == Log2(64)
12598 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12599 }
12600 if (ShAmt != ShiftAmt)
12601 return SDValue();
12602 }
12603 switch (Op.getOpcode()) {
12604 default:
12605 llvm_unreachable("Unknown shift opcode!");
12606 case ISD::SHL:
12607 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12608 DAG.getConstant(ShiftAmt, MVT::i32));
12609 case ISD::SRL:
12610 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12611 DAG.getConstant(ShiftAmt, MVT::i32));
12612 case ISD::SRA:
12613 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12614 DAG.getConstant(ShiftAmt, MVT::i32));
12615 }
12616 }
12617
12618 return SDValue();
12619}
12620
12621static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12622 const X86Subtarget* Subtarget) {
12623 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012624 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012625 SDValue R = Op.getOperand(0);
12626 SDValue Amt = Op.getOperand(1);
12627
12628 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12629 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12630 (Subtarget->hasInt256() &&
12631 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012632 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12633 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012634 SDValue BaseShAmt;
12635 EVT EltVT = VT.getVectorElementType();
12636
12637 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12638 unsigned NumElts = VT.getVectorNumElements();
12639 unsigned i, j;
12640 for (i = 0; i != NumElts; ++i) {
12641 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12642 continue;
12643 break;
12644 }
12645 for (j = i; j != NumElts; ++j) {
12646 SDValue Arg = Amt.getOperand(j);
12647 if (Arg.getOpcode() == ISD::UNDEF) continue;
12648 if (Arg != Amt.getOperand(i))
12649 break;
12650 }
12651 if (i != NumElts && j == NumElts)
12652 BaseShAmt = Amt.getOperand(i);
12653 } else {
12654 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12655 Amt = Amt.getOperand(0);
12656 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12657 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12658 SDValue InVec = Amt.getOperand(0);
12659 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12660 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12661 unsigned i = 0;
12662 for (; i != NumElts; ++i) {
12663 SDValue Arg = InVec.getOperand(i);
12664 if (Arg.getOpcode() == ISD::UNDEF) continue;
12665 BaseShAmt = Arg;
12666 break;
12667 }
12668 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12669 if (ConstantSDNode *C =
12670 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12671 unsigned SplatIdx =
12672 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12673 if (C->getZExtValue() == SplatIdx)
12674 BaseShAmt = InVec.getOperand(1);
12675 }
12676 }
12677 if (BaseShAmt.getNode() == 0)
12678 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12679 DAG.getIntPtrConstant(0));
12680 }
12681 }
12682
12683 if (BaseShAmt.getNode()) {
12684 if (EltVT.bitsGT(MVT::i32))
12685 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12686 else if (EltVT.bitsLT(MVT::i32))
12687 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12688
12689 switch (Op.getOpcode()) {
12690 default:
12691 llvm_unreachable("Unknown shift opcode!");
12692 case ISD::SHL:
12693 switch (VT.getSimpleVT().SimpleTy) {
12694 default: return SDValue();
12695 case MVT::v2i64:
12696 case MVT::v4i32:
12697 case MVT::v8i16:
12698 case MVT::v4i64:
12699 case MVT::v8i32:
12700 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012701 case MVT::v16i32:
12702 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012703 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12704 }
12705 case ISD::SRA:
12706 switch (VT.getSimpleVT().SimpleTy) {
12707 default: return SDValue();
12708 case MVT::v4i32:
12709 case MVT::v8i16:
12710 case MVT::v8i32:
12711 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012712 case MVT::v16i32:
12713 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012714 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12715 }
12716 case ISD::SRL:
12717 switch (VT.getSimpleVT().SimpleTy) {
12718 default: return SDValue();
12719 case MVT::v2i64:
12720 case MVT::v4i32:
12721 case MVT::v8i16:
12722 case MVT::v4i64:
12723 case MVT::v8i32:
12724 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012725 case MVT::v16i32:
12726 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012727 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12728 }
12729 }
12730 }
12731 }
12732
12733 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12734 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012735 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12736 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012737 Amt.getOpcode() == ISD::BITCAST &&
12738 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12739 Amt = Amt.getOperand(0);
12740 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12741 VT.getVectorNumElements();
12742 std::vector<SDValue> Vals(Ratio);
12743 for (unsigned i = 0; i != Ratio; ++i)
12744 Vals[i] = Amt.getOperand(i);
12745 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12746 for (unsigned j = 0; j != Ratio; ++j)
12747 if (Vals[j] != Amt.getOperand(i + j))
12748 return SDValue();
12749 }
12750 switch (Op.getOpcode()) {
12751 default:
12752 llvm_unreachable("Unknown shift opcode!");
12753 case ISD::SHL:
12754 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12755 case ISD::SRL:
12756 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12757 case ISD::SRA:
12758 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12759 }
12760 }
12761
Michael Liao4b7ab122013-03-20 02:20:36 +000012762 return SDValue();
12763}
12764
Craig Topper35e194f2013-08-14 07:53:41 +000012765static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12766 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012767
12768 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012769 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012770 SDValue R = Op.getOperand(0);
12771 SDValue Amt = Op.getOperand(1);
12772 SDValue V;
12773
12774 if (!Subtarget->hasSSE2())
12775 return SDValue();
12776
12777 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12778 if (V.getNode())
12779 return V;
12780
Michael Liao42317cc2013-03-20 02:33:21 +000012781 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12782 if (V.getNode())
12783 return V;
12784
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012785 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12786 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012787 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12788 if (Subtarget->hasInt256()) {
12789 if (Op.getOpcode() == ISD::SRL &&
12790 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12791 VT == MVT::v4i64 || VT == MVT::v8i32))
12792 return Op;
12793 if (Op.getOpcode() == ISD::SHL &&
12794 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12795 VT == MVT::v4i64 || VT == MVT::v8i32))
12796 return Op;
12797 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12798 return Op;
12799 }
12800
Nadav Rotem43012222011-05-11 08:12:09 +000012801 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012802 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012803 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012804
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012805 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012806 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012807 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12808 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12809 }
Nadav Rotem43012222011-05-11 08:12:09 +000012810 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012811 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012812
Nate Begeman51409212010-07-28 00:21:48 +000012813 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012814 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012815 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012816
Lang Hames8b99c1e2011-12-17 01:08:46 +000012817 // Turn 'a' into a mask suitable for VSELECT
12818 SDValue VSelM = DAG.getConstant(0x80, VT);
12819 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012820 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012821
Lang Hames8b99c1e2011-12-17 01:08:46 +000012822 SDValue CM1 = DAG.getConstant(0x0f, VT);
12823 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012824
Lang Hames8b99c1e2011-12-17 01:08:46 +000012825 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12826 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Craig Toppered2e13d2012-01-22 19:15:14 +000012827 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12828 DAG.getConstant(4, MVT::i32), DAG);
12829 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012830 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12831
Nate Begeman51409212010-07-28 00:21:48 +000012832 // a += a
12833 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012834 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012835 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012836
Lang Hames8b99c1e2011-12-17 01:08:46 +000012837 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12838 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Craig Toppered2e13d2012-01-22 19:15:14 +000012839 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12840 DAG.getConstant(2, MVT::i32), DAG);
12841 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012842 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12843
Nate Begeman51409212010-07-28 00:21:48 +000012844 // a += a
12845 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012846 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012847 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012848
Lang Hames8b99c1e2011-12-17 01:08:46 +000012849 // return VSELECT(r, r+r, a);
12850 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012851 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012852 return R;
12853 }
Craig Topper46154eb2011-11-11 07:39:23 +000012854
12855 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012856 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012857 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012858 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12859 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12860
12861 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012862 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12863 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012864
12865 // Recreate the shift amount vectors
12866 SDValue Amt1, Amt2;
12867 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12868 // Constant shift amount
12869 SmallVector<SDValue, 4> Amt1Csts;
12870 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012871 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012872 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012873 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012874 Amt2Csts.push_back(Amt->getOperand(i));
12875
12876 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12877 &Amt1Csts[0], NumElems/2);
12878 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12879 &Amt2Csts[0], NumElems/2);
12880 } else {
12881 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012882 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12883 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012884 }
12885
12886 // Issue new vector shifts for the smaller types
12887 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12888 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12889
12890 // Concatenate the result back
12891 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12892 }
12893
Nate Begeman51409212010-07-28 00:21:48 +000012894 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012895}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012896
Craig Topper55b24052012-09-11 06:15:32 +000012897static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012898 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12899 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012900 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12901 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012902 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012903 SDValue LHS = N->getOperand(0);
12904 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012905 unsigned BaseOp = 0;
12906 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012907 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012908 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012909 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012910 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012911 // A subtract of one will be selected as a INC. Note that INC doesn't
12912 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012913 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12914 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012915 BaseOp = X86ISD::INC;
12916 Cond = X86::COND_O;
12917 break;
12918 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012919 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012920 Cond = X86::COND_O;
12921 break;
12922 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012923 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012924 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012925 break;
12926 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012927 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12928 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012929 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12930 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012931 BaseOp = X86ISD::DEC;
12932 Cond = X86::COND_O;
12933 break;
12934 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012935 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012936 Cond = X86::COND_O;
12937 break;
12938 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012939 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012940 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012941 break;
12942 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000012943 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000012944 Cond = X86::COND_O;
12945 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012946 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12947 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12948 MVT::i32);
12949 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012950
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012951 SDValue SetCC =
12952 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12953 DAG.getConstant(X86::COND_O, MVT::i32),
12954 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012955
Dan Gohman6e5fda22011-07-22 18:45:15 +000012956 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012957 }
Bill Wendling74c37652008-12-09 22:08:41 +000012958 }
Bill Wendling3fafd932008-11-26 22:37:40 +000012959
Bill Wendling61edeb52008-12-02 01:06:39 +000012960 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012961 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012962 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000012963
Bill Wendling61edeb52008-12-02 01:06:39 +000012964 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012965 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
12966 DAG.getConstant(Cond, MVT::i32),
12967 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000012968
Dan Gohman6e5fda22011-07-22 18:45:15 +000012969 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000012970}
12971
Chad Rosier30450e82011-12-22 22:35:21 +000012972SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
12973 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012974 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000012975 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
12976 EVT VT = Op.getValueType();
12977
Craig Toppered2e13d2012-01-22 19:15:14 +000012978 if (!Subtarget->hasSSE2() || !VT.isVector())
12979 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012980
Craig Toppered2e13d2012-01-22 19:15:14 +000012981 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
12982 ExtraVT.getScalarType().getSizeInBits();
12983 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
12984
12985 switch (VT.getSimpleVT().SimpleTy) {
12986 default: return SDValue();
12987 case MVT::v8i32:
12988 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012989 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012990 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012991 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012992 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000012993 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000012994
Craig Toppered2e13d2012-01-22 19:15:14 +000012995 // Extract the LHS vectors
12996 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012997 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12998 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000012999
Craig Toppered2e13d2012-01-22 19:15:14 +000013000 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13001 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013002
Craig Toppered2e13d2012-01-22 19:15:14 +000013003 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013004 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013005 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13006 ExtraNumElems/2);
13007 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013008
Craig Toppered2e13d2012-01-22 19:15:14 +000013009 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13010 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013011
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013012 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013013 }
13014 // fall through
13015 case MVT::v4i32:
13016 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013017 // (sext (vzext x)) -> (vsext x)
13018 SDValue Op0 = Op.getOperand(0);
13019 SDValue Op00 = Op0.getOperand(0);
13020 SDValue Tmp1;
13021 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13022 if (Op0.getOpcode() == ISD::BITCAST &&
13023 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
Craig Topper158ec072013-08-14 07:34:43 +000013024 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Nadav Rotemb05130e2013-03-19 18:38:27 +000013025 if (Tmp1.getNode()) {
13026 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13027 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13028 "This optimization is invalid without a VZEXT.");
13029 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13030 }
13031
13032 // If the above didn't work, then just use Shift-Left + Shift-Right.
13033 Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000013034 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013035 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013036 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013037}
13038
Craig Topper55b24052012-09-11 06:15:32 +000013039static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13040 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013041 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013042 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13043 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13044 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13045 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13046
13047 // The only fence that needs an instruction is a sequentially-consistent
13048 // cross-thread fence.
13049 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13050 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13051 // no-sse2). There isn't any reason to disable it if the target processor
13052 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013053 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013054 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13055
13056 SDValue Chain = Op.getOperand(0);
13057 SDValue Zero = DAG.getConstant(0, MVT::i32);
13058 SDValue Ops[] = {
13059 DAG.getRegister(X86::ESP, MVT::i32), // Base
13060 DAG.getTargetConstant(1, MVT::i8), // Scale
13061 DAG.getRegister(0, MVT::i32), // Index
13062 DAG.getTargetConstant(0, MVT::i32), // Disp
13063 DAG.getRegister(0, MVT::i32), // Segment.
13064 Zero,
13065 Chain
13066 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013067 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013068 return SDValue(Res, 0);
13069 }
13070
13071 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13072 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13073}
13074
Craig Topper55b24052012-09-11 06:15:32 +000013075static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13076 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013077 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013078 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013079 unsigned Reg = 0;
13080 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013081 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013082 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013083 case MVT::i8: Reg = X86::AL; size = 1; break;
13084 case MVT::i16: Reg = X86::AX; size = 2; break;
13085 case MVT::i32: Reg = X86::EAX; size = 4; break;
13086 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013087 assert(Subtarget->is64Bit() && "Node not type legal!");
13088 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013089 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013090 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013091 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013092 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013093 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013094 Op.getOperand(1),
13095 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013096 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013097 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013098 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013099 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13100 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013101 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013102 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013103 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013104 return cpOut;
13105}
13106
Craig Topper55b24052012-09-11 06:15:32 +000013107static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13108 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013109 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013110 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013111 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013112 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013113 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013114 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13115 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013116 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013117 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13118 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013119 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013120 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013121 rdx.getValue(1)
13122 };
Michael Liao0ee17002013-04-19 04:03:37 +000013123 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013124}
13125
Craig Topper35e194f2013-08-14 07:53:41 +000013126static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13127 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013128 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13129 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013130 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013131 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013132 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013133 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013134 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013135 // i64 <=> MMX conversions are Legal.
13136 if (SrcVT==MVT::i64 && DstVT.isVector())
13137 return Op;
13138 if (DstVT==MVT::i64 && SrcVT.isVector())
13139 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013140 // MMX <=> MMX conversions are Legal.
13141 if (SrcVT.isVector() && DstVT.isVector())
13142 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013143 // All other conversions need to be expanded.
13144 return SDValue();
13145}
Chris Lattner5b856542010-12-20 00:59:46 +000013146
Craig Topper55b24052012-09-11 06:15:32 +000013147static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013148 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013149 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013150 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013151 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013152 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013153 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013154 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013155 Node->getOperand(0),
13156 Node->getOperand(1), negOp,
13157 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013158 cast<AtomicSDNode>(Node)->getAlignment(),
13159 cast<AtomicSDNode>(Node)->getOrdering(),
13160 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013161}
13162
Eli Friedman327236c2011-08-24 20:50:09 +000013163static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13164 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013165 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013166 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013167
13168 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013169 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13170 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13171 // (The only way to get a 16-byte store is cmpxchg16b)
13172 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13173 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13174 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013175 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13176 cast<AtomicSDNode>(Node)->getMemoryVT(),
13177 Node->getOperand(0),
13178 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013179 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013180 cast<AtomicSDNode>(Node)->getOrdering(),
13181 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013182 return Swap.getValue(1);
13183 }
13184 // Other atomic stores have a simple pattern.
13185 return Op;
13186}
13187
Chris Lattner5b856542010-12-20 00:59:46 +000013188static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13189 EVT VT = Op.getNode()->getValueType(0);
13190
13191 // Let legalize expand this if it isn't a legal type yet.
13192 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13193 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013194
Chris Lattner5b856542010-12-20 00:59:46 +000013195 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013196
Chris Lattner5b856542010-12-20 00:59:46 +000013197 unsigned Opc;
13198 bool ExtraOp = false;
13199 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013200 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013201 case ISD::ADDC: Opc = X86ISD::ADD; break;
13202 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13203 case ISD::SUBC: Opc = X86ISD::SUB; break;
13204 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13205 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013206
Chris Lattner5b856542010-12-20 00:59:46 +000013207 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013208 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013209 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013210 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013211 Op.getOperand(1), Op.getOperand(2));
13212}
13213
Craig Topper35e194f2013-08-14 07:53:41 +000013214static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13215 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013216 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013217
Evan Cheng8688a582013-01-29 02:32:37 +000013218 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013219 // which returns the values as { float, float } (in XMM0) or
13220 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013221 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013222 SDValue Arg = Op.getOperand(0);
13223 EVT ArgVT = Arg.getValueType();
13224 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013225
Craig Topper35e194f2013-08-14 07:53:41 +000013226 TargetLowering::ArgListTy Args;
13227 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013228
Evan Cheng8688a582013-01-29 02:32:37 +000013229 Entry.Node = Arg;
13230 Entry.Ty = ArgTy;
13231 Entry.isSExt = false;
13232 Entry.isZExt = false;
13233 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013234
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013235 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013236 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13237 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13238 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013239 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013240 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13241 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013242
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013243 Type *RetTy = isF64
13244 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13245 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013246 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013247 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13248 false, false, false, false, 0,
13249 CallingConv::C, /*isTaillCall=*/false,
13250 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13251 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013252 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013253
13254 if (isF64)
13255 // Returned in xmm0 and xmm1.
13256 return CallResult.first;
13257
13258 // Returned in bits 0:31 and 32:64 xmm0.
13259 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13260 CallResult.first, DAG.getIntPtrConstant(0));
13261 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13262 CallResult.first, DAG.getIntPtrConstant(1));
13263 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13264 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013265}
13266
Evan Cheng0db9fe62006-04-25 20:13:52 +000013267/// LowerOperation - Provide custom lowering hooks for some operations.
13268///
Dan Gohmand858e902010-04-17 15:26:15 +000013269SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013270 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013271 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013272 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013273 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13274 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013275 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013276 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013277 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013278 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013279 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13280 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13281 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013282 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13283 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013284 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13285 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13286 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013287 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013288 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013289 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013290 case ISD::SHL_PARTS:
13291 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013292 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013293 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013294 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013295 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013296 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13297 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13298 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013299 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013300 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013301 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013302 case ISD::FABS: return LowerFABS(Op, DAG);
13303 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013304 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013305 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013306 case ISD::SETCC: return LowerSETCC(Op, DAG);
13307 case ISD::SELECT: return LowerSELECT(Op, DAG);
13308 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013309 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013310 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013311 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013312 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013313 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013314 case ISD::INTRINSIC_VOID:
13315 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013316 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13317 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013318 case ISD::FRAME_TO_ARGS_OFFSET:
13319 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013320 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013321 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013322 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13323 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013324 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13325 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013326 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013327 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013328 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013329 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013330 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013331 case ISD::SRA:
13332 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013333 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013334 case ISD::SADDO:
13335 case ISD::UADDO:
13336 case ISD::SSUBO:
13337 case ISD::USUBO:
13338 case ISD::SMULO:
13339 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013340 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013341 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013342 case ISD::ADDC:
13343 case ISD::ADDE:
13344 case ISD::SUBC:
13345 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013346 case ISD::ADD: return LowerADD(Op, DAG);
13347 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013348 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013349 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013350 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013351}
13352
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013353static void ReplaceATOMIC_LOAD(SDNode *Node,
13354 SmallVectorImpl<SDValue> &Results,
13355 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013356 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013357 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13358
13359 // Convert wide load -> cmpxchg8b/cmpxchg16b
13360 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13361 // (The only way to get a 16-byte load is cmpxchg16b)
13362 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013363 SDValue Zero = DAG.getConstant(0, VT);
13364 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013365 Node->getOperand(0),
13366 Node->getOperand(1), Zero, Zero,
13367 cast<AtomicSDNode>(Node)->getMemOperand(),
13368 cast<AtomicSDNode>(Node)->getOrdering(),
13369 cast<AtomicSDNode>(Node)->getSynchScope());
13370 Results.push_back(Swap.getValue(0));
13371 Results.push_back(Swap.getValue(1));
13372}
13373
Craig Topperc0878702012-08-17 06:55:11 +000013374static void
Duncan Sands1607f052008-12-01 11:39:25 +000013375ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013376 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013377 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013378 assert (Node->getValueType(0) == MVT::i64 &&
13379 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013380
13381 SDValue Chain = Node->getOperand(0);
13382 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013383 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013384 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013385 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013386 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013387 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013388 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013389 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013390 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013391 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013392 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013393 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013394 Results.push_back(Result.getValue(2));
13395}
13396
Duncan Sands126d9072008-07-04 11:47:58 +000013397/// ReplaceNodeResults - Replace a node with an illegal result type
13398/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013399void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13400 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013401 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013402 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013403 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013404 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013405 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013406 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013407 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013408 case ISD::ADDC:
13409 case ISD::ADDE:
13410 case ISD::SUBC:
13411 case ISD::SUBE:
13412 // We don't want to expand or promote these.
13413 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013414 case ISD::FP_TO_SINT:
13415 case ISD::FP_TO_UINT: {
13416 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13417
13418 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13419 return;
13420
Eli Friedman948e95a2009-05-23 09:59:16 +000013421 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013422 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013423 SDValue FIST = Vals.first, StackSlot = Vals.second;
13424 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013425 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013426 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013427 if (StackSlot.getNode() != 0)
13428 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13429 MachinePointerInfo(),
13430 false, false, false, 0));
13431 else
13432 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013433 }
13434 return;
13435 }
Michael Liao991b6a22012-10-24 04:09:32 +000013436 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013437 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13438 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013439 N->getValueType(0) != MVT::v2f32)
13440 return;
13441 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13442 N->getOperand(0));
13443 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13444 MVT::f64);
13445 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13446 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13447 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13448 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13449 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13450 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13451 return;
13452 }
Michael Liao44c2d612012-10-10 16:53:28 +000013453 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013454 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13455 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013456 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13457 Results.push_back(V);
13458 return;
13459 }
Duncan Sands1607f052008-12-01 11:39:25 +000013460 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013461 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013462 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013463 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013464 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013465 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013466 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013467 eax.getValue(2));
13468 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13469 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013470 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13471 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013472 Results.push_back(edx.getValue(1));
13473 return;
13474 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013475 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013476 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013477 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013478 bool Regs64bit = T == MVT::i128;
13479 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013480 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013481 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13482 DAG.getConstant(0, HalfT));
13483 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13484 DAG.getConstant(1, HalfT));
13485 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13486 Regs64bit ? X86::RAX : X86::EAX,
13487 cpInL, SDValue());
13488 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13489 Regs64bit ? X86::RDX : X86::EDX,
13490 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013491 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013492 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13493 DAG.getConstant(0, HalfT));
13494 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13495 DAG.getConstant(1, HalfT));
13496 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13497 Regs64bit ? X86::RBX : X86::EBX,
13498 swapInL, cpInH.getValue(1));
13499 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013500 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013501 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013502 SDValue Ops[] = { swapInH.getValue(0),
13503 N->getOperand(1),
13504 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013505 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013506 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013507 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13508 X86ISD::LCMPXCHG8_DAG;
13509 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013510 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013511 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13512 Regs64bit ? X86::RAX : X86::EAX,
13513 HalfT, Result.getValue(1));
13514 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13515 Regs64bit ? X86::RDX : X86::EDX,
13516 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013517 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013518 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013519 Results.push_back(cpOutH.getValue(1));
13520 return;
13521 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013522 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013523 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013524 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013525 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013526 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013527 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013528 case ISD::ATOMIC_LOAD_MAX:
13529 case ISD::ATOMIC_LOAD_MIN:
13530 case ISD::ATOMIC_LOAD_UMAX:
13531 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013532 case ISD::ATOMIC_SWAP: {
13533 unsigned Opc;
13534 switch (N->getOpcode()) {
13535 default: llvm_unreachable("Unexpected opcode");
13536 case ISD::ATOMIC_LOAD_ADD:
13537 Opc = X86ISD::ATOMADD64_DAG;
13538 break;
13539 case ISD::ATOMIC_LOAD_AND:
13540 Opc = X86ISD::ATOMAND64_DAG;
13541 break;
13542 case ISD::ATOMIC_LOAD_NAND:
13543 Opc = X86ISD::ATOMNAND64_DAG;
13544 break;
13545 case ISD::ATOMIC_LOAD_OR:
13546 Opc = X86ISD::ATOMOR64_DAG;
13547 break;
13548 case ISD::ATOMIC_LOAD_SUB:
13549 Opc = X86ISD::ATOMSUB64_DAG;
13550 break;
13551 case ISD::ATOMIC_LOAD_XOR:
13552 Opc = X86ISD::ATOMXOR64_DAG;
13553 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013554 case ISD::ATOMIC_LOAD_MAX:
13555 Opc = X86ISD::ATOMMAX64_DAG;
13556 break;
13557 case ISD::ATOMIC_LOAD_MIN:
13558 Opc = X86ISD::ATOMMIN64_DAG;
13559 break;
13560 case ISD::ATOMIC_LOAD_UMAX:
13561 Opc = X86ISD::ATOMUMAX64_DAG;
13562 break;
13563 case ISD::ATOMIC_LOAD_UMIN:
13564 Opc = X86ISD::ATOMUMIN64_DAG;
13565 break;
Craig Topperc0878702012-08-17 06:55:11 +000013566 case ISD::ATOMIC_SWAP:
13567 Opc = X86ISD::ATOMSWAP64_DAG;
13568 break;
13569 }
13570 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013571 return;
Craig Topperc0878702012-08-17 06:55:11 +000013572 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013573 case ISD::ATOMIC_LOAD:
13574 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013575 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013576}
13577
Evan Cheng72261582005-12-20 06:22:03 +000013578const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13579 switch (Opcode) {
13580 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013581 case X86ISD::BSF: return "X86ISD::BSF";
13582 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013583 case X86ISD::SHLD: return "X86ISD::SHLD";
13584 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013585 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013586 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013587 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013588 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013589 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013590 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013591 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013592 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13593 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13594 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013595 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013596 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013597 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013598 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013599 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013600 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013601 case X86ISD::COMI: return "X86ISD::COMI";
13602 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013603 case X86ISD::CMPM: return "X86ISD::CMPM";
13604 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013605 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013606 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013607 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13608 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013609 case X86ISD::CMOV: return "X86ISD::CMOV";
13610 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013611 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013612 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13613 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013614 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013615 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013616 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013617 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013618 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013619 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13620 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013621 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013622 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013623 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013624 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013625 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013626 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013627 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013628 case X86ISD::HADD: return "X86ISD::HADD";
13629 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013630 case X86ISD::FHADD: return "X86ISD::FHADD";
13631 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013632 case X86ISD::UMAX: return "X86ISD::UMAX";
13633 case X86ISD::UMIN: return "X86ISD::UMIN";
13634 case X86ISD::SMAX: return "X86ISD::SMAX";
13635 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013636 case X86ISD::FMAX: return "X86ISD::FMAX";
13637 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013638 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13639 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013640 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13641 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013642 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013643 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013644 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013645 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13646 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013647 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013648 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013649 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013650 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013651 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13652 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013653 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13654 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13655 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13656 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13657 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13658 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013659 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013660 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013661 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013662 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13663 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013664 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13665 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Michael Liao7091b242012-08-14 21:24:47 +000013666 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013667 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013668 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13669 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013670 case X86ISD::VSHL: return "X86ISD::VSHL";
13671 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013672 case X86ISD::VSRA: return "X86ISD::VSRA";
13673 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13674 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13675 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013676 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013677 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13678 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013679 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13680 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013681 case X86ISD::ADD: return "X86ISD::ADD";
13682 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013683 case X86ISD::ADC: return "X86ISD::ADC";
13684 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013685 case X86ISD::SMUL: return "X86ISD::SMUL";
13686 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013687 case X86ISD::INC: return "X86ISD::INC";
13688 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013689 case X86ISD::OR: return "X86ISD::OR";
13690 case X86ISD::XOR: return "X86ISD::XOR";
13691 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013692 case X86ISD::BLSI: return "X86ISD::BLSI";
13693 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13694 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013695 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013696 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013697 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013698 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013699 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013700 case X86ISD::TESTM: return "X86ISD::TESTM";
13701 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13702 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013703 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013704 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13705 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013706 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013707 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013708 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013709 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013710 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013711 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13712 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013713 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13714 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13715 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013716 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13717 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013718 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13719 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013720 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013721 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013722 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013723 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013724 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013725 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013726 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013727 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013728 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013729 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013730 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013731 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013732 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013733 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013734 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013735 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013736 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013737 case X86ISD::FMADD: return "X86ISD::FMADD";
13738 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13739 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13740 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13741 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13742 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013743 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13744 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013745 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013746 }
13747}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013748
Chris Lattnerc9addb72007-03-30 23:15:24 +000013749// isLegalAddressingMode - Return true if the addressing mode represented
13750// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013751bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013752 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013753 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013754 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013755 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013756
Chris Lattnerc9addb72007-03-30 23:15:24 +000013757 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013758 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013759 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013760
Chris Lattnerc9addb72007-03-30 23:15:24 +000013761 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013762 unsigned GVFlags =
13763 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013764
Chris Lattnerdfed4132009-07-10 07:38:24 +000013765 // If a reference to this global requires an extra load, we can't fold it.
13766 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013767 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013768
Chris Lattnerdfed4132009-07-10 07:38:24 +000013769 // If BaseGV requires a register for the PIC base, we cannot also have a
13770 // BaseReg specified.
13771 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013772 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013773
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013774 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013775 if ((M != CodeModel::Small || R != Reloc::Static) &&
13776 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013777 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013778 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013779
Chris Lattnerc9addb72007-03-30 23:15:24 +000013780 switch (AM.Scale) {
13781 case 0:
13782 case 1:
13783 case 2:
13784 case 4:
13785 case 8:
13786 // These scales always work.
13787 break;
13788 case 3:
13789 case 5:
13790 case 9:
13791 // These scales are formed with basereg+scalereg. Only accept if there is
13792 // no basereg yet.
13793 if (AM.HasBaseReg)
13794 return false;
13795 break;
13796 default: // Other stuff never works.
13797 return false;
13798 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013799
Chris Lattnerc9addb72007-03-30 23:15:24 +000013800 return true;
13801}
13802
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013803bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013804 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013805 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013806 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13807 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013808 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013809}
13810
Tim Northoverd1134482013-08-06 09:12:35 +000013811bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13812 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13813 return false;
13814
13815 if (!isTypeLegal(EVT::getEVT(Ty1)))
13816 return false;
13817
13818 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13819
13820 // Assuming the caller doesn't have a zeroext or signext return parameter,
13821 // truncation all the way down to i1 is valid.
13822 return true;
13823}
13824
Evan Cheng70e10d32012-07-17 06:53:39 +000013825bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013826 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013827}
13828
13829bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013830 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013831 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013832}
13833
Owen Andersone50ed302009-08-10 22:56:29 +000013834bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013835 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013836 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013837 unsigned NumBits1 = VT1.getSizeInBits();
13838 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013839 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013840}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013841
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013842bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013843 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013844 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013845}
13846
Owen Andersone50ed302009-08-10 22:56:29 +000013847bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013848 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013849 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013850}
13851
Evan Cheng2766a472012-12-06 19:13:27 +000013852bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13853 EVT VT1 = Val.getValueType();
13854 if (isZExtFree(VT1, VT2))
13855 return true;
13856
13857 if (Val.getOpcode() != ISD::LOAD)
13858 return false;
13859
13860 if (!VT1.isSimple() || !VT1.isInteger() ||
13861 !VT2.isSimple() || !VT2.isInteger())
13862 return false;
13863
13864 switch (VT1.getSimpleVT().SimpleTy) {
13865 default: break;
13866 case MVT::i8:
13867 case MVT::i16:
13868 case MVT::i32:
13869 // X86 has 8, 16, and 32-bit zero-extending loads.
13870 return true;
13871 }
13872
13873 return false;
13874}
13875
Stephen Line54885a2013-07-09 18:16:56 +000013876bool
13877X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13878 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13879 return false;
13880
13881 VT = VT.getScalarType();
13882
13883 if (!VT.isSimple())
13884 return false;
13885
13886 switch (VT.getSimpleVT().SimpleTy) {
13887 case MVT::f32:
13888 case MVT::f64:
13889 return true;
13890 default:
13891 break;
13892 }
13893
13894 return false;
13895}
13896
Owen Andersone50ed302009-08-10 22:56:29 +000013897bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013898 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013899 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013900}
13901
Evan Cheng60c07e12006-07-05 22:17:51 +000013902/// isShuffleMaskLegal - Targets can use this to indicate that they only
13903/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13904/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13905/// are assumed to be legal.
13906bool
Eric Christopherfd179292009-08-27 18:07:15 +000013907X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013908 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013909 if (!VT.isSimple())
13910 return false;
13911
13912 MVT SVT = VT.getSimpleVT();
13913
Eric Christophercff6f852010-04-15 01:40:20 +000013914 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013915 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013916 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013917
Nate Begemana09008b2009-10-19 02:17:23 +000013918 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013919 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013920 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013921 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013922 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013923 isPSHUFDMask(M, SVT) ||
13924 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13925 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13926 isPALIGNRMask(M, SVT, Subtarget) ||
13927 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13928 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13929 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13930 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013931}
13932
Dan Gohman7d8143f2008-04-09 20:09:42 +000013933bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013934X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013935 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013936 if (!VT.isSimple())
13937 return false;
13938
13939 MVT SVT = VT.getSimpleVT();
13940 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000013941 // FIXME: This collection of masks seems suspect.
13942 if (NumElts == 2)
13943 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000013944 if (NumElts == 4 && SVT.is128BitVector()) {
13945 return (isMOVLMask(Mask, SVT) ||
13946 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000013947 isSHUFPMask(Mask, SVT) ||
13948 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000013949 }
13950 return false;
13951}
13952
13953//===----------------------------------------------------------------------===//
13954// X86 Scheduler Hooks
13955//===----------------------------------------------------------------------===//
13956
Michael Liaobe02a902012-11-08 07:28:54 +000013957/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000013958static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
13959 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000013960 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000013961
13962 const BasicBlock *BB = MBB->getBasicBlock();
13963 MachineFunction::iterator I = MBB;
13964 ++I;
13965
13966 // For the v = xbegin(), we generate
13967 //
13968 // thisMBB:
13969 // xbegin sinkMBB
13970 //
13971 // mainMBB:
13972 // eax = -1
13973 //
13974 // sinkMBB:
13975 // v = eax
13976
13977 MachineBasicBlock *thisMBB = MBB;
13978 MachineFunction *MF = MBB->getParent();
13979 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13980 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13981 MF->insert(I, mainMBB);
13982 MF->insert(I, sinkMBB);
13983
13984 // Transfer the remainder of BB and its successor edges to sinkMBB.
13985 sinkMBB->splice(sinkMBB->begin(), MBB,
13986 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13987 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13988
13989 // thisMBB:
13990 // xbegin sinkMBB
13991 // # fallthrough to mainMBB
13992 // # abortion to sinkMBB
13993 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
13994 thisMBB->addSuccessor(mainMBB);
13995 thisMBB->addSuccessor(sinkMBB);
13996
13997 // mainMBB:
13998 // EAX = -1
13999 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14000 mainMBB->addSuccessor(sinkMBB);
14001
14002 // sinkMBB:
14003 // EAX is live into the sinkMBB
14004 sinkMBB->addLiveIn(X86::EAX);
14005 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14006 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14007 .addReg(X86::EAX);
14008
14009 MI->eraseFromParent();
14010 return sinkMBB;
14011}
14012
Michael Liaob118a072012-09-20 03:06:15 +000014013// Get CMPXCHG opcode for the specified data type.
14014static unsigned getCmpXChgOpcode(EVT VT) {
14015 switch (VT.getSimpleVT().SimpleTy) {
14016 case MVT::i8: return X86::LCMPXCHG8;
14017 case MVT::i16: return X86::LCMPXCHG16;
14018 case MVT::i32: return X86::LCMPXCHG32;
14019 case MVT::i64: return X86::LCMPXCHG64;
14020 default:
14021 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014022 }
Michael Liaob118a072012-09-20 03:06:15 +000014023 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014024}
14025
Michael Liaob118a072012-09-20 03:06:15 +000014026// Get LOAD opcode for the specified data type.
14027static unsigned getLoadOpcode(EVT VT) {
14028 switch (VT.getSimpleVT().SimpleTy) {
14029 case MVT::i8: return X86::MOV8rm;
14030 case MVT::i16: return X86::MOV16rm;
14031 case MVT::i32: return X86::MOV32rm;
14032 case MVT::i64: return X86::MOV64rm;
14033 default:
14034 break;
14035 }
14036 llvm_unreachable("Invalid operand size!");
14037}
14038
14039// Get opcode of the non-atomic one from the specified atomic instruction.
14040static unsigned getNonAtomicOpcode(unsigned Opc) {
14041 switch (Opc) {
14042 case X86::ATOMAND8: return X86::AND8rr;
14043 case X86::ATOMAND16: return X86::AND16rr;
14044 case X86::ATOMAND32: return X86::AND32rr;
14045 case X86::ATOMAND64: return X86::AND64rr;
14046 case X86::ATOMOR8: return X86::OR8rr;
14047 case X86::ATOMOR16: return X86::OR16rr;
14048 case X86::ATOMOR32: return X86::OR32rr;
14049 case X86::ATOMOR64: return X86::OR64rr;
14050 case X86::ATOMXOR8: return X86::XOR8rr;
14051 case X86::ATOMXOR16: return X86::XOR16rr;
14052 case X86::ATOMXOR32: return X86::XOR32rr;
14053 case X86::ATOMXOR64: return X86::XOR64rr;
14054 }
14055 llvm_unreachable("Unhandled atomic-load-op opcode!");
14056}
14057
14058// Get opcode of the non-atomic one from the specified atomic instruction with
14059// extra opcode.
14060static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14061 unsigned &ExtraOpc) {
14062 switch (Opc) {
14063 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14064 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14065 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14066 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014067 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014068 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14069 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14070 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014071 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014072 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14073 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14074 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014075 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014076 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14077 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14078 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014079 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014080 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14081 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14082 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14083 }
14084 llvm_unreachable("Unhandled atomic-load-op opcode!");
14085}
14086
14087// Get opcode of the non-atomic one from the specified atomic instruction for
14088// 64-bit data type on 32-bit target.
14089static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14090 switch (Opc) {
14091 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14092 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14093 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14094 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14095 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14096 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014097 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14098 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14099 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14100 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014101 }
14102 llvm_unreachable("Unhandled atomic-load-op opcode!");
14103}
14104
14105// Get opcode of the non-atomic one from the specified atomic instruction for
14106// 64-bit data type on 32-bit target with extra opcode.
14107static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14108 unsigned &HiOpc,
14109 unsigned &ExtraOpc) {
14110 switch (Opc) {
14111 case X86::ATOMNAND6432:
14112 ExtraOpc = X86::NOT32r;
14113 HiOpc = X86::AND32rr;
14114 return X86::AND32rr;
14115 }
14116 llvm_unreachable("Unhandled atomic-load-op opcode!");
14117}
14118
14119// Get pseudo CMOV opcode from the specified data type.
14120static unsigned getPseudoCMOVOpc(EVT VT) {
14121 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014122 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014123 case MVT::i16: return X86::CMOV_GR16;
14124 case MVT::i32: return X86::CMOV_GR32;
14125 default:
14126 break;
14127 }
14128 llvm_unreachable("Unknown CMOV opcode!");
14129}
14130
14131// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14132// They will be translated into a spin-loop or compare-exchange loop from
14133//
14134// ...
14135// dst = atomic-fetch-op MI.addr, MI.val
14136// ...
14137//
14138// to
14139//
14140// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014141// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014142// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014143// t4 = phi(t1, t3 / loop)
14144// t2 = OP MI.val, t4
14145// EAX = t4
14146// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14147// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014148// JNE loop
14149// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014150// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014151// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014152MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014153X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14154 MachineBasicBlock *MBB) const {
14155 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14156 DebugLoc DL = MI->getDebugLoc();
14157
14158 MachineFunction *MF = MBB->getParent();
14159 MachineRegisterInfo &MRI = MF->getRegInfo();
14160
14161 const BasicBlock *BB = MBB->getBasicBlock();
14162 MachineFunction::iterator I = MBB;
14163 ++I;
14164
Michael Liao13d08bf2013-01-22 21:47:38 +000014165 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014166 "Unexpected number of operands");
14167
14168 assert(MI->hasOneMemOperand() &&
14169 "Expected atomic-load-op to have one memoperand");
14170
14171 // Memory Reference
14172 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14173 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14174
14175 unsigned DstReg, SrcReg;
14176 unsigned MemOpndSlot;
14177
14178 unsigned CurOp = 0;
14179
14180 DstReg = MI->getOperand(CurOp++).getReg();
14181 MemOpndSlot = CurOp;
14182 CurOp += X86::AddrNumOperands;
14183 SrcReg = MI->getOperand(CurOp++).getReg();
14184
14185 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014186 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014187 unsigned t1 = MRI.createVirtualRegister(RC);
14188 unsigned t2 = MRI.createVirtualRegister(RC);
14189 unsigned t3 = MRI.createVirtualRegister(RC);
14190 unsigned t4 = MRI.createVirtualRegister(RC);
14191 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014192
14193 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14194 unsigned LOADOpc = getLoadOpcode(VT);
14195
14196 // For the atomic load-arith operator, we generate
14197 //
14198 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014199 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014200 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014201 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014202 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014203 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014204 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014205 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014206 // JNE mainMBB
14207 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014208 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014209
14210 MachineBasicBlock *thisMBB = MBB;
14211 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14212 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14213 MF->insert(I, mainMBB);
14214 MF->insert(I, sinkMBB);
14215
14216 MachineInstrBuilder MIB;
14217
14218 // Transfer the remainder of BB and its successor edges to sinkMBB.
14219 sinkMBB->splice(sinkMBB->begin(), MBB,
14220 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14221 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14222
14223 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014224 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14225 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14226 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14227 if (NewMO.isReg())
14228 NewMO.setIsKill(false);
14229 MIB.addOperand(NewMO);
14230 }
14231 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14232 unsigned flags = (*MMOI)->getFlags();
14233 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14234 MachineMemOperand *MMO =
14235 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14236 (*MMOI)->getSize(),
14237 (*MMOI)->getBaseAlignment(),
14238 (*MMOI)->getTBAAInfo(),
14239 (*MMOI)->getRanges());
14240 MIB.addMemOperand(MMO);
14241 }
Michael Liaob118a072012-09-20 03:06:15 +000014242
14243 thisMBB->addSuccessor(mainMBB);
14244
14245 // mainMBB:
14246 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014247
Michael Liaoc537f792013-03-06 00:17:04 +000014248 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014249 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14250 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014251
Michael Liaob118a072012-09-20 03:06:15 +000014252 unsigned Opc = MI->getOpcode();
14253 switch (Opc) {
14254 default:
14255 llvm_unreachable("Unhandled atomic-load-op opcode!");
14256 case X86::ATOMAND8:
14257 case X86::ATOMAND16:
14258 case X86::ATOMAND32:
14259 case X86::ATOMAND64:
14260 case X86::ATOMOR8:
14261 case X86::ATOMOR16:
14262 case X86::ATOMOR32:
14263 case X86::ATOMOR64:
14264 case X86::ATOMXOR8:
14265 case X86::ATOMXOR16:
14266 case X86::ATOMXOR32:
14267 case X86::ATOMXOR64: {
14268 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014269 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14270 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014271 break;
14272 }
14273 case X86::ATOMNAND8:
14274 case X86::ATOMNAND16:
14275 case X86::ATOMNAND32:
14276 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014277 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014278 unsigned NOTOpc;
14279 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014280 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14281 .addReg(t4);
14282 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014283 break;
14284 }
Michael Liao08382492012-09-21 03:00:17 +000014285 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014286 case X86::ATOMMAX16:
14287 case X86::ATOMMAX32:
14288 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014289 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014290 case X86::ATOMMIN16:
14291 case X86::ATOMMIN32:
14292 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014293 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014294 case X86::ATOMUMAX16:
14295 case X86::ATOMUMAX32:
14296 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014297 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014298 case X86::ATOMUMIN16:
14299 case X86::ATOMUMIN32:
14300 case X86::ATOMUMIN64: {
14301 unsigned CMPOpc;
14302 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14303
14304 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14305 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014306 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014307
14308 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014309 if (VT != MVT::i8) {
14310 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014311 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014312 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014313 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014314 } else {
14315 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014316 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14317 const TargetRegisterClass *RC32 =
14318 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014319 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14320 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014321 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014322
14323 unsigned Undef = MRI.createVirtualRegister(RC32);
14324 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14325
14326 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14327 .addReg(Undef)
14328 .addReg(SrcReg)
14329 .addImm(X86::sub_8bit);
14330 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14331 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014332 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014333 .addImm(X86::sub_8bit);
14334
Michael Liaoc537f792013-03-06 00:17:04 +000014335 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014336 .addReg(SrcReg32)
14337 .addReg(AccReg32);
14338
Michael Liaoc537f792013-03-06 00:17:04 +000014339 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14340 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014341 }
Michael Liaob118a072012-09-20 03:06:15 +000014342 } else {
14343 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014344 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014345 "Invalid atomic-load-op transformation!");
14346 unsigned SelOpc = getPseudoCMOVOpc(VT);
14347 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14348 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014349 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14350 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014351 .addImm(CC);
14352 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014353 // Replace the original PHI node as mainMBB is changed after CMOV
14354 // lowering.
14355 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14356 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14357 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014358 }
14359 break;
14360 }
14361 }
14362
Michael Liaoc537f792013-03-06 00:17:04 +000014363 // Copy PhyReg back from virtual register.
14364 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14365 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014366
14367 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014368 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14369 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14370 if (NewMO.isReg())
14371 NewMO.setIsKill(false);
14372 MIB.addOperand(NewMO);
14373 }
14374 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014375 MIB.setMemRefs(MMOBegin, MMOEnd);
14376
Michael Liaoc537f792013-03-06 00:17:04 +000014377 // Copy PhyReg back to virtual register.
14378 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14379 .addReg(PhyReg);
14380
Michael Liaob118a072012-09-20 03:06:15 +000014381 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14382
14383 mainMBB->addSuccessor(origMainMBB);
14384 mainMBB->addSuccessor(sinkMBB);
14385
14386 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014387 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14388 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014389 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014390
14391 MI->eraseFromParent();
14392 return sinkMBB;
14393}
14394
14395// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14396// instructions. They will be translated into a spin-loop or compare-exchange
14397// loop from
14398//
14399// ...
14400// dst = atomic-fetch-op MI.addr, MI.val
14401// ...
14402//
14403// to
14404//
14405// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014406// t1L = LOAD [MI.addr + 0]
14407// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014408// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014409// t4L = phi(t1L, t3L / loop)
14410// t4H = phi(t1H, t3H / loop)
14411// t2L = OP MI.val.lo, t4L
14412// t2H = OP MI.val.hi, t4H
14413// EAX = t4L
14414// EDX = t4H
14415// EBX = t2L
14416// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014417// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014418// t3L = EAX
14419// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014420// JNE loop
14421// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014422// dstL = t3L
14423// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014424// ...
14425MachineBasicBlock *
14426X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14427 MachineBasicBlock *MBB) const {
14428 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14429 DebugLoc DL = MI->getDebugLoc();
14430
14431 MachineFunction *MF = MBB->getParent();
14432 MachineRegisterInfo &MRI = MF->getRegInfo();
14433
14434 const BasicBlock *BB = MBB->getBasicBlock();
14435 MachineFunction::iterator I = MBB;
14436 ++I;
14437
Michael Liao13d08bf2013-01-22 21:47:38 +000014438 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014439 "Unexpected number of operands");
14440
14441 assert(MI->hasOneMemOperand() &&
14442 "Expected atomic-load-op32 to have one memoperand");
14443
14444 // Memory Reference
14445 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14446 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14447
14448 unsigned DstLoReg, DstHiReg;
14449 unsigned SrcLoReg, SrcHiReg;
14450 unsigned MemOpndSlot;
14451
14452 unsigned CurOp = 0;
14453
14454 DstLoReg = MI->getOperand(CurOp++).getReg();
14455 DstHiReg = MI->getOperand(CurOp++).getReg();
14456 MemOpndSlot = CurOp;
14457 CurOp += X86::AddrNumOperands;
14458 SrcLoReg = MI->getOperand(CurOp++).getReg();
14459 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014460
Craig Topperc9099502012-04-20 06:31:50 +000014461 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014462 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014463
Michael Liaoc537f792013-03-06 00:17:04 +000014464 unsigned t1L = MRI.createVirtualRegister(RC);
14465 unsigned t1H = MRI.createVirtualRegister(RC);
14466 unsigned t2L = MRI.createVirtualRegister(RC);
14467 unsigned t2H = MRI.createVirtualRegister(RC);
14468 unsigned t3L = MRI.createVirtualRegister(RC);
14469 unsigned t3H = MRI.createVirtualRegister(RC);
14470 unsigned t4L = MRI.createVirtualRegister(RC);
14471 unsigned t4H = MRI.createVirtualRegister(RC);
14472
Michael Liaob118a072012-09-20 03:06:15 +000014473 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14474 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014475
Michael Liaob118a072012-09-20 03:06:15 +000014476 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014477 //
Michael Liaob118a072012-09-20 03:06:15 +000014478 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014479 // t1L = LOAD [MI.addr + 0]
14480 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014481 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014482 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14483 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14484 // t2L = OP MI.val.lo, t4L
14485 // t2H = OP MI.val.hi, t4H
14486 // EBX = t2L
14487 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014488 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014489 // t3L = EAX
14490 // t3H = EDX
14491 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014492 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014493 // dstL = t3L
14494 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014495
Mon P Wang63307c32008-05-05 19:05:59 +000014496 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014497 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14498 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14499 MF->insert(I, mainMBB);
14500 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014501
Michael Liaob118a072012-09-20 03:06:15 +000014502 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014503
Michael Liaob118a072012-09-20 03:06:15 +000014504 // Transfer the remainder of BB and its successor edges to sinkMBB.
14505 sinkMBB->splice(sinkMBB->begin(), MBB,
14506 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14507 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014508
Michael Liaob118a072012-09-20 03:06:15 +000014509 // thisMBB:
14510 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014511 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014512 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014513 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14514 if (NewMO.isReg())
14515 NewMO.setIsKill(false);
14516 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014517 }
Michael Liaoc537f792013-03-06 00:17:04 +000014518 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14519 unsigned flags = (*MMOI)->getFlags();
14520 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14521 MachineMemOperand *MMO =
14522 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14523 (*MMOI)->getSize(),
14524 (*MMOI)->getBaseAlignment(),
14525 (*MMOI)->getTBAAInfo(),
14526 (*MMOI)->getRanges());
14527 MIB.addMemOperand(MMO);
14528 };
14529 MachineInstr *LowMI = MIB;
14530
14531 // Hi
14532 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14533 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14534 if (i == X86::AddrDisp) {
14535 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14536 } else {
14537 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14538 if (NewMO.isReg())
14539 NewMO.setIsKill(false);
14540 MIB.addOperand(NewMO);
14541 }
14542 }
14543 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014544
Michael Liaob118a072012-09-20 03:06:15 +000014545 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014546
Michael Liaob118a072012-09-20 03:06:15 +000014547 // mainMBB:
14548 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014549
Michael Liaoc537f792013-03-06 00:17:04 +000014550 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014551 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14552 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14553 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14554 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014555
Michael Liaob118a072012-09-20 03:06:15 +000014556 unsigned Opc = MI->getOpcode();
14557 switch (Opc) {
14558 default:
14559 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14560 case X86::ATOMAND6432:
14561 case X86::ATOMOR6432:
14562 case X86::ATOMXOR6432:
14563 case X86::ATOMADD6432:
14564 case X86::ATOMSUB6432: {
14565 unsigned HiOpc;
14566 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014567 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14568 .addReg(SrcLoReg);
14569 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14570 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014571 break;
14572 }
14573 case X86::ATOMNAND6432: {
14574 unsigned HiOpc, NOTOpc;
14575 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014576 unsigned TmpL = MRI.createVirtualRegister(RC);
14577 unsigned TmpH = MRI.createVirtualRegister(RC);
14578 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14579 .addReg(t4L);
14580 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14581 .addReg(t4H);
14582 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14583 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014584 break;
14585 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014586 case X86::ATOMMAX6432:
14587 case X86::ATOMMIN6432:
14588 case X86::ATOMUMAX6432:
14589 case X86::ATOMUMIN6432: {
14590 unsigned HiOpc;
14591 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14592 unsigned cL = MRI.createVirtualRegister(RC8);
14593 unsigned cH = MRI.createVirtualRegister(RC8);
14594 unsigned cL32 = MRI.createVirtualRegister(RC);
14595 unsigned cH32 = MRI.createVirtualRegister(RC);
14596 unsigned cc = MRI.createVirtualRegister(RC);
14597 // cl := cmp src_lo, lo
14598 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014599 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014600 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14601 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14602 // ch := cmp src_hi, hi
14603 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014604 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014605 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14606 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14607 // cc := if (src_hi == hi) ? cl : ch;
14608 if (Subtarget->hasCMov()) {
14609 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14610 .addReg(cH32).addReg(cL32);
14611 } else {
14612 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14613 .addReg(cH32).addReg(cL32)
14614 .addImm(X86::COND_E);
14615 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14616 }
14617 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14618 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014619 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14620 .addReg(SrcLoReg).addReg(t4L);
14621 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14622 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014623 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014624 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14625 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014626 .addImm(X86::COND_NE);
14627 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014628 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14629 // 2nd CMOV lowering.
14630 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014631 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14632 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014633 .addImm(X86::COND_NE);
14634 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014635 // Replace the original PHI node as mainMBB is changed after CMOV
14636 // lowering.
14637 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14638 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14639 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14640 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14641 PhiL->eraseFromParent();
14642 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014643 }
14644 break;
14645 }
Michael Liaob118a072012-09-20 03:06:15 +000014646 case X86::ATOMSWAP6432: {
14647 unsigned HiOpc;
14648 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014649 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14650 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014651 break;
14652 }
14653 }
Mon P Wang63307c32008-05-05 19:05:59 +000014654
Michael Liaob118a072012-09-20 03:06:15 +000014655 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014656 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14657 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014658 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014659 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14660 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014661
Michael Liaob118a072012-09-20 03:06:15 +000014662 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014663 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14664 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14665 if (NewMO.isReg())
14666 NewMO.setIsKill(false);
14667 MIB.addOperand(NewMO);
14668 }
Michael Liaob118a072012-09-20 03:06:15 +000014669 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014670
Michael Liaoc537f792013-03-06 00:17:04 +000014671 // Copy EDX:EAX back to t3H:t3L
14672 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14673 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14674
Michael Liaob118a072012-09-20 03:06:15 +000014675 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014676
Michael Liaob118a072012-09-20 03:06:15 +000014677 mainMBB->addSuccessor(origMainMBB);
14678 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014679
Michael Liaob118a072012-09-20 03:06:15 +000014680 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014681 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14682 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014683 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014684 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14685 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014686 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014687
Michael Liaob118a072012-09-20 03:06:15 +000014688 MI->eraseFromParent();
14689 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014690}
14691
Eric Christopherf83a5de2009-08-27 18:08:16 +000014692// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014693// or XMM0_V32I8 in AVX all of this code can be replaced with that
14694// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014695static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14696 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014697 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014698 switch (MI->getOpcode()) {
14699 default: llvm_unreachable("illegal opcode!");
14700 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14701 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14702 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14703 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14704 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14705 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14706 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14707 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014708 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014709
Craig Topper8aae8dd2012-11-10 08:57:41 +000014710 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014711 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014712
Craig Topper52ea2452012-11-10 09:25:36 +000014713 unsigned NumArgs = MI->getNumOperands();
14714 for (unsigned i = 1; i < NumArgs; ++i) {
14715 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014716 if (!(Op.isReg() && Op.isImplicit()))
14717 MIB.addOperand(Op);
14718 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014719 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014720 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14721
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014722 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014723 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014724 .addReg(X86::XMM0);
14725
Dan Gohman14152b42010-07-06 20:24:04 +000014726 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014727 return BB;
14728}
14729
Craig Topper9c7ae012012-11-10 01:23:36 +000014730// FIXME: Custom handling because TableGen doesn't support multiple implicit
14731// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014732static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14733 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014734 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014735 switch (MI->getOpcode()) {
14736 default: llvm_unreachable("illegal opcode!");
14737 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14738 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14739 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14740 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14741 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14742 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14743 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14744 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014745 }
14746
Craig Topper8aae8dd2012-11-10 08:57:41 +000014747 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014748 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014749
Craig Topper52ea2452012-11-10 09:25:36 +000014750 unsigned NumArgs = MI->getNumOperands(); // remove the results
14751 for (unsigned i = 1; i < NumArgs; ++i) {
14752 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014753 if (!(Op.isReg() && Op.isImplicit()))
14754 MIB.addOperand(Op);
14755 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014756 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014757 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14758
14759 BuildMI(*BB, MI, dl,
14760 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14761 .addReg(X86::ECX);
14762
14763 MI->eraseFromParent();
14764 return BB;
14765}
14766
Craig Topper2da36912012-11-11 22:45:02 +000014767static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14768 const TargetInstrInfo *TII,
14769 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014770 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014771
Eric Christopher228232b2010-11-30 07:20:12 +000014772 // Address into RAX/EAX, other two args into ECX, EDX.
14773 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14774 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14775 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14776 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014777 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014778
Eric Christopher228232b2010-11-30 07:20:12 +000014779 unsigned ValOps = X86::AddrNumOperands;
14780 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14781 .addReg(MI->getOperand(ValOps).getReg());
14782 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14783 .addReg(MI->getOperand(ValOps+1).getReg());
14784
14785 // The instruction doesn't actually take any operands though.
14786 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014787
Eric Christopher228232b2010-11-30 07:20:12 +000014788 MI->eraseFromParent(); // The pseudo is gone now.
14789 return BB;
14790}
14791
14792MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014793X86TargetLowering::EmitVAARG64WithCustomInserter(
14794 MachineInstr *MI,
14795 MachineBasicBlock *MBB) const {
14796 // Emit va_arg instruction on X86-64.
14797
14798 // Operands to this pseudo-instruction:
14799 // 0 ) Output : destination address (reg)
14800 // 1-5) Input : va_list address (addr, i64mem)
14801 // 6 ) ArgSize : Size (in bytes) of vararg type
14802 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14803 // 8 ) Align : Alignment of type
14804 // 9 ) EFLAGS (implicit-def)
14805
14806 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14807 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14808
14809 unsigned DestReg = MI->getOperand(0).getReg();
14810 MachineOperand &Base = MI->getOperand(1);
14811 MachineOperand &Scale = MI->getOperand(2);
14812 MachineOperand &Index = MI->getOperand(3);
14813 MachineOperand &Disp = MI->getOperand(4);
14814 MachineOperand &Segment = MI->getOperand(5);
14815 unsigned ArgSize = MI->getOperand(6).getImm();
14816 unsigned ArgMode = MI->getOperand(7).getImm();
14817 unsigned Align = MI->getOperand(8).getImm();
14818
14819 // Memory Reference
14820 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14821 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14822 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14823
14824 // Machine Information
14825 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14826 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14827 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14828 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14829 DebugLoc DL = MI->getDebugLoc();
14830
14831 // struct va_list {
14832 // i32 gp_offset
14833 // i32 fp_offset
14834 // i64 overflow_area (address)
14835 // i64 reg_save_area (address)
14836 // }
14837 // sizeof(va_list) = 24
14838 // alignment(va_list) = 8
14839
14840 unsigned TotalNumIntRegs = 6;
14841 unsigned TotalNumXMMRegs = 8;
14842 bool UseGPOffset = (ArgMode == 1);
14843 bool UseFPOffset = (ArgMode == 2);
14844 unsigned MaxOffset = TotalNumIntRegs * 8 +
14845 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14846
14847 /* Align ArgSize to a multiple of 8 */
14848 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14849 bool NeedsAlign = (Align > 8);
14850
14851 MachineBasicBlock *thisMBB = MBB;
14852 MachineBasicBlock *overflowMBB;
14853 MachineBasicBlock *offsetMBB;
14854 MachineBasicBlock *endMBB;
14855
14856 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14857 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14858 unsigned OffsetReg = 0;
14859
14860 if (!UseGPOffset && !UseFPOffset) {
14861 // If we only pull from the overflow region, we don't create a branch.
14862 // We don't need to alter control flow.
14863 OffsetDestReg = 0; // unused
14864 OverflowDestReg = DestReg;
14865
14866 offsetMBB = NULL;
14867 overflowMBB = thisMBB;
14868 endMBB = thisMBB;
14869 } else {
14870 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14871 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14872 // If not, pull from overflow_area. (branch to overflowMBB)
14873 //
14874 // thisMBB
14875 // | .
14876 // | .
14877 // offsetMBB overflowMBB
14878 // | .
14879 // | .
14880 // endMBB
14881
14882 // Registers for the PHI in endMBB
14883 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14884 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14885
14886 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14887 MachineFunction *MF = MBB->getParent();
14888 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14889 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14890 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14891
14892 MachineFunction::iterator MBBIter = MBB;
14893 ++MBBIter;
14894
14895 // Insert the new basic blocks
14896 MF->insert(MBBIter, offsetMBB);
14897 MF->insert(MBBIter, overflowMBB);
14898 MF->insert(MBBIter, endMBB);
14899
14900 // Transfer the remainder of MBB and its successor edges to endMBB.
14901 endMBB->splice(endMBB->begin(), thisMBB,
14902 llvm::next(MachineBasicBlock::iterator(MI)),
14903 thisMBB->end());
14904 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14905
14906 // Make offsetMBB and overflowMBB successors of thisMBB
14907 thisMBB->addSuccessor(offsetMBB);
14908 thisMBB->addSuccessor(overflowMBB);
14909
14910 // endMBB is a successor of both offsetMBB and overflowMBB
14911 offsetMBB->addSuccessor(endMBB);
14912 overflowMBB->addSuccessor(endMBB);
14913
14914 // Load the offset value into a register
14915 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14916 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14917 .addOperand(Base)
14918 .addOperand(Scale)
14919 .addOperand(Index)
14920 .addDisp(Disp, UseFPOffset ? 4 : 0)
14921 .addOperand(Segment)
14922 .setMemRefs(MMOBegin, MMOEnd);
14923
14924 // Check if there is enough room left to pull this argument.
14925 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14926 .addReg(OffsetReg)
14927 .addImm(MaxOffset + 8 - ArgSizeA8);
14928
14929 // Branch to "overflowMBB" if offset >= max
14930 // Fall through to "offsetMBB" otherwise
14931 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14932 .addMBB(overflowMBB);
14933 }
14934
14935 // In offsetMBB, emit code to use the reg_save_area.
14936 if (offsetMBB) {
14937 assert(OffsetReg != 0);
14938
14939 // Read the reg_save_area address.
14940 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14941 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14942 .addOperand(Base)
14943 .addOperand(Scale)
14944 .addOperand(Index)
14945 .addDisp(Disp, 16)
14946 .addOperand(Segment)
14947 .setMemRefs(MMOBegin, MMOEnd);
14948
14949 // Zero-extend the offset
14950 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14951 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14952 .addImm(0)
14953 .addReg(OffsetReg)
14954 .addImm(X86::sub_32bit);
14955
14956 // Add the offset to the reg_save_area to get the final address.
14957 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
14958 .addReg(OffsetReg64)
14959 .addReg(RegSaveReg);
14960
14961 // Compute the offset for the next argument
14962 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14963 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
14964 .addReg(OffsetReg)
14965 .addImm(UseFPOffset ? 16 : 8);
14966
14967 // Store it back into the va_list.
14968 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
14969 .addOperand(Base)
14970 .addOperand(Scale)
14971 .addOperand(Index)
14972 .addDisp(Disp, UseFPOffset ? 4 : 0)
14973 .addOperand(Segment)
14974 .addReg(NextOffsetReg)
14975 .setMemRefs(MMOBegin, MMOEnd);
14976
14977 // Jump to endMBB
14978 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
14979 .addMBB(endMBB);
14980 }
14981
14982 //
14983 // Emit code to use overflow area
14984 //
14985
14986 // Load the overflow_area address into a register.
14987 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
14988 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
14989 .addOperand(Base)
14990 .addOperand(Scale)
14991 .addOperand(Index)
14992 .addDisp(Disp, 8)
14993 .addOperand(Segment)
14994 .setMemRefs(MMOBegin, MMOEnd);
14995
14996 // If we need to align it, do so. Otherwise, just copy the address
14997 // to OverflowDestReg.
14998 if (NeedsAlign) {
14999 // Align the overflow address
15000 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15001 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15002
15003 // aligned_addr = (addr + (align-1)) & ~(align-1)
15004 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15005 .addReg(OverflowAddrReg)
15006 .addImm(Align-1);
15007
15008 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15009 .addReg(TmpReg)
15010 .addImm(~(uint64_t)(Align-1));
15011 } else {
15012 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15013 .addReg(OverflowAddrReg);
15014 }
15015
15016 // Compute the next overflow address after this argument.
15017 // (the overflow address should be kept 8-byte aligned)
15018 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15019 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15020 .addReg(OverflowDestReg)
15021 .addImm(ArgSizeA8);
15022
15023 // Store the new overflow address.
15024 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15025 .addOperand(Base)
15026 .addOperand(Scale)
15027 .addOperand(Index)
15028 .addDisp(Disp, 8)
15029 .addOperand(Segment)
15030 .addReg(NextAddrReg)
15031 .setMemRefs(MMOBegin, MMOEnd);
15032
15033 // If we branched, emit the PHI to the front of endMBB.
15034 if (offsetMBB) {
15035 BuildMI(*endMBB, endMBB->begin(), DL,
15036 TII->get(X86::PHI), DestReg)
15037 .addReg(OffsetDestReg).addMBB(offsetMBB)
15038 .addReg(OverflowDestReg).addMBB(overflowMBB);
15039 }
15040
15041 // Erase the pseudo instruction
15042 MI->eraseFromParent();
15043
15044 return endMBB;
15045}
15046
15047MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015048X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15049 MachineInstr *MI,
15050 MachineBasicBlock *MBB) const {
15051 // Emit code to save XMM registers to the stack. The ABI says that the
15052 // number of registers to save is given in %al, so it's theoretically
15053 // possible to do an indirect jump trick to avoid saving all of them,
15054 // however this code takes a simpler approach and just executes all
15055 // of the stores if %al is non-zero. It's less code, and it's probably
15056 // easier on the hardware branch predictor, and stores aren't all that
15057 // expensive anyway.
15058
15059 // Create the new basic blocks. One block contains all the XMM stores,
15060 // and one block is the final destination regardless of whether any
15061 // stores were performed.
15062 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15063 MachineFunction *F = MBB->getParent();
15064 MachineFunction::iterator MBBIter = MBB;
15065 ++MBBIter;
15066 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15067 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15068 F->insert(MBBIter, XMMSaveMBB);
15069 F->insert(MBBIter, EndMBB);
15070
Dan Gohman14152b42010-07-06 20:24:04 +000015071 // Transfer the remainder of MBB and its successor edges to EndMBB.
15072 EndMBB->splice(EndMBB->begin(), MBB,
15073 llvm::next(MachineBasicBlock::iterator(MI)),
15074 MBB->end());
15075 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15076
Dan Gohmand6708ea2009-08-15 01:38:56 +000015077 // The original block will now fall through to the XMM save block.
15078 MBB->addSuccessor(XMMSaveMBB);
15079 // The XMMSaveMBB will fall through to the end block.
15080 XMMSaveMBB->addSuccessor(EndMBB);
15081
15082 // Now add the instructions.
15083 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15084 DebugLoc DL = MI->getDebugLoc();
15085
15086 unsigned CountReg = MI->getOperand(0).getReg();
15087 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15088 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15089
15090 if (!Subtarget->isTargetWin64()) {
15091 // If %al is 0, branch around the XMM save block.
15092 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015093 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015094 MBB->addSuccessor(EndMBB);
15095 }
15096
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015097 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015098 // In the XMM save block, save all the XMM argument registers.
15099 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15100 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015101 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015102 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015103 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015104 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015105 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015106 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015107 .addFrameIndex(RegSaveFrameIndex)
15108 .addImm(/*Scale=*/1)
15109 .addReg(/*IndexReg=*/0)
15110 .addImm(/*Disp=*/Offset)
15111 .addReg(/*Segment=*/0)
15112 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015113 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015114 }
15115
Dan Gohman14152b42010-07-06 20:24:04 +000015116 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015117
15118 return EndMBB;
15119}
Mon P Wang63307c32008-05-05 19:05:59 +000015120
Lang Hames6e3f7e42012-02-03 01:13:49 +000015121// The EFLAGS operand of SelectItr might be missing a kill marker
15122// because there were multiple uses of EFLAGS, and ISel didn't know
15123// which to mark. Figure out whether SelectItr should have had a
15124// kill marker, and set it if it should. Returns the correct kill
15125// marker value.
15126static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15127 MachineBasicBlock* BB,
15128 const TargetRegisterInfo* TRI) {
15129 // Scan forward through BB for a use/def of EFLAGS.
15130 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15131 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015132 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015133 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015134 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015135 if (mi.definesRegister(X86::EFLAGS))
15136 break; // Should have kill-flag - update below.
15137 }
15138
15139 // If we hit the end of the block, check whether EFLAGS is live into a
15140 // successor.
15141 if (miI == BB->end()) {
15142 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15143 sEnd = BB->succ_end();
15144 sItr != sEnd; ++sItr) {
15145 MachineBasicBlock* succ = *sItr;
15146 if (succ->isLiveIn(X86::EFLAGS))
15147 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015148 }
15149 }
15150
Lang Hames6e3f7e42012-02-03 01:13:49 +000015151 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15152 // out. SelectMI should have a kill flag on EFLAGS.
15153 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015154 return true;
15155}
15156
Evan Cheng60c07e12006-07-05 22:17:51 +000015157MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015158X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015159 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015160 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15161 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015162
Chris Lattner52600972009-09-02 05:57:00 +000015163 // To "insert" a SELECT_CC instruction, we actually have to insert the
15164 // diamond control-flow pattern. The incoming instruction knows the
15165 // destination vreg to set, the condition code register to branch on, the
15166 // true/false values to select between, and a branch opcode to use.
15167 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15168 MachineFunction::iterator It = BB;
15169 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015170
Chris Lattner52600972009-09-02 05:57:00 +000015171 // thisMBB:
15172 // ...
15173 // TrueVal = ...
15174 // cmpTY ccX, r1, r2
15175 // bCC copy1MBB
15176 // fallthrough --> copy0MBB
15177 MachineBasicBlock *thisMBB = BB;
15178 MachineFunction *F = BB->getParent();
15179 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15180 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015181 F->insert(It, copy0MBB);
15182 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015183
Bill Wendling730c07e2010-06-25 20:48:10 +000015184 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15185 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015186 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15187 if (!MI->killsRegister(X86::EFLAGS) &&
15188 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15189 copy0MBB->addLiveIn(X86::EFLAGS);
15190 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015191 }
15192
Dan Gohman14152b42010-07-06 20:24:04 +000015193 // Transfer the remainder of BB and its successor edges to sinkMBB.
15194 sinkMBB->splice(sinkMBB->begin(), BB,
15195 llvm::next(MachineBasicBlock::iterator(MI)),
15196 BB->end());
15197 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15198
15199 // Add the true and fallthrough blocks as its successors.
15200 BB->addSuccessor(copy0MBB);
15201 BB->addSuccessor(sinkMBB);
15202
15203 // Create the conditional branch instruction.
15204 unsigned Opc =
15205 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15206 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15207
Chris Lattner52600972009-09-02 05:57:00 +000015208 // copy0MBB:
15209 // %FalseValue = ...
15210 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015211 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015212
Chris Lattner52600972009-09-02 05:57:00 +000015213 // sinkMBB:
15214 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15215 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015216 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15217 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015218 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15219 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15220
Dan Gohman14152b42010-07-06 20:24:04 +000015221 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015222 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015223}
15224
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015225MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015226X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15227 bool Is64Bit) const {
15228 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15229 DebugLoc DL = MI->getDebugLoc();
15230 MachineFunction *MF = BB->getParent();
15231 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15232
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015233 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015234
15235 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15236 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15237
15238 // BB:
15239 // ... [Till the alloca]
15240 // If stacklet is not large enough, jump to mallocMBB
15241 //
15242 // bumpMBB:
15243 // Allocate by subtracting from RSP
15244 // Jump to continueMBB
15245 //
15246 // mallocMBB:
15247 // Allocate by call to runtime
15248 //
15249 // continueMBB:
15250 // ...
15251 // [rest of original BB]
15252 //
15253
15254 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15255 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15256 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15257
15258 MachineRegisterInfo &MRI = MF->getRegInfo();
15259 const TargetRegisterClass *AddrRegClass =
15260 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15261
15262 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15263 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15264 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015265 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015266 sizeVReg = MI->getOperand(1).getReg(),
15267 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15268
15269 MachineFunction::iterator MBBIter = BB;
15270 ++MBBIter;
15271
15272 MF->insert(MBBIter, bumpMBB);
15273 MF->insert(MBBIter, mallocMBB);
15274 MF->insert(MBBIter, continueMBB);
15275
15276 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15277 (MachineBasicBlock::iterator(MI)), BB->end());
15278 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15279
15280 // Add code to the main basic block to check if the stack limit has been hit,
15281 // and if so, jump to mallocMBB otherwise to bumpMBB.
15282 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015283 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015284 .addReg(tmpSPVReg).addReg(sizeVReg);
15285 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015286 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015287 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015288 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15289
15290 // bumpMBB simply decreases the stack pointer, since we know the current
15291 // stacklet has enough space.
15292 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015293 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015294 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015295 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015296 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15297
15298 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015299 const uint32_t *RegMask =
15300 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015301 if (Is64Bit) {
15302 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15303 .addReg(sizeVReg);
15304 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015305 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015306 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015307 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015308 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015309 } else {
15310 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15311 .addImm(12);
15312 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15313 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015314 .addExternalSymbol("__morestack_allocate_stack_space")
15315 .addRegMask(RegMask)
15316 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015317 }
15318
15319 if (!Is64Bit)
15320 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15321 .addImm(16);
15322
15323 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15324 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15325 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15326
15327 // Set up the CFG correctly.
15328 BB->addSuccessor(bumpMBB);
15329 BB->addSuccessor(mallocMBB);
15330 mallocMBB->addSuccessor(continueMBB);
15331 bumpMBB->addSuccessor(continueMBB);
15332
15333 // Take care of the PHI nodes.
15334 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15335 MI->getOperand(0).getReg())
15336 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15337 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15338
15339 // Delete the original pseudo instruction.
15340 MI->eraseFromParent();
15341
15342 // And we're done.
15343 return continueMBB;
15344}
15345
15346MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015347X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015348 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015349 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15350 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015351
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015352 assert(!Subtarget->isTargetEnvMacho());
15353
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015354 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15355 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015356
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015357 if (Subtarget->isTargetWin64()) {
15358 if (Subtarget->isTargetCygMing()) {
15359 // ___chkstk(Mingw64):
15360 // Clobbers R10, R11, RAX and EFLAGS.
15361 // Updates RSP.
15362 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15363 .addExternalSymbol("___chkstk")
15364 .addReg(X86::RAX, RegState::Implicit)
15365 .addReg(X86::RSP, RegState::Implicit)
15366 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15367 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15368 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15369 } else {
15370 // __chkstk(MSVCRT): does not update stack pointer.
15371 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015372 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15373 .addExternalSymbol("__chkstk")
15374 .addReg(X86::RAX, RegState::Implicit)
15375 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015376 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015377 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15378 .addReg(X86::RSP)
15379 .addReg(X86::RAX);
15380 }
15381 } else {
15382 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015383 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15384
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015385 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15386 .addExternalSymbol(StackProbeSymbol)
15387 .addReg(X86::EAX, RegState::Implicit)
15388 .addReg(X86::ESP, RegState::Implicit)
15389 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15390 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15391 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15392 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015393
Dan Gohman14152b42010-07-06 20:24:04 +000015394 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015395 return BB;
15396}
Chris Lattner52600972009-09-02 05:57:00 +000015397
15398MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015399X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15400 MachineBasicBlock *BB) const {
15401 // This is pretty easy. We're taking the value that we received from
15402 // our load from the relocation, sticking it in either RDI (x86-64)
15403 // or EAX and doing an indirect call. The return value will then
15404 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015405 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015406 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015407 DebugLoc DL = MI->getDebugLoc();
15408 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015409
15410 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015411 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015412
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015413 // Get a register mask for the lowered call.
15414 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15415 // proper register mask.
15416 const uint32_t *RegMask =
15417 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015418 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015419 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15420 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015421 .addReg(X86::RIP)
15422 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015423 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015424 MI->getOperand(3).getTargetFlags())
15425 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015426 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015427 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015428 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015429 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015430 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15431 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015432 .addReg(0)
15433 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015434 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015435 MI->getOperand(3).getTargetFlags())
15436 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015437 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015438 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015439 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015440 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015441 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15442 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015443 .addReg(TII->getGlobalBaseReg(F))
15444 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015445 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015446 MI->getOperand(3).getTargetFlags())
15447 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015448 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015449 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015450 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015451 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015452
Dan Gohman14152b42010-07-06 20:24:04 +000015453 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015454 return BB;
15455}
15456
15457MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015458X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15459 MachineBasicBlock *MBB) const {
15460 DebugLoc DL = MI->getDebugLoc();
15461 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15462
15463 MachineFunction *MF = MBB->getParent();
15464 MachineRegisterInfo &MRI = MF->getRegInfo();
15465
15466 const BasicBlock *BB = MBB->getBasicBlock();
15467 MachineFunction::iterator I = MBB;
15468 ++I;
15469
15470 // Memory Reference
15471 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15472 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15473
15474 unsigned DstReg;
15475 unsigned MemOpndSlot = 0;
15476
15477 unsigned CurOp = 0;
15478
15479 DstReg = MI->getOperand(CurOp++).getReg();
15480 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15481 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15482 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15483 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15484
15485 MemOpndSlot = CurOp;
15486
15487 MVT PVT = getPointerTy();
15488 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15489 "Invalid Pointer Size!");
15490
15491 // For v = setjmp(buf), we generate
15492 //
15493 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015494 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015495 // SjLjSetup restoreMBB
15496 //
15497 // mainMBB:
15498 // v_main = 0
15499 //
15500 // sinkMBB:
15501 // v = phi(main, restore)
15502 //
15503 // restoreMBB:
15504 // v_restore = 1
15505
15506 MachineBasicBlock *thisMBB = MBB;
15507 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15508 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15509 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15510 MF->insert(I, mainMBB);
15511 MF->insert(I, sinkMBB);
15512 MF->push_back(restoreMBB);
15513
15514 MachineInstrBuilder MIB;
15515
15516 // Transfer the remainder of BB and its successor edges to sinkMBB.
15517 sinkMBB->splice(sinkMBB->begin(), MBB,
15518 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15519 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15520
15521 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015522 unsigned PtrStoreOpc = 0;
15523 unsigned LabelReg = 0;
15524 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15525 Reloc::Model RM = getTargetMachine().getRelocationModel();
15526 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15527 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015528
Michael Liao281ae5a2012-10-17 02:22:27 +000015529 // Prepare IP either in reg or imm.
15530 if (!UseImmLabel) {
15531 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15532 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15533 LabelReg = MRI.createVirtualRegister(PtrRC);
15534 if (Subtarget->is64Bit()) {
15535 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15536 .addReg(X86::RIP)
15537 .addImm(0)
15538 .addReg(0)
15539 .addMBB(restoreMBB)
15540 .addReg(0);
15541 } else {
15542 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15543 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15544 .addReg(XII->getGlobalBaseReg(MF))
15545 .addImm(0)
15546 .addReg(0)
15547 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15548 .addReg(0);
15549 }
15550 } else
15551 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015552 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015553 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015554 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15555 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015556 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015557 else
15558 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15559 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015560 if (!UseImmLabel)
15561 MIB.addReg(LabelReg);
15562 else
15563 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015564 MIB.setMemRefs(MMOBegin, MMOEnd);
15565 // Setup
15566 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15567 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015568
15569 const X86RegisterInfo *RegInfo =
15570 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015571 MIB.addRegMask(RegInfo->getNoPreservedMask());
15572 thisMBB->addSuccessor(mainMBB);
15573 thisMBB->addSuccessor(restoreMBB);
15574
15575 // mainMBB:
15576 // EAX = 0
15577 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15578 mainMBB->addSuccessor(sinkMBB);
15579
15580 // sinkMBB:
15581 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15582 TII->get(X86::PHI), DstReg)
15583 .addReg(mainDstReg).addMBB(mainMBB)
15584 .addReg(restoreDstReg).addMBB(restoreMBB);
15585
15586 // restoreMBB:
15587 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15588 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15589 restoreMBB->addSuccessor(sinkMBB);
15590
15591 MI->eraseFromParent();
15592 return sinkMBB;
15593}
15594
15595MachineBasicBlock *
15596X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15597 MachineBasicBlock *MBB) const {
15598 DebugLoc DL = MI->getDebugLoc();
15599 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15600
15601 MachineFunction *MF = MBB->getParent();
15602 MachineRegisterInfo &MRI = MF->getRegInfo();
15603
15604 // Memory Reference
15605 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15606 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15607
15608 MVT PVT = getPointerTy();
15609 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15610 "Invalid Pointer Size!");
15611
15612 const TargetRegisterClass *RC =
15613 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15614 unsigned Tmp = MRI.createVirtualRegister(RC);
15615 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015616 const X86RegisterInfo *RegInfo =
15617 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015618 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15619 unsigned SP = RegInfo->getStackRegister();
15620
15621 MachineInstrBuilder MIB;
15622
Michael Liao281ae5a2012-10-17 02:22:27 +000015623 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15624 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015625
15626 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15627 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15628
15629 // Reload FP
15630 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15631 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15632 MIB.addOperand(MI->getOperand(i));
15633 MIB.setMemRefs(MMOBegin, MMOEnd);
15634 // Reload IP
15635 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15636 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15637 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015638 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015639 else
15640 MIB.addOperand(MI->getOperand(i));
15641 }
15642 MIB.setMemRefs(MMOBegin, MMOEnd);
15643 // Reload SP
15644 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15645 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15646 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015647 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015648 else
15649 MIB.addOperand(MI->getOperand(i));
15650 }
15651 MIB.setMemRefs(MMOBegin, MMOEnd);
15652 // Jump
15653 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15654
15655 MI->eraseFromParent();
15656 return MBB;
15657}
15658
15659MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015660X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015661 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015662 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015663 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015664 case X86::TAILJMPd64:
15665 case X86::TAILJMPr64:
15666 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015667 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015668 case X86::TCRETURNdi64:
15669 case X86::TCRETURNri64:
15670 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015671 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015672 case X86::WIN_ALLOCA:
15673 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015674 case X86::SEG_ALLOCA_32:
15675 return EmitLoweredSegAlloca(MI, BB, false);
15676 case X86::SEG_ALLOCA_64:
15677 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015678 case X86::TLSCall_32:
15679 case X86::TLSCall_64:
15680 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015681 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015682 case X86::CMOV_FR32:
15683 case X86::CMOV_FR64:
15684 case X86::CMOV_V4F32:
15685 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015686 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015687 case X86::CMOV_V8F32:
15688 case X86::CMOV_V4F64:
15689 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015690 case X86::CMOV_GR16:
15691 case X86::CMOV_GR32:
15692 case X86::CMOV_RFP32:
15693 case X86::CMOV_RFP64:
15694 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015695 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015696
Dale Johannesen849f2142007-07-03 00:53:03 +000015697 case X86::FP32_TO_INT16_IN_MEM:
15698 case X86::FP32_TO_INT32_IN_MEM:
15699 case X86::FP32_TO_INT64_IN_MEM:
15700 case X86::FP64_TO_INT16_IN_MEM:
15701 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015702 case X86::FP64_TO_INT64_IN_MEM:
15703 case X86::FP80_TO_INT16_IN_MEM:
15704 case X86::FP80_TO_INT32_IN_MEM:
15705 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015706 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15707 DebugLoc DL = MI->getDebugLoc();
15708
Evan Cheng60c07e12006-07-05 22:17:51 +000015709 // Change the floating point control register to use "round towards zero"
15710 // mode when truncating to an integer value.
15711 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015712 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015713 addFrameReference(BuildMI(*BB, MI, DL,
15714 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015715
15716 // Load the old value of the high byte of the control word...
15717 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015718 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015719 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015720 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015721
15722 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015723 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015724 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015725
15726 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015727 addFrameReference(BuildMI(*BB, MI, DL,
15728 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015729
15730 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015731 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015732 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015733
15734 // Get the X86 opcode to use.
15735 unsigned Opc;
15736 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015737 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015738 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15739 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15740 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15741 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15742 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15743 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015744 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15745 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15746 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015747 }
15748
15749 X86AddressMode AM;
15750 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015751 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015752 AM.BaseType = X86AddressMode::RegBase;
15753 AM.Base.Reg = Op.getReg();
15754 } else {
15755 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015756 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015757 }
15758 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015759 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015760 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015761 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015762 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015763 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015764 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015765 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015766 AM.GV = Op.getGlobal();
15767 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015768 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015769 }
Dan Gohman14152b42010-07-06 20:24:04 +000015770 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015771 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015772
15773 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015774 addFrameReference(BuildMI(*BB, MI, DL,
15775 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015776
Dan Gohman14152b42010-07-06 20:24:04 +000015777 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015778 return BB;
15779 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015780 // String/text processing lowering.
15781 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015782 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015783 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015784 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015785 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015786 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015787 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015788 case X86::VPCMPESTRM128MEM:
15789 assert(Subtarget->hasSSE42() &&
15790 "Target must have SSE4.2 or AVX features enabled");
15791 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015792
15793 // String/text processing lowering.
15794 case X86::PCMPISTRIREG:
15795 case X86::VPCMPISTRIREG:
15796 case X86::PCMPISTRIMEM:
15797 case X86::VPCMPISTRIMEM:
15798 case X86::PCMPESTRIREG:
15799 case X86::VPCMPESTRIREG:
15800 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015801 case X86::VPCMPESTRIMEM:
15802 assert(Subtarget->hasSSE42() &&
15803 "Target must have SSE4.2 or AVX features enabled");
15804 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015805
Craig Topper8aae8dd2012-11-10 08:57:41 +000015806 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015807 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015808 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015809
Michael Liaobe02a902012-11-08 07:28:54 +000015810 // xbegin
15811 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015812 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015813
Craig Topper8aae8dd2012-11-10 08:57:41 +000015814 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015815 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015816 case X86::ATOMAND16:
15817 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015818 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015819 // Fall through
15820 case X86::ATOMOR8:
15821 case X86::ATOMOR16:
15822 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015823 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015824 // Fall through
15825 case X86::ATOMXOR16:
15826 case X86::ATOMXOR8:
15827 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015828 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015829 // Fall through
15830 case X86::ATOMNAND8:
15831 case X86::ATOMNAND16:
15832 case X86::ATOMNAND32:
15833 case X86::ATOMNAND64:
15834 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015835 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015836 case X86::ATOMMAX16:
15837 case X86::ATOMMAX32:
15838 case X86::ATOMMAX64:
15839 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015840 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015841 case X86::ATOMMIN16:
15842 case X86::ATOMMIN32:
15843 case X86::ATOMMIN64:
15844 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015845 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015846 case X86::ATOMUMAX16:
15847 case X86::ATOMUMAX32:
15848 case X86::ATOMUMAX64:
15849 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015850 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015851 case X86::ATOMUMIN16:
15852 case X86::ATOMUMIN32:
15853 case X86::ATOMUMIN64:
15854 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015855
15856 // This group does 64-bit operations on a 32-bit host.
15857 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015858 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015859 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015860 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015861 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015862 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015863 case X86::ATOMMAX6432:
15864 case X86::ATOMMIN6432:
15865 case X86::ATOMUMAX6432:
15866 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015867 case X86::ATOMSWAP6432:
15868 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015869
Dan Gohmand6708ea2009-08-15 01:38:56 +000015870 case X86::VASTART_SAVE_XMM_REGS:
15871 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015872
15873 case X86::VAARG_64:
15874 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015875
15876 case X86::EH_SjLj_SetJmp32:
15877 case X86::EH_SjLj_SetJmp64:
15878 return emitEHSjLjSetJmp(MI, BB);
15879
15880 case X86::EH_SjLj_LongJmp32:
15881 case X86::EH_SjLj_LongJmp64:
15882 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015883 }
15884}
15885
15886//===----------------------------------------------------------------------===//
15887// X86 Optimization Hooks
15888//===----------------------------------------------------------------------===//
15889
Dan Gohman475871a2008-07-27 21:46:04 +000015890void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015891 APInt &KnownZero,
15892 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015893 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015894 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015895 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015896 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015897 assert((Opc >= ISD::BUILTIN_OP_END ||
15898 Opc == ISD::INTRINSIC_WO_CHAIN ||
15899 Opc == ISD::INTRINSIC_W_CHAIN ||
15900 Opc == ISD::INTRINSIC_VOID) &&
15901 "Should use MaskedValueIsZero if you don't know whether Op"
15902 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015903
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015904 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015905 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015906 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015907 case X86ISD::ADD:
15908 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015909 case X86ISD::ADC:
15910 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015911 case X86ISD::SMUL:
15912 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015913 case X86ISD::INC:
15914 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015915 case X86ISD::OR:
15916 case X86ISD::XOR:
15917 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015918 // These nodes' second result is a boolean.
15919 if (Op.getResNo() == 0)
15920 break;
15921 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015922 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015923 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015924 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015925 case ISD::INTRINSIC_WO_CHAIN: {
15926 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15927 unsigned NumLoBits = 0;
15928 switch (IntId) {
15929 default: break;
15930 case Intrinsic::x86_sse_movmsk_ps:
15931 case Intrinsic::x86_avx_movmsk_ps_256:
15932 case Intrinsic::x86_sse2_movmsk_pd:
15933 case Intrinsic::x86_avx_movmsk_pd_256:
15934 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015935 case Intrinsic::x86_sse2_pmovmskb_128:
15936 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015937 // High bits of movmskp{s|d}, pmovmskb are known zero.
15938 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015939 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015940 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
15941 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
15942 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
15943 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
15944 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
15945 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000015946 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015947 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015948 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000015949 break;
15950 }
15951 }
15952 break;
15953 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015954 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015955}
Chris Lattner259e97c2006-01-31 19:43:35 +000015956
Owen Andersonbc146b02010-09-21 20:42:50 +000015957unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
15958 unsigned Depth) const {
15959 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
15960 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
15961 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000015962
Owen Andersonbc146b02010-09-21 20:42:50 +000015963 // Fallback case.
15964 return 1;
15965}
15966
Evan Cheng206ee9d2006-07-07 08:33:52 +000015967/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000015968/// node is a GlobalAddress + offset.
15969bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000015970 const GlobalValue* &GA,
15971 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000015972 if (N->getOpcode() == X86ISD::Wrapper) {
15973 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000015974 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000015975 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000015976 return true;
15977 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000015978 }
Evan Chengad4196b2008-05-12 19:56:52 +000015979 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000015980}
15981
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015982/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
15983/// same as extracting the high 128-bit part of 256-bit vector and then
15984/// inserting the result into the low part of a new 256-bit vector
15985static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
15986 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000015987 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015988
15989 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000015990 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015991 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15992 SVOp->getMaskElt(j) >= 0)
15993 return false;
15994
15995 return true;
15996}
15997
15998/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
15999/// same as extracting the low 128-bit part of 256-bit vector and then
16000/// inserting the result into the high part of a new 256-bit vector
16001static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16002 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016003 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016004
16005 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016006 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016007 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16008 SVOp->getMaskElt(j) >= 0)
16009 return false;
16010
16011 return true;
16012}
16013
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016014/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16015static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016016 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016017 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016018 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016019 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16020 SDValue V1 = SVOp->getOperand(0);
16021 SDValue V2 = SVOp->getOperand(1);
16022 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016023 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016024
16025 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16026 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16027 //
16028 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016029 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016030 // V UNDEF BUILD_VECTOR UNDEF
16031 // \ / \ /
16032 // CONCAT_VECTOR CONCAT_VECTOR
16033 // \ /
16034 // \ /
16035 // RESULT: V + zero extended
16036 //
16037 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16038 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16039 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16040 return SDValue();
16041
16042 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16043 return SDValue();
16044
16045 // To match the shuffle mask, the first half of the mask should
16046 // be exactly the first vector, and all the rest a splat with the
16047 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016048 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016049 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16050 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16051 return SDValue();
16052
Chad Rosier3d1161e2012-01-03 21:05:52 +000016053 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16054 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016055 if (Ld->hasNUsesOfValue(1, 0)) {
16056 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16057 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16058 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016059 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16060 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016061 Ld->getMemoryVT(),
16062 Ld->getPointerInfo(),
16063 Ld->getAlignment(),
16064 false/*isVolatile*/, true/*ReadMem*/,
16065 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016066
16067 // Make sure the newly-created LOAD is in the same position as Ld in
16068 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16069 // and update uses of Ld's output chain to use the TokenFactor.
16070 if (Ld->hasAnyUseOfValue(1)) {
16071 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16072 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16073 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16074 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16075 SDValue(ResNode.getNode(), 1));
16076 }
16077
Chad Rosier42726832012-05-07 18:47:44 +000016078 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16079 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016080 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016081
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016082 // Emit a zeroed vector and insert the desired subvector on its
16083 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016084 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016085 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016086 return DCI.CombineTo(N, InsV);
16087 }
16088
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016089 //===--------------------------------------------------------------------===//
16090 // Combine some shuffles into subvector extracts and inserts:
16091 //
16092
16093 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16094 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016095 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16096 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016097 return DCI.CombineTo(N, InsV);
16098 }
16099
16100 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16101 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016102 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16103 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016104 return DCI.CombineTo(N, InsV);
16105 }
16106
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016107 return SDValue();
16108}
16109
16110/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016111static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016112 TargetLowering::DAGCombinerInfo &DCI,
16113 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016114 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016115 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016116
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016117 // Don't create instructions with illegal types after legalize types has run.
16118 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16119 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16120 return SDValue();
16121
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016122 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016123 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016124 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016125 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016126
16127 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016128 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016129 return SDValue();
16130
16131 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16132 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16133 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016134 SmallVector<SDValue, 16> Elts;
16135 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016136 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016137
Nate Begemanfdea31a2010-03-24 20:49:50 +000016138 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016139}
Evan Chengd880b972008-05-09 21:53:03 +000016140
Nadav Roteme12bf182013-01-04 17:35:21 +000016141/// PerformTruncateCombine - Converts truncate operation to
16142/// a sequence of vector shuffle operations.
16143/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016144static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16145 TargetLowering::DAGCombinerInfo &DCI,
16146 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016147 return SDValue();
16148}
16149
Craig Topper89f4e662012-03-20 07:17:59 +000016150/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16151/// specific shuffle of a load can be folded into a single element load.
16152/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16153/// shuffles have been customed lowered so we need to handle those here.
16154static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16155 TargetLowering::DAGCombinerInfo &DCI) {
16156 if (DCI.isBeforeLegalizeOps())
16157 return SDValue();
16158
16159 SDValue InVec = N->getOperand(0);
16160 SDValue EltNo = N->getOperand(1);
16161
16162 if (!isa<ConstantSDNode>(EltNo))
16163 return SDValue();
16164
16165 EVT VT = InVec.getValueType();
16166
16167 bool HasShuffleIntoBitcast = false;
16168 if (InVec.getOpcode() == ISD::BITCAST) {
16169 // Don't duplicate a load with other uses.
16170 if (!InVec.hasOneUse())
16171 return SDValue();
16172 EVT BCVT = InVec.getOperand(0).getValueType();
16173 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16174 return SDValue();
16175 InVec = InVec.getOperand(0);
16176 HasShuffleIntoBitcast = true;
16177 }
16178
16179 if (!isTargetShuffle(InVec.getOpcode()))
16180 return SDValue();
16181
16182 // Don't duplicate a load with other uses.
16183 if (!InVec.hasOneUse())
16184 return SDValue();
16185
16186 SmallVector<int, 16> ShuffleMask;
16187 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016188 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16189 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016190 return SDValue();
16191
16192 // Select the input vector, guarding against out of range extract vector.
16193 unsigned NumElems = VT.getVectorNumElements();
16194 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16195 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16196 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16197 : InVec.getOperand(1);
16198
16199 // If inputs to shuffle are the same for both ops, then allow 2 uses
16200 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16201
16202 if (LdNode.getOpcode() == ISD::BITCAST) {
16203 // Don't duplicate a load with other uses.
16204 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16205 return SDValue();
16206
16207 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16208 LdNode = LdNode.getOperand(0);
16209 }
16210
16211 if (!ISD::isNormalLoad(LdNode.getNode()))
16212 return SDValue();
16213
16214 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16215
16216 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16217 return SDValue();
16218
16219 if (HasShuffleIntoBitcast) {
16220 // If there's a bitcast before the shuffle, check if the load type and
16221 // alignment is valid.
16222 unsigned Align = LN0->getAlignment();
16223 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016224 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016225 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16226
16227 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16228 return SDValue();
16229 }
16230
16231 // All checks match so transform back to vector_shuffle so that DAG combiner
16232 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016233 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016234
16235 // Create shuffle node taking into account the case that its a unary shuffle
16236 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16237 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16238 InVec.getOperand(0), Shuffle,
16239 &ShuffleMask[0]);
16240 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16241 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16242 EltNo);
16243}
16244
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016245/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16246/// generation and convert it from being a bunch of shuffles and extracts
16247/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016248static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016249 TargetLowering::DAGCombinerInfo &DCI) {
16250 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16251 if (NewOp.getNode())
16252 return NewOp;
16253
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016254 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016255 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16256 // from mmx to v2i32 has a single usage.
16257 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16258 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16259 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016260 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016261 N->getValueType(0),
16262 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016263
16264 // Only operate on vectors of 4 elements, where the alternative shuffling
16265 // gets to be more expensive.
16266 if (InputVector.getValueType() != MVT::v4i32)
16267 return SDValue();
16268
16269 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16270 // single use which is a sign-extend or zero-extend, and all elements are
16271 // used.
16272 SmallVector<SDNode *, 4> Uses;
16273 unsigned ExtractedElements = 0;
16274 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16275 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16276 if (UI.getUse().getResNo() != InputVector.getResNo())
16277 return SDValue();
16278
16279 SDNode *Extract = *UI;
16280 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16281 return SDValue();
16282
16283 if (Extract->getValueType(0) != MVT::i32)
16284 return SDValue();
16285 if (!Extract->hasOneUse())
16286 return SDValue();
16287 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16288 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16289 return SDValue();
16290 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16291 return SDValue();
16292
16293 // Record which element was extracted.
16294 ExtractedElements |=
16295 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16296
16297 Uses.push_back(Extract);
16298 }
16299
16300 // If not all the elements were used, this may not be worthwhile.
16301 if (ExtractedElements != 15)
16302 return SDValue();
16303
16304 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016305 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016306
16307 // Store the value to a temporary stack slot.
16308 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016309 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16310 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016311
16312 // Replace each use (extract) with a load of the appropriate element.
16313 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16314 UE = Uses.end(); UI != UE; ++UI) {
16315 SDNode *Extract = *UI;
16316
Nadav Rotem86694292011-05-17 08:31:57 +000016317 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016318 SDValue Idx = Extract->getOperand(1);
16319 unsigned EltSize =
16320 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16321 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016322 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016323 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16324
Nadav Rotem86694292011-05-17 08:31:57 +000016325 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016326 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016327
16328 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016329 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016330 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016331 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016332
16333 // Replace the exact with the load.
16334 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16335 }
16336
16337 // The replacement was made in place; don't return anything.
16338 return SDValue();
16339}
16340
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016341/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16342static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
16343 SDValue RHS, SelectionDAG &DAG,
16344 const X86Subtarget *Subtarget) {
16345 if (!VT.isVector())
16346 return 0;
16347
16348 switch (VT.getSimpleVT().SimpleTy) {
16349 default: return 0;
16350 case MVT::v32i8:
16351 case MVT::v16i16:
16352 case MVT::v8i32:
16353 if (!Subtarget->hasAVX2())
16354 return 0;
16355 case MVT::v16i8:
16356 case MVT::v8i16:
16357 case MVT::v4i32:
16358 if (!Subtarget->hasSSE2())
16359 return 0;
16360 }
16361
16362 // SSE2 has only a small subset of the operations.
16363 bool hasUnsigned = Subtarget->hasSSE41() ||
16364 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16365 bool hasSigned = Subtarget->hasSSE41() ||
16366 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16367
16368 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16369
16370 // Check for x CC y ? x : y.
16371 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16372 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16373 switch (CC) {
16374 default: break;
16375 case ISD::SETULT:
16376 case ISD::SETULE:
16377 return hasUnsigned ? X86ISD::UMIN : 0;
16378 case ISD::SETUGT:
16379 case ISD::SETUGE:
16380 return hasUnsigned ? X86ISD::UMAX : 0;
16381 case ISD::SETLT:
16382 case ISD::SETLE:
16383 return hasSigned ? X86ISD::SMIN : 0;
16384 case ISD::SETGT:
16385 case ISD::SETGE:
16386 return hasSigned ? X86ISD::SMAX : 0;
16387 }
16388 // Check for x CC y ? y : x -- a min/max with reversed arms.
16389 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16390 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16391 switch (CC) {
16392 default: break;
16393 case ISD::SETULT:
16394 case ISD::SETULE:
16395 return hasUnsigned ? X86ISD::UMAX : 0;
16396 case ISD::SETUGT:
16397 case ISD::SETUGE:
16398 return hasUnsigned ? X86ISD::UMIN : 0;
16399 case ISD::SETLT:
16400 case ISD::SETLE:
16401 return hasSigned ? X86ISD::SMAX : 0;
16402 case ISD::SETGT:
16403 case ISD::SETGE:
16404 return hasSigned ? X86ISD::SMIN : 0;
16405 }
16406 }
16407
16408 return 0;
16409}
16410
Duncan Sands6bcd2192011-09-17 16:49:39 +000016411/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16412/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016413static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016414 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016415 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016416 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016417 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016418 // Get the LHS/RHS of the select.
16419 SDValue LHS = N->getOperand(1);
16420 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016421 EVT VT = LHS.getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +000016422
Dan Gohman670e5392009-09-21 18:03:22 +000016423 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016424 // instructions match the semantics of the common C idiom x<y?x:y but not
16425 // x<=y?x:y, because of how they handle negative zero (which can be
16426 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016427 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16428 VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016429 (Subtarget->hasSSE2() ||
16430 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016431 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016432
Chris Lattner47b4ce82009-03-11 05:48:52 +000016433 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016434 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016435 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16436 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016437 switch (CC) {
16438 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016439 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016440 // Converting this to a min would handle NaNs incorrectly, and swapping
16441 // the operands would cause it to handle comparisons between positive
16442 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016443 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016444 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016445 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16446 break;
16447 std::swap(LHS, RHS);
16448 }
Dan Gohman670e5392009-09-21 18:03:22 +000016449 Opcode = X86ISD::FMIN;
16450 break;
16451 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016452 // Converting this to a min would handle comparisons between positive
16453 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016454 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016455 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16456 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016457 Opcode = X86ISD::FMIN;
16458 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016459 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016460 // Converting this to a min would handle both negative zeros and NaNs
16461 // incorrectly, but we can swap the operands to fix both.
16462 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016463 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016464 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016465 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016466 Opcode = X86ISD::FMIN;
16467 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016468
Dan Gohman670e5392009-09-21 18:03:22 +000016469 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016470 // Converting this to a max would handle comparisons between positive
16471 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016472 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016473 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016474 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016475 Opcode = X86ISD::FMAX;
16476 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016477 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016478 // Converting this to a max would handle NaNs incorrectly, and swapping
16479 // the operands would cause it to handle comparisons between positive
16480 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016481 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016482 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016483 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16484 break;
16485 std::swap(LHS, RHS);
16486 }
Dan Gohman670e5392009-09-21 18:03:22 +000016487 Opcode = X86ISD::FMAX;
16488 break;
16489 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016490 // Converting this to a max would handle both negative zeros and NaNs
16491 // incorrectly, but we can swap the operands to fix both.
16492 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016493 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016494 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016495 case ISD::SETGE:
16496 Opcode = X86ISD::FMAX;
16497 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016498 }
Dan Gohman670e5392009-09-21 18:03:22 +000016499 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016500 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16501 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016502 switch (CC) {
16503 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016504 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016505 // Converting this to a min would handle comparisons between positive
16506 // and negative zero incorrectly, and swapping the operands would
16507 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016508 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016509 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016510 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016511 break;
16512 std::swap(LHS, RHS);
16513 }
Dan Gohman670e5392009-09-21 18:03:22 +000016514 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016515 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016516 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016517 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016518 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016519 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16520 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016521 Opcode = X86ISD::FMIN;
16522 break;
16523 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016524 // Converting this to a min would handle both negative zeros and NaNs
16525 // incorrectly, but we can swap the operands to fix both.
16526 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016527 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016528 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016529 case ISD::SETGE:
16530 Opcode = X86ISD::FMIN;
16531 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016532
Dan Gohman670e5392009-09-21 18:03:22 +000016533 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016534 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016535 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016536 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016537 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016538 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016539 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016540 // Converting this to a max would handle comparisons between positive
16541 // and negative zero incorrectly, and swapping the operands would
16542 // cause it to handle NaNs 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)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016545 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016546 break;
16547 std::swap(LHS, RHS);
16548 }
Dan Gohman670e5392009-09-21 18:03:22 +000016549 Opcode = X86ISD::FMAX;
16550 break;
16551 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016552 // Converting this to a max would handle both negative zeros and NaNs
16553 // incorrectly, but we can swap the operands to fix both.
16554 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016555 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016556 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016557 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016558 Opcode = X86ISD::FMAX;
16559 break;
16560 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016561 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016562
Chris Lattner47b4ce82009-03-11 05:48:52 +000016563 if (Opcode)
16564 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016565 }
Eric Christopherfd179292009-08-27 18:07:15 +000016566
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016567 if (Subtarget->hasAVX512() && VT.isVector() &&
16568 Cond.getValueType().getVectorElementType() == MVT::i1) {
16569 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16570 // lowering on AVX-512. In this case we convert it to
16571 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16572 // The same situation for all 128 and 256-bit vectors of i8 and i16
16573 EVT OpVT = LHS.getValueType();
16574 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16575 (OpVT.getVectorElementType() == MVT::i8 ||
16576 OpVT.getVectorElementType() == MVT::i16)) {
16577 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16578 DCI.AddToWorklist(Cond.getNode());
16579 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16580 }
16581 else
16582 return SDValue();
16583 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016584 // If this is a select between two integer constants, try to do some
16585 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016586 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16587 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016588 // Don't do this for crazy integer types.
16589 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16590 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016591 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016592 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016593
Chris Lattnercee56e72009-03-13 05:53:31 +000016594 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016595 // Efficiently invertible.
16596 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16597 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16598 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16599 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016600 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016601 }
Eric Christopherfd179292009-08-27 18:07:15 +000016602
Chris Lattnerd1980a52009-03-12 06:52:53 +000016603 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016604 if (FalseC->getAPIntValue() == 0 &&
16605 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016606 if (NeedsCondInvert) // Invert the condition if needed.
16607 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16608 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016609
Chris Lattnerd1980a52009-03-12 06:52:53 +000016610 // Zero extend the condition if needed.
16611 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016612
Chris Lattnercee56e72009-03-13 05:53:31 +000016613 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016614 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016615 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016616 }
Eric Christopherfd179292009-08-27 18:07:15 +000016617
Chris Lattner97a29a52009-03-13 05:22:11 +000016618 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016619 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016620 if (NeedsCondInvert) // Invert the condition if needed.
16621 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16622 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016623
Chris Lattner97a29a52009-03-13 05:22:11 +000016624 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016625 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16626 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016627 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016628 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016629 }
Eric Christopherfd179292009-08-27 18:07:15 +000016630
Chris Lattnercee56e72009-03-13 05:53:31 +000016631 // Optimize cases that will turn into an LEA instruction. This requires
16632 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016633 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016634 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016635 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016636
Chris Lattnercee56e72009-03-13 05:53:31 +000016637 bool isFastMultiplier = false;
16638 if (Diff < 10) {
16639 switch ((unsigned char)Diff) {
16640 default: break;
16641 case 1: // result = add base, cond
16642 case 2: // result = lea base( , cond*2)
16643 case 3: // result = lea base(cond, cond*2)
16644 case 4: // result = lea base( , cond*4)
16645 case 5: // result = lea base(cond, cond*4)
16646 case 8: // result = lea base( , cond*8)
16647 case 9: // result = lea base(cond, cond*8)
16648 isFastMultiplier = true;
16649 break;
16650 }
16651 }
Eric Christopherfd179292009-08-27 18:07:15 +000016652
Chris Lattnercee56e72009-03-13 05:53:31 +000016653 if (isFastMultiplier) {
16654 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16655 if (NeedsCondInvert) // Invert the condition if needed.
16656 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16657 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016658
Chris Lattnercee56e72009-03-13 05:53:31 +000016659 // Zero extend the condition if needed.
16660 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16661 Cond);
16662 // Scale the condition by the difference.
16663 if (Diff != 1)
16664 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16665 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016666
Chris Lattnercee56e72009-03-13 05:53:31 +000016667 // Add the base if non-zero.
16668 if (FalseC->getAPIntValue() != 0)
16669 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16670 SDValue(FalseC, 0));
16671 return Cond;
16672 }
Eric Christopherfd179292009-08-27 18:07:15 +000016673 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016674 }
16675 }
Eric Christopherfd179292009-08-27 18:07:15 +000016676
Evan Cheng56f582d2012-01-04 01:41:39 +000016677 // Canonicalize max and min:
16678 // (x > y) ? x : y -> (x >= y) ? x : y
16679 // (x < y) ? x : y -> (x <= y) ? x : y
16680 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16681 // the need for an extra compare
16682 // against zero. e.g.
16683 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16684 // subl %esi, %edi
16685 // testl %edi, %edi
16686 // movl $0, %eax
16687 // cmovgl %edi, %eax
16688 // =>
16689 // xorl %eax, %eax
16690 // subl %esi, $edi
16691 // cmovsl %eax, %edi
16692 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16693 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16694 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16695 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16696 switch (CC) {
16697 default: break;
16698 case ISD::SETLT:
16699 case ISD::SETGT: {
16700 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016701 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016702 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16703 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16704 }
16705 }
16706 }
16707
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016708 // Match VSELECTs into subs with unsigned saturation.
16709 if (!DCI.isBeforeLegalize() &&
16710 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16711 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16712 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16713 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16714 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16715
16716 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16717 // left side invert the predicate to simplify logic below.
16718 SDValue Other;
16719 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16720 Other = RHS;
16721 CC = ISD::getSetCCInverse(CC, true);
16722 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16723 Other = LHS;
16724 }
16725
16726 if (Other.getNode() && Other->getNumOperands() == 2 &&
16727 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16728 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16729 SDValue CondRHS = Cond->getOperand(1);
16730
16731 // Look for a general sub with unsigned saturation first.
16732 // x >= y ? x-y : 0 --> subus x, y
16733 // x > y ? x-y : 0 --> subus x, y
16734 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16735 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16736 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16737
16738 // If the RHS is a constant we have to reverse the const canonicalization.
16739 // x > C-1 ? x+-C : 0 --> subus x, C
16740 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16741 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16742 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016743 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016744 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016745 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016746 }
16747
16748 // Another special case: If C was a sign bit, the sub has been
16749 // canonicalized into a xor.
16750 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16751 // it's safe to decanonicalize the xor?
16752 // x s< 0 ? x^C : 0 --> subus x, C
16753 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16754 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16755 isSplatVector(OpRHS.getNode())) {
16756 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16757 if (A.isSignBit())
16758 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16759 }
16760 }
16761 }
16762
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016763 // Try to match a min/max vector operation.
16764 if (!DCI.isBeforeLegalize() &&
16765 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
16766 if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
16767 return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
16768
Michael Liaobf538412013-04-11 05:15:54 +000016769 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16770 if (!DCI.isBeforeLegalize() && N->getOpcode() == ISD::VSELECT &&
16771 Cond.getOpcode() == ISD::SETCC) {
16772
16773 assert(Cond.getValueType().isVector() &&
16774 "vector select expects a vector selector!");
16775
16776 EVT IntVT = Cond.getValueType();
16777 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16778 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16779
16780 if (!TValIsAllOnes && !FValIsAllZeros) {
16781 // Try invert the condition if true value is not all 1s and false value
16782 // is not all 0s.
16783 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16784 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16785
16786 if (TValIsAllZeros || FValIsAllOnes) {
16787 SDValue CC = Cond.getOperand(2);
16788 ISD::CondCode NewCC =
16789 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16790 Cond.getOperand(0).getValueType().isInteger());
16791 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16792 std::swap(LHS, RHS);
16793 TValIsAllOnes = FValIsAllOnes;
16794 FValIsAllZeros = TValIsAllZeros;
16795 }
16796 }
16797
16798 if (TValIsAllOnes || FValIsAllZeros) {
16799 SDValue Ret;
16800
16801 if (TValIsAllOnes && FValIsAllZeros)
16802 Ret = Cond;
16803 else if (TValIsAllOnes)
16804 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16805 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16806 else if (FValIsAllZeros)
16807 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16808 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16809
16810 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16811 }
16812 }
16813
Nadav Rotemcc616562012-01-15 19:27:55 +000016814 // If we know that this node is legal then we know that it is going to be
16815 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16816 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16817 // to simplify previous instructions.
16818 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16819 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016820 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016821 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016822
16823 // Don't optimize vector selects that map to mask-registers.
16824 if (BitWidth == 1)
16825 return SDValue();
16826
Nadav Rotemcc616562012-01-15 19:27:55 +000016827 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16828 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16829
16830 APInt KnownZero, KnownOne;
16831 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16832 DCI.isBeforeLegalizeOps());
16833 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16834 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16835 DCI.CommitTargetLoweringOpt(TLO);
16836 }
16837
Dan Gohman475871a2008-07-27 21:46:04 +000016838 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016839}
16840
Michael Liao2a33cec2012-08-10 19:58:13 +000016841// Check whether a boolean test is testing a boolean value generated by
16842// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16843// code.
16844//
16845// Simplify the following patterns:
16846// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16847// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16848// to (Op EFLAGS Cond)
16849//
16850// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16851// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16852// to (Op EFLAGS !Cond)
16853//
16854// where Op could be BRCOND or CMOV.
16855//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016856static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016857 // Quit if not CMP and SUB with its value result used.
16858 if (Cmp.getOpcode() != X86ISD::CMP &&
16859 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16860 return SDValue();
16861
16862 // Quit if not used as a boolean value.
16863 if (CC != X86::COND_E && CC != X86::COND_NE)
16864 return SDValue();
16865
16866 // Check CMP operands. One of them should be 0 or 1 and the other should be
16867 // an SetCC or extended from it.
16868 SDValue Op1 = Cmp.getOperand(0);
16869 SDValue Op2 = Cmp.getOperand(1);
16870
16871 SDValue SetCC;
16872 const ConstantSDNode* C = 0;
16873 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016874 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016875
16876 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16877 SetCC = Op2;
16878 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16879 SetCC = Op1;
16880 else // Quit if all operands are not constants.
16881 return SDValue();
16882
Michael Liao959ddbb2013-04-11 04:43:09 +000016883 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016884 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000016885 checkAgainstTrue = true;
16886 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000016887 // Quit if the constant is neither 0 or 1.
16888 return SDValue();
16889
Michael Liao959ddbb2013-04-11 04:43:09 +000016890 bool truncatedToBoolWithAnd = false;
16891 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16892 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16893 SetCC.getOpcode() == ISD::TRUNCATE ||
16894 SetCC.getOpcode() == ISD::AND) {
16895 if (SetCC.getOpcode() == ISD::AND) {
16896 int OpIdx = -1;
16897 ConstantSDNode *CS;
16898 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16899 CS->getZExtValue() == 1)
16900 OpIdx = 1;
16901 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16902 CS->getZExtValue() == 1)
16903 OpIdx = 0;
16904 if (OpIdx == -1)
16905 break;
16906 SetCC = SetCC.getOperand(OpIdx);
16907 truncatedToBoolWithAnd = true;
16908 } else
16909 SetCC = SetCC.getOperand(0);
16910 }
Michael Liao2a33cec2012-08-10 19:58:13 +000016911
Michael Liao7fdc66b2012-09-10 16:36:16 +000016912 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000016913 case X86ISD::SETCC_CARRY:
16914 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16915 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16916 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16917 // truncated to i1 using 'and'.
16918 if (checkAgainstTrue && !truncatedToBoolWithAnd)
16919 break;
16920 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16921 "Invalid use of SETCC_CARRY!");
16922 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000016923 case X86ISD::SETCC:
16924 // Set the condition code or opposite one if necessary.
16925 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16926 if (needOppositeCond)
16927 CC = X86::GetOppositeBranchCondition(CC);
16928 return SetCC.getOperand(1);
16929 case X86ISD::CMOV: {
16930 // Check whether false/true value has canonical one, i.e. 0 or 1.
16931 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
16932 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
16933 // Quit if true value is not a constant.
16934 if (!TVal)
16935 return SDValue();
16936 // Quit if false value is not a constant.
16937 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000016938 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000016939 // Skip 'zext' or 'trunc' node.
16940 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
16941 Op.getOpcode() == ISD::TRUNCATE)
16942 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000016943 // A special case for rdrand/rdseed, where 0 is set if false cond is
16944 // found.
16945 if ((Op.getOpcode() != X86ISD::RDRAND &&
16946 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000016947 return SDValue();
16948 }
16949 // Quit if false value is not the constant 0 or 1.
16950 bool FValIsFalse = true;
16951 if (FVal && FVal->getZExtValue() != 0) {
16952 if (FVal->getZExtValue() != 1)
16953 return SDValue();
16954 // If FVal is 1, opposite cond is needed.
16955 needOppositeCond = !needOppositeCond;
16956 FValIsFalse = false;
16957 }
16958 // Quit if TVal is not the constant opposite of FVal.
16959 if (FValIsFalse && TVal->getZExtValue() != 1)
16960 return SDValue();
16961 if (!FValIsFalse && TVal->getZExtValue() != 0)
16962 return SDValue();
16963 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
16964 if (needOppositeCond)
16965 CC = X86::GetOppositeBranchCondition(CC);
16966 return SetCC.getOperand(3);
16967 }
16968 }
Michael Liao2a33cec2012-08-10 19:58:13 +000016969
Michael Liao7fdc66b2012-09-10 16:36:16 +000016970 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000016971}
16972
Chris Lattnerd1980a52009-03-12 06:52:53 +000016973/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
16974static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016975 TargetLowering::DAGCombinerInfo &DCI,
16976 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016977 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000016978
Chris Lattnerd1980a52009-03-12 06:52:53 +000016979 // If the flag operand isn't dead, don't touch this CMOV.
16980 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
16981 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000016982
Evan Chengb5a55d92011-05-24 01:48:22 +000016983 SDValue FalseOp = N->getOperand(0);
16984 SDValue TrueOp = N->getOperand(1);
16985 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
16986 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000016987
Evan Chengb5a55d92011-05-24 01:48:22 +000016988 if (CC == X86::COND_E || CC == X86::COND_NE) {
16989 switch (Cond.getOpcode()) {
16990 default: break;
16991 case X86ISD::BSR:
16992 case X86ISD::BSF:
16993 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
16994 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
16995 return (CC == X86::COND_E) ? FalseOp : TrueOp;
16996 }
16997 }
16998
Michael Liao2a33cec2012-08-10 19:58:13 +000016999 SDValue Flags;
17000
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017001 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017002 if (Flags.getNode() &&
17003 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017004 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017005 SDValue Ops[] = { FalseOp, TrueOp,
17006 DAG.getConstant(CC, MVT::i8), Flags };
17007 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17008 Ops, array_lengthof(Ops));
17009 }
17010
Chris Lattnerd1980a52009-03-12 06:52:53 +000017011 // If this is a select between two integer constants, try to do some
17012 // optimizations. Note that the operands are ordered the opposite of SELECT
17013 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017014 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17015 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017016 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17017 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017018 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17019 CC = X86::GetOppositeBranchCondition(CC);
17020 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017021 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017022 }
Eric Christopherfd179292009-08-27 18:07:15 +000017023
Chris Lattnerd1980a52009-03-12 06:52:53 +000017024 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017025 // This is efficient for any integer data type (including i8/i16) and
17026 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017027 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017028 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17029 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017030
Chris Lattnerd1980a52009-03-12 06:52:53 +000017031 // Zero extend the condition if needed.
17032 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017033
Chris Lattnerd1980a52009-03-12 06:52:53 +000017034 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17035 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017036 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017037 if (N->getNumValues() == 2) // Dead flag value?
17038 return DCI.CombineTo(N, Cond, SDValue());
17039 return Cond;
17040 }
Eric Christopherfd179292009-08-27 18:07:15 +000017041
Chris Lattnercee56e72009-03-13 05:53:31 +000017042 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17043 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017044 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017045 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17046 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017047
Chris Lattner97a29a52009-03-13 05:22:11 +000017048 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017049 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17050 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017051 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17052 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017053
Chris Lattner97a29a52009-03-13 05:22:11 +000017054 if (N->getNumValues() == 2) // Dead flag value?
17055 return DCI.CombineTo(N, Cond, SDValue());
17056 return Cond;
17057 }
Eric Christopherfd179292009-08-27 18:07:15 +000017058
Chris Lattnercee56e72009-03-13 05:53:31 +000017059 // Optimize cases that will turn into an LEA instruction. This requires
17060 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017061 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017062 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017063 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017064
Chris Lattnercee56e72009-03-13 05:53:31 +000017065 bool isFastMultiplier = false;
17066 if (Diff < 10) {
17067 switch ((unsigned char)Diff) {
17068 default: break;
17069 case 1: // result = add base, cond
17070 case 2: // result = lea base( , cond*2)
17071 case 3: // result = lea base(cond, cond*2)
17072 case 4: // result = lea base( , cond*4)
17073 case 5: // result = lea base(cond, cond*4)
17074 case 8: // result = lea base( , cond*8)
17075 case 9: // result = lea base(cond, cond*8)
17076 isFastMultiplier = true;
17077 break;
17078 }
17079 }
Eric Christopherfd179292009-08-27 18:07:15 +000017080
Chris Lattnercee56e72009-03-13 05:53:31 +000017081 if (isFastMultiplier) {
17082 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017083 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17084 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017085 // Zero extend the condition if needed.
17086 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17087 Cond);
17088 // Scale the condition by the difference.
17089 if (Diff != 1)
17090 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17091 DAG.getConstant(Diff, Cond.getValueType()));
17092
17093 // Add the base if non-zero.
17094 if (FalseC->getAPIntValue() != 0)
17095 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17096 SDValue(FalseC, 0));
17097 if (N->getNumValues() == 2) // Dead flag value?
17098 return DCI.CombineTo(N, Cond, SDValue());
17099 return Cond;
17100 }
Eric Christopherfd179292009-08-27 18:07:15 +000017101 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017102 }
17103 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017104
17105 // Handle these cases:
17106 // (select (x != c), e, c) -> select (x != c), e, x),
17107 // (select (x == c), c, e) -> select (x == c), x, e)
17108 // where the c is an integer constant, and the "select" is the combination
17109 // of CMOV and CMP.
17110 //
17111 // The rationale for this change is that the conditional-move from a constant
17112 // needs two instructions, however, conditional-move from a register needs
17113 // only one instruction.
17114 //
17115 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17116 // some instruction-combining opportunities. This opt needs to be
17117 // postponed as late as possible.
17118 //
17119 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17120 // the DCI.xxxx conditions are provided to postpone the optimization as
17121 // late as possible.
17122
17123 ConstantSDNode *CmpAgainst = 0;
17124 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17125 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017126 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017127
17128 if (CC == X86::COND_NE &&
17129 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17130 CC = X86::GetOppositeBranchCondition(CC);
17131 std::swap(TrueOp, FalseOp);
17132 }
17133
17134 if (CC == X86::COND_E &&
17135 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17136 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17137 DAG.getConstant(CC, MVT::i8), Cond };
17138 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17139 array_lengthof(Ops));
17140 }
17141 }
17142 }
17143
Chris Lattnerd1980a52009-03-12 06:52:53 +000017144 return SDValue();
17145}
17146
Evan Cheng0b0cd912009-03-28 05:57:29 +000017147/// PerformMulCombine - Optimize a single multiply with constant into two
17148/// in order to implement it with two cheaper instructions, e.g.
17149/// LEA + SHL, LEA + LEA.
17150static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17151 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017152 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17153 return SDValue();
17154
Owen Andersone50ed302009-08-10 22:56:29 +000017155 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017156 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017157 return SDValue();
17158
17159 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17160 if (!C)
17161 return SDValue();
17162 uint64_t MulAmt = C->getZExtValue();
17163 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17164 return SDValue();
17165
17166 uint64_t MulAmt1 = 0;
17167 uint64_t MulAmt2 = 0;
17168 if ((MulAmt % 9) == 0) {
17169 MulAmt1 = 9;
17170 MulAmt2 = MulAmt / 9;
17171 } else if ((MulAmt % 5) == 0) {
17172 MulAmt1 = 5;
17173 MulAmt2 = MulAmt / 5;
17174 } else if ((MulAmt % 3) == 0) {
17175 MulAmt1 = 3;
17176 MulAmt2 = MulAmt / 3;
17177 }
17178 if (MulAmt2 &&
17179 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017180 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017181
17182 if (isPowerOf2_64(MulAmt2) &&
17183 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17184 // If second multiplifer is pow2, issue it first. We want the multiply by
17185 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17186 // is an add.
17187 std::swap(MulAmt1, MulAmt2);
17188
17189 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017190 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017191 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017192 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017193 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017194 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017195 DAG.getConstant(MulAmt1, VT));
17196
Eric Christopherfd179292009-08-27 18:07:15 +000017197 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017198 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017199 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017200 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017201 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017202 DAG.getConstant(MulAmt2, VT));
17203
17204 // Do not add new nodes to DAG combiner worklist.
17205 DCI.CombineTo(N, NewMul, false);
17206 }
17207 return SDValue();
17208}
17209
Evan Chengad9c0a32009-12-15 00:53:42 +000017210static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17211 SDValue N0 = N->getOperand(0);
17212 SDValue N1 = N->getOperand(1);
17213 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17214 EVT VT = N0.getValueType();
17215
17216 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17217 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017218 if (VT.isInteger() && !VT.isVector() &&
17219 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017220 N0.getOperand(1).getOpcode() == ISD::Constant) {
17221 SDValue N00 = N0.getOperand(0);
17222 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17223 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17224 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17225 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17226 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17227 APInt ShAmt = N1C->getAPIntValue();
17228 Mask = Mask.shl(ShAmt);
17229 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017230 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017231 N00, DAG.getConstant(Mask, VT));
17232 }
17233 }
17234
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017235 // Hardware support for vector shifts is sparse which makes us scalarize the
17236 // vector operations in many cases. Also, on sandybridge ADD is faster than
17237 // shl.
17238 // (shl V, 1) -> add V,V
17239 if (isSplatVector(N1.getNode())) {
17240 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17241 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17242 // We shift all of the values by one. In many cases we do not have
17243 // hardware support for this operation. This is better expressed as an ADD
17244 // of two values.
17245 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017246 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017247 }
17248 }
17249
Evan Chengad9c0a32009-12-15 00:53:42 +000017250 return SDValue();
17251}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017252
Stephen Linfff96732013-07-12 15:31:36 +000017253/// \brief Returns a vector of 0s if the node in input is a vector logical
17254/// shift by a constant amount which is known to be bigger than or equal
17255/// to the vector element size in bits.
17256static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17257 const X86Subtarget *Subtarget) {
17258 EVT VT = N->getValueType(0);
17259
17260 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17261 (!Subtarget->hasInt256() ||
17262 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17263 return SDValue();
17264
17265 SDValue Amt = N->getOperand(1);
17266 SDLoc DL(N);
17267 if (isSplatVector(Amt.getNode())) {
17268 SDValue SclrAmt = Amt->getOperand(0);
17269 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17270 APInt ShiftAmt = C->getAPIntValue();
17271 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17272
17273 // SSE2/AVX2 logical shifts always return a vector of 0s
17274 // if the shift amount is bigger than or equal to
17275 // the element size. The constant shift amount will be
17276 // encoded as a 8-bit immediate.
17277 if (ShiftAmt.trunc(8).uge(MaxAmount))
17278 return getZeroVector(VT, Subtarget, DAG, DL);
17279 }
17280 }
17281
17282 return SDValue();
17283}
17284
Nadav Rotem0fb65232013-05-04 23:24:56 +000017285/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017286static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017287 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017288 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017289 if (N->getOpcode() == ISD::SHL) {
17290 SDValue V = PerformSHLCombine(N, DAG);
17291 if (V.getNode()) return V;
17292 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017293
Stephen Linfff96732013-07-12 15:31:36 +000017294 if (N->getOpcode() != ISD::SRA) {
17295 // Try to fold this logical shift into a zero vector.
17296 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17297 if (V.getNode()) return V;
17298 }
17299
Michael Liao42317cc2013-03-20 02:33:21 +000017300 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017301}
17302
Stuart Hastings865f0932011-06-03 23:53:54 +000017303// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17304// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17305// and friends. Likewise for OR -> CMPNEQSS.
17306static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17307 TargetLowering::DAGCombinerInfo &DCI,
17308 const X86Subtarget *Subtarget) {
17309 unsigned opcode;
17310
17311 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17312 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017313 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017314 SDValue N0 = N->getOperand(0);
17315 SDValue N1 = N->getOperand(1);
17316 SDValue CMP0 = N0->getOperand(1);
17317 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017318 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017319
17320 // The SETCCs should both refer to the same CMP.
17321 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17322 return SDValue();
17323
17324 SDValue CMP00 = CMP0->getOperand(0);
17325 SDValue CMP01 = CMP0->getOperand(1);
17326 EVT VT = CMP00.getValueType();
17327
17328 if (VT == MVT::f32 || VT == MVT::f64) {
17329 bool ExpectingFlags = false;
17330 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017331 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017332 !ExpectingFlags && UI != UE; ++UI)
17333 switch (UI->getOpcode()) {
17334 default:
17335 case ISD::BR_CC:
17336 case ISD::BRCOND:
17337 case ISD::SELECT:
17338 ExpectingFlags = true;
17339 break;
17340 case ISD::CopyToReg:
17341 case ISD::SIGN_EXTEND:
17342 case ISD::ZERO_EXTEND:
17343 case ISD::ANY_EXTEND:
17344 break;
17345 }
17346
17347 if (!ExpectingFlags) {
17348 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17349 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17350
17351 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17352 X86::CondCode tmp = cc0;
17353 cc0 = cc1;
17354 cc1 = tmp;
17355 }
17356
17357 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17358 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17359 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17360 X86ISD::NodeType NTOperator = is64BitFP ?
17361 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17362 // FIXME: need symbolic constants for these magic numbers.
17363 // See X86ATTInstPrinter.cpp:printSSECC().
17364 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17365 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17366 DAG.getConstant(x86cc, MVT::i8));
17367 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17368 OnesOrZeroesF);
17369 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17370 DAG.getConstant(1, MVT::i32));
17371 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17372 return OneBitOfTruth;
17373 }
17374 }
17375 }
17376 }
17377 return SDValue();
17378}
17379
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017380/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17381/// so it can be folded inside ANDNP.
17382static bool CanFoldXORWithAllOnes(const SDNode *N) {
17383 EVT VT = N->getValueType(0);
17384
17385 // Match direct AllOnes for 128 and 256-bit vectors
17386 if (ISD::isBuildVectorAllOnes(N))
17387 return true;
17388
17389 // Look through a bit convert.
17390 if (N->getOpcode() == ISD::BITCAST)
17391 N = N->getOperand(0).getNode();
17392
17393 // Sometimes the operand may come from a insert_subvector building a 256-bit
17394 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017395 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017396 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17397 SDValue V1 = N->getOperand(0);
17398 SDValue V2 = N->getOperand(1);
17399
17400 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17401 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17402 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17403 ISD::isBuildVectorAllOnes(V2.getNode()))
17404 return true;
17405 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017406
17407 return false;
17408}
17409
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017410// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17411// register. In most cases we actually compare or select YMM-sized registers
17412// and mixing the two types creates horrible code. This method optimizes
17413// some of the transition sequences.
17414static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17415 TargetLowering::DAGCombinerInfo &DCI,
17416 const X86Subtarget *Subtarget) {
17417 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017418 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017419 return SDValue();
17420
17421 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17422 N->getOpcode() == ISD::ZERO_EXTEND ||
17423 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17424
17425 SDValue Narrow = N->getOperand(0);
17426 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017427 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017428 return SDValue();
17429
17430 if (Narrow->getOpcode() != ISD::XOR &&
17431 Narrow->getOpcode() != ISD::AND &&
17432 Narrow->getOpcode() != ISD::OR)
17433 return SDValue();
17434
17435 SDValue N0 = Narrow->getOperand(0);
17436 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017437 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017438
17439 // The Left side has to be a trunc.
17440 if (N0.getOpcode() != ISD::TRUNCATE)
17441 return SDValue();
17442
17443 // The type of the truncated inputs.
17444 EVT WideVT = N0->getOperand(0)->getValueType(0);
17445 if (WideVT != VT)
17446 return SDValue();
17447
17448 // The right side has to be a 'trunc' or a constant vector.
17449 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17450 bool RHSConst = (isSplatVector(N1.getNode()) &&
17451 isa<ConstantSDNode>(N1->getOperand(0)));
17452 if (!RHSTrunc && !RHSConst)
17453 return SDValue();
17454
17455 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17456
17457 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17458 return SDValue();
17459
17460 // Set N0 and N1 to hold the inputs to the new wide operation.
17461 N0 = N0->getOperand(0);
17462 if (RHSConst) {
17463 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17464 N1->getOperand(0));
17465 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17466 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17467 } else if (RHSTrunc) {
17468 N1 = N1->getOperand(0);
17469 }
17470
17471 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017472 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017473 unsigned Opcode = N->getOpcode();
17474 switch (Opcode) {
17475 case ISD::ANY_EXTEND:
17476 return Op;
17477 case ISD::ZERO_EXTEND: {
17478 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17479 APInt Mask = APInt::getAllOnesValue(InBits);
17480 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17481 return DAG.getNode(ISD::AND, DL, VT,
17482 Op, DAG.getConstant(Mask, VT));
17483 }
17484 case ISD::SIGN_EXTEND:
17485 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17486 Op, DAG.getValueType(NarrowVT));
17487 default:
17488 llvm_unreachable("Unexpected opcode");
17489 }
17490}
17491
Nate Begemanb65c1752010-12-17 22:55:37 +000017492static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17493 TargetLowering::DAGCombinerInfo &DCI,
17494 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017495 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017496 if (DCI.isBeforeLegalizeOps())
17497 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017498
Stuart Hastings865f0932011-06-03 23:53:54 +000017499 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17500 if (R.getNode())
17501 return R;
17502
Craig Topperb6ac30a2013-08-30 06:52:21 +000017503 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017504 // BLSI is X & (-X)
17505 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017506 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017507 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017508 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017509 SDValue N0 = N->getOperand(0);
17510 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017511 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017512
Craig Topperb6ac30a2013-08-30 06:52:21 +000017513 if (Subtarget->hasBMI()) {
17514 // Check LHS for neg
17515 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17516 isZero(N0.getOperand(0)))
17517 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017518
Craig Topperb6ac30a2013-08-30 06:52:21 +000017519 // Check RHS for neg
17520 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17521 isZero(N1.getOperand(0)))
17522 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017523
Craig Topperb6ac30a2013-08-30 06:52:21 +000017524 // Check LHS for X-1
17525 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17526 isAllOnes(N0.getOperand(1)))
17527 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017528
Craig Topperb6ac30a2013-08-30 06:52:21 +000017529 // Check RHS for X-1
17530 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17531 isAllOnes(N1.getOperand(1)))
17532 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
Craig Topper69c474f2013-09-02 07:53:17 +000017533
17534 // Check for BEXTR
17535 if (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL) {
17536 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17537 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17538 if (MaskNode && ShiftNode) {
17539 uint64_t Mask = MaskNode->getZExtValue();
17540 uint64_t Shift = ShiftNode->getZExtValue();
17541 if (isMask_64(Mask)) {
17542 uint64_t MaskSize = CountPopulation_64(Mask);
17543 if (Shift + MaskSize <= VT.getSizeInBits())
17544 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17545 DAG.getConstant(Shift | (MaskSize << 8), VT));
17546 }
17547 }
17548 }
Craig Topperb6ac30a2013-08-30 06:52:21 +000017549 }
17550
17551 if (Subtarget->hasBMI2()) {
17552 // Check for (and (add (shl 1, Y), -1), X)
17553 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17554 SDValue N00 = N0.getOperand(0);
17555 if (N00.getOpcode() == ISD::SHL) {
17556 SDValue N001 = N00.getOperand(1);
17557 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17558 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17559 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017560 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017561 }
17562 }
17563
17564 // Check for (and X, (add (shl 1, Y), -1))
17565 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17566 SDValue N10 = N1.getOperand(0);
17567 if (N10.getOpcode() == ISD::SHL) {
17568 SDValue N101 = N10.getOperand(1);
17569 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17570 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17571 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017572 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017573 }
17574 }
17575 }
Craig Topperb4c94572011-10-21 06:55:01 +000017576
Craig Topper54a11172011-10-14 07:06:56 +000017577 return SDValue();
17578 }
17579
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017580 // Want to form ANDNP nodes:
17581 // 1) In the hopes of then easily combining them with OR and AND nodes
17582 // to form PBLEND/PSIGN.
17583 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017584 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017585 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017586
Nate Begemanb65c1752010-12-17 22:55:37 +000017587 SDValue N0 = N->getOperand(0);
17588 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017589 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017590
Nate Begemanb65c1752010-12-17 22:55:37 +000017591 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017592 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017593 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17594 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017595 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017596
17597 // Check RHS for vnot
17598 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017599 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17600 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017601 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017602
Nate Begemanb65c1752010-12-17 22:55:37 +000017603 return SDValue();
17604}
17605
Evan Cheng760d1942010-01-04 21:22:48 +000017606static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017607 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017608 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017609 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017610 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017611 return SDValue();
17612
Stuart Hastings865f0932011-06-03 23:53:54 +000017613 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17614 if (R.getNode())
17615 return R;
17616
Evan Cheng760d1942010-01-04 21:22:48 +000017617 SDValue N0 = N->getOperand(0);
17618 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017619
Nate Begemanb65c1752010-12-17 22:55:37 +000017620 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017621 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017622 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017623 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017624 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017625
Craig Topper1666cb62011-11-19 07:07:26 +000017626 // Canonicalize pandn to RHS
17627 if (N0.getOpcode() == X86ISD::ANDNP)
17628 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017629 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017630 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17631 SDValue Mask = N1.getOperand(0);
17632 SDValue X = N1.getOperand(1);
17633 SDValue Y;
17634 if (N0.getOperand(0) == Mask)
17635 Y = N0.getOperand(1);
17636 if (N0.getOperand(1) == Mask)
17637 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017638
Craig Topper1666cb62011-11-19 07:07:26 +000017639 // Check to see if the mask appeared in both the AND and ANDNP and
17640 if (!Y.getNode())
17641 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017642
Craig Topper1666cb62011-11-19 07:07:26 +000017643 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017644 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017645 if (Mask.getOpcode() == ISD::BITCAST)
17646 Mask = Mask.getOperand(0);
17647 if (X.getOpcode() == ISD::BITCAST)
17648 X = X.getOperand(0);
17649 if (Y.getOpcode() == ISD::BITCAST)
17650 Y = Y.getOperand(0);
17651
Craig Topper1666cb62011-11-19 07:07:26 +000017652 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017653
Craig Toppered2e13d2012-01-22 19:15:14 +000017654 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017655 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17656 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017657 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017658 unsigned SraAmt = ~0;
17659 if (Mask.getOpcode() == ISD::SRA) {
17660 SDValue Amt = Mask.getOperand(1);
17661 if (isSplatVector(Amt.getNode())) {
17662 SDValue SclrAmt = Amt->getOperand(0);
17663 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17664 SraAmt = C->getZExtValue();
17665 }
17666 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17667 SDValue SraC = Mask.getOperand(1);
17668 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17669 }
Craig Topper1666cb62011-11-19 07:07:26 +000017670 if ((SraAmt + 1) != EltBits)
17671 return SDValue();
17672
Andrew Trickac6d9be2013-05-25 02:42:55 +000017673 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017674
17675 // Now we know we at least have a plendvb with the mask val. See if
17676 // we can form a psignb/w/d.
17677 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017678 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17679 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017680 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17681 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17682 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017683 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017684 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017685 }
17686 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017687 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017688 return SDValue();
17689
17690 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17691
17692 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17693 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17694 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017695 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017696 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017697 }
17698 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017699
Craig Topper1666cb62011-11-19 07:07:26 +000017700 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17701 return SDValue();
17702
Nate Begemanb65c1752010-12-17 22:55:37 +000017703 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017704 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17705 std::swap(N0, N1);
17706 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17707 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017708 if (!N0.hasOneUse() || !N1.hasOneUse())
17709 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017710
17711 SDValue ShAmt0 = N0.getOperand(1);
17712 if (ShAmt0.getValueType() != MVT::i8)
17713 return SDValue();
17714 SDValue ShAmt1 = N1.getOperand(1);
17715 if (ShAmt1.getValueType() != MVT::i8)
17716 return SDValue();
17717 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17718 ShAmt0 = ShAmt0.getOperand(0);
17719 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17720 ShAmt1 = ShAmt1.getOperand(0);
17721
Andrew Trickac6d9be2013-05-25 02:42:55 +000017722 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017723 unsigned Opc = X86ISD::SHLD;
17724 SDValue Op0 = N0.getOperand(0);
17725 SDValue Op1 = N1.getOperand(0);
17726 if (ShAmt0.getOpcode() == ISD::SUB) {
17727 Opc = X86ISD::SHRD;
17728 std::swap(Op0, Op1);
17729 std::swap(ShAmt0, ShAmt1);
17730 }
17731
Evan Cheng8b1190a2010-04-28 01:18:01 +000017732 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017733 if (ShAmt1.getOpcode() == ISD::SUB) {
17734 SDValue Sum = ShAmt1.getOperand(0);
17735 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017736 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17737 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17738 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17739 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017740 return DAG.getNode(Opc, DL, VT,
17741 Op0, Op1,
17742 DAG.getNode(ISD::TRUNCATE, DL,
17743 MVT::i8, ShAmt0));
17744 }
17745 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17746 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17747 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017748 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017749 return DAG.getNode(Opc, DL, VT,
17750 N0.getOperand(0), N1.getOperand(0),
17751 DAG.getNode(ISD::TRUNCATE, DL,
17752 MVT::i8, ShAmt0));
17753 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017754
Evan Cheng760d1942010-01-04 21:22:48 +000017755 return SDValue();
17756}
17757
Manman Ren92363622012-06-07 22:39:10 +000017758// Generate NEG and CMOV for integer abs.
17759static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17760 EVT VT = N->getValueType(0);
17761
17762 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17763 // 8-bit integer abs to NEG and CMOV.
17764 if (VT.isInteger() && VT.getSizeInBits() == 8)
17765 return SDValue();
17766
17767 SDValue N0 = N->getOperand(0);
17768 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017769 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017770
17771 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17772 // and change it to SUB and CMOV.
17773 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17774 N0.getOpcode() == ISD::ADD &&
17775 N0.getOperand(1) == N1 &&
17776 N1.getOpcode() == ISD::SRA &&
17777 N1.getOperand(0) == N0.getOperand(0))
17778 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17779 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17780 // Generate SUB & CMOV.
17781 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17782 DAG.getConstant(0, VT), N0.getOperand(0));
17783
17784 SDValue Ops[] = { N0.getOperand(0), Neg,
17785 DAG.getConstant(X86::COND_GE, MVT::i8),
17786 SDValue(Neg.getNode(), 1) };
17787 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17788 Ops, array_lengthof(Ops));
17789 }
17790 return SDValue();
17791}
17792
Craig Topper3738ccd2011-12-27 06:27:23 +000017793// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017794static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17795 TargetLowering::DAGCombinerInfo &DCI,
17796 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017797 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017798 if (DCI.isBeforeLegalizeOps())
17799 return SDValue();
17800
Manman Ren45d53b82012-06-08 18:58:26 +000017801 if (Subtarget->hasCMov()) {
17802 SDValue RV = performIntegerAbsCombine(N, DAG);
17803 if (RV.getNode())
17804 return RV;
17805 }
Manman Ren92363622012-06-07 22:39:10 +000017806
17807 // Try forming BMI if it is available.
17808 if (!Subtarget->hasBMI())
17809 return SDValue();
17810
Craig Topperb4c94572011-10-21 06:55:01 +000017811 if (VT != MVT::i32 && VT != MVT::i64)
17812 return SDValue();
17813
Craig Topper3738ccd2011-12-27 06:27:23 +000017814 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17815
Craig Topperb4c94572011-10-21 06:55:01 +000017816 // Create BLSMSK instructions by finding X ^ (X-1)
17817 SDValue N0 = N->getOperand(0);
17818 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017819 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017820
17821 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17822 isAllOnes(N0.getOperand(1)))
17823 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17824
17825 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17826 isAllOnes(N1.getOperand(1)))
17827 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17828
17829 return SDValue();
17830}
17831
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017832/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17833static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017834 TargetLowering::DAGCombinerInfo &DCI,
17835 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017836 LoadSDNode *Ld = cast<LoadSDNode>(N);
17837 EVT RegVT = Ld->getValueType(0);
17838 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017839 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017840 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017841 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017842
Michael Liaod4584c92013-03-25 23:50:10 +000017843 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017844 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017845 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017846 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017847 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017848 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017849 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017850 if (NumElems < 2)
17851 return SDValue();
17852
Nadav Rotem48177ac2013-01-18 23:10:30 +000017853 SDValue Ptr = Ld->getBasePtr();
17854 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17855
17856 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17857 NumElems/2);
17858 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17859 Ld->getPointerInfo(), Ld->isVolatile(),
17860 Ld->isNonTemporal(), Ld->isInvariant(),
17861 Alignment);
17862 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17863 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17864 Ld->getPointerInfo(), Ld->isVolatile(),
17865 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017866 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017867 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17868 Load1.getValue(1),
17869 Load2.getValue(1));
17870
17871 SDValue NewVec = DAG.getUNDEF(RegVT);
17872 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17873 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17874 return DCI.CombineTo(N, NewVec, TF, true);
17875 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017876
Nadav Rotemca6f2962011-09-18 19:00:23 +000017877 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017878 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17879 // expansion is still better than scalar code.
17880 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17881 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017882 // TODO: It is possible to support ZExt by zeroing the undef values
17883 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000017884 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17885 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017886 assert(MemVT != RegVT && "Cannot extend to the same type");
17887 assert(MemVT.isVector() && "Must load a vector from memory");
17888
17889 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017890 unsigned MemSz = MemVT.getSizeInBits();
17891 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017892
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017893 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17894 return SDValue();
17895
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017896 // All sizes must be a power of two.
17897 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17898 return SDValue();
17899
17900 // Attempt to load the original value using scalar loads.
17901 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017902 MVT SclrLoadTy = MVT::i8;
17903 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17904 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17905 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017906 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017907 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017908 }
17909 }
17910
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017911 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17912 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17913 (64 <= MemSz))
17914 SclrLoadTy = MVT::f64;
17915
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017916 // Calculate the number of scalar loads that we need to perform
17917 // in order to load our vector from memory.
17918 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017919 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17920 return SDValue();
17921
17922 unsigned loadRegZize = RegSz;
17923 if (Ext == ISD::SEXTLOAD && RegSz == 256)
17924 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017925
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017926 // Represent our vector as a sequence of elements which are the
17927 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017928 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017929 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017930
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017931 // Represent the data using the same element type that is stored in
17932 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000017933 EVT WideVecVT =
17934 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017935 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017936
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017937 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
17938 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017939
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017940 // We can't shuffle using an illegal type.
17941 if (!TLI.isTypeLegal(WideVecVT))
17942 return SDValue();
17943
17944 SmallVector<SDValue, 8> Chains;
17945 SDValue Ptr = Ld->getBasePtr();
17946 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
17947 TLI.getPointerTy());
17948 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
17949
17950 for (unsigned i = 0; i < NumLoads; ++i) {
17951 // Perform a single load.
17952 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
17953 Ptr, Ld->getPointerInfo(),
17954 Ld->isVolatile(), Ld->isNonTemporal(),
17955 Ld->isInvariant(), Ld->getAlignment());
17956 Chains.push_back(ScalarLoad.getValue(1));
17957 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
17958 // another round of DAGCombining.
17959 if (i == 0)
17960 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
17961 else
17962 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
17963 ScalarLoad, DAG.getIntPtrConstant(i));
17964
17965 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17966 }
17967
17968 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17969 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017970
17971 // Bitcast the loaded value to a vector of the original element type, in
17972 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017973 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017974 unsigned SizeRatio = RegSz/MemSz;
17975
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017976 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000017977 // If we have SSE4.1 we can directly emit a VSEXT node.
17978 if (Subtarget->hasSSE41()) {
17979 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
17980 return DCI.CombineTo(N, Sext, TF, true);
17981 }
17982
17983 // Otherwise we'll shuffle the small elements in the high bits of the
17984 // larger type and perform an arithmetic shift. If the shift is not legal
17985 // it's better to scalarize.
17986 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
17987 return SDValue();
17988
17989 // Redistribute the loaded elements into the different locations.
17990 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17991 for (unsigned i = 0; i != NumElems; ++i)
17992 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
17993
17994 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17995 DAG.getUNDEF(WideVecVT),
17996 &ShuffleVec[0]);
17997
17998 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17999
18000 // Build the arithmetic shift.
18001 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18002 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018003 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18004 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018005
18006 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018007 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018008
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018009 // Redistribute the loaded elements into the different locations.
18010 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018011 for (unsigned i = 0; i != NumElems; ++i)
18012 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018013
18014 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018015 DAG.getUNDEF(WideVecVT),
18016 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018017
18018 // Bitcast to the requested type.
18019 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18020 // Replace the original load with the new sequence
18021 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018022 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018023 }
18024
18025 return SDValue();
18026}
18027
Chris Lattner149a4e52008-02-22 02:09:43 +000018028/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018029static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018030 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018031 StoreSDNode *St = cast<StoreSDNode>(N);
18032 EVT VT = St->getValue().getValueType();
18033 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018034 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018035 SDValue StoredVal = St->getOperand(1);
18036 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18037
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018038 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018039 // On Sandy Bridge, 256-bit memory operations are executed by two
18040 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18041 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018042 unsigned Alignment = St->getAlignment();
18043 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018044 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018045 StVT == VT && !IsAligned) {
18046 unsigned NumElems = VT.getVectorNumElements();
18047 if (NumElems < 2)
18048 return SDValue();
18049
18050 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18051 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018052
18053 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18054 SDValue Ptr0 = St->getBasePtr();
18055 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18056
18057 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18058 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018059 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018060 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18061 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018062 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018063 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018064 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18065 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018066
18067 // Optimize trunc store (of multiple scalars) to shuffle and store.
18068 // First, pack all of the elements in one place. Next, store to memory
18069 // in fewer chunks.
18070 if (St->isTruncatingStore() && VT.isVector()) {
18071 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18072 unsigned NumElems = VT.getVectorNumElements();
18073 assert(StVT != VT && "Cannot truncate to the same type");
18074 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18075 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18076
18077 // From, To sizes and ElemCount must be pow of two
18078 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018079 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018080 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018081 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018082
Nadav Rotem614061b2011-08-10 19:30:14 +000018083 unsigned SizeRatio = FromSz / ToSz;
18084
18085 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18086
18087 // Create a type on which we perform the shuffle
18088 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18089 StVT.getScalarType(), NumElems*SizeRatio);
18090
18091 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18092
18093 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18094 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018095 for (unsigned i = 0; i != NumElems; ++i)
18096 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018097
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018098 // Can't shuffle using an illegal type.
18099 if (!TLI.isTypeLegal(WideVecVT))
18100 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018101
18102 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018103 DAG.getUNDEF(WideVecVT),
18104 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018105 // At this point all of the data is stored at the bottom of the
18106 // register. We now need to save it to mem.
18107
18108 // Find the largest store unit
18109 MVT StoreType = MVT::i8;
18110 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18111 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18112 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018113 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018114 StoreType = Tp;
18115 }
18116
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018117 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18118 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18119 (64 <= NumElems * ToSz))
18120 StoreType = MVT::f64;
18121
Nadav Rotem614061b2011-08-10 19:30:14 +000018122 // Bitcast the original vector into a vector of store-size units
18123 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018124 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018125 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18126 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18127 SmallVector<SDValue, 8> Chains;
18128 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18129 TLI.getPointerTy());
18130 SDValue Ptr = St->getBasePtr();
18131
18132 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018133 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018134 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18135 StoreType, ShuffWide,
18136 DAG.getIntPtrConstant(i));
18137 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18138 St->getPointerInfo(), St->isVolatile(),
18139 St->isNonTemporal(), St->getAlignment());
18140 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18141 Chains.push_back(Ch);
18142 }
18143
18144 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18145 Chains.size());
18146 }
18147
Chris Lattner149a4e52008-02-22 02:09:43 +000018148 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18149 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018150 // A preferable solution to the general problem is to figure out the right
18151 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018152
18153 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018154 if (VT.getSizeInBits() != 64)
18155 return SDValue();
18156
Devang Patel578efa92009-06-05 21:57:13 +000018157 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018158 bool NoImplicitFloatOps = F->getAttributes().
18159 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018160 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018161 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018162 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018163 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018164 isa<LoadSDNode>(St->getValue()) &&
18165 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18166 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018167 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018168 LoadSDNode *Ld = 0;
18169 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018170 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018171 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018172 // Must be a store of a load. We currently handle two cases: the load
18173 // is a direct child, and it's under an intervening TokenFactor. It is
18174 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018175 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018176 Ld = cast<LoadSDNode>(St->getChain());
18177 else if (St->getValue().hasOneUse() &&
18178 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018179 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018180 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018181 TokenFactorIndex = i;
18182 Ld = cast<LoadSDNode>(St->getValue());
18183 } else
18184 Ops.push_back(ChainVal->getOperand(i));
18185 }
18186 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018187
Evan Cheng536e6672009-03-12 05:59:15 +000018188 if (!Ld || !ISD::isNormalLoad(Ld))
18189 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018190
Evan Cheng536e6672009-03-12 05:59:15 +000018191 // If this is not the MMX case, i.e. we are just turning i64 load/store
18192 // into f64 load/store, avoid the transformation if there are multiple
18193 // uses of the loaded value.
18194 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18195 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018196
Andrew Trickac6d9be2013-05-25 02:42:55 +000018197 SDLoc LdDL(Ld);
18198 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018199 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18200 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18201 // pair instead.
18202 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018203 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018204 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18205 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018206 Ld->isNonTemporal(), Ld->isInvariant(),
18207 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018208 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018209 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018210 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018211 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018212 Ops.size());
18213 }
Evan Cheng536e6672009-03-12 05:59:15 +000018214 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018215 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018216 St->isVolatile(), St->isNonTemporal(),
18217 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018218 }
Evan Cheng536e6672009-03-12 05:59:15 +000018219
18220 // Otherwise, lower to two pairs of 32-bit loads / stores.
18221 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018222 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18223 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018224
Owen Anderson825b72b2009-08-11 20:47:22 +000018225 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018226 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018227 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018228 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018229 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018230 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018231 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018232 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018233 MinAlign(Ld->getAlignment(), 4));
18234
18235 SDValue NewChain = LoLd.getValue(1);
18236 if (TokenFactorIndex != -1) {
18237 Ops.push_back(LoLd);
18238 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018239 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018240 Ops.size());
18241 }
18242
18243 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018244 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18245 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018246
18247 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018248 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018249 St->isVolatile(), St->isNonTemporal(),
18250 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018251 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018252 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018253 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018254 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018255 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018256 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018257 }
Dan Gohman475871a2008-07-27 21:46:04 +000018258 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018259}
18260
Duncan Sands17470be2011-09-22 20:15:48 +000018261/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18262/// and return the operands for the horizontal operation in LHS and RHS. A
18263/// horizontal operation performs the binary operation on successive elements
18264/// of its first operand, then on successive elements of its second operand,
18265/// returning the resulting values in a vector. For example, if
18266/// A = < float a0, float a1, float a2, float a3 >
18267/// and
18268/// B = < float b0, float b1, float b2, float b3 >
18269/// then the result of doing a horizontal operation on A and B is
18270/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18271/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18272/// A horizontal-op B, for some already available A and B, and if so then LHS is
18273/// set to A, RHS to B, and the routine returns 'true'.
18274/// Note that the binary operation should have the property that if one of the
18275/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018276static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018277 // Look for the following pattern: if
18278 // A = < float a0, float a1, float a2, float a3 >
18279 // B = < float b0, float b1, float b2, float b3 >
18280 // and
18281 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18282 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18283 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18284 // which is A horizontal-op B.
18285
18286 // At least one of the operands should be a vector shuffle.
18287 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18288 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18289 return false;
18290
Craig Topper5a0910b2013-08-15 02:33:50 +000018291 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018292
18293 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18294 "Unsupported vector type for horizontal add/sub");
18295
18296 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18297 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018298 unsigned NumElts = VT.getVectorNumElements();
18299 unsigned NumLanes = VT.getSizeInBits()/128;
18300 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018301 assert((NumLaneElts % 2 == 0) &&
18302 "Vector type should have an even number of elements in each lane");
18303 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018304
18305 // View LHS in the form
18306 // LHS = VECTOR_SHUFFLE A, B, LMask
18307 // If LHS is not a shuffle then pretend it is the shuffle
18308 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18309 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18310 // type VT.
18311 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018312 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018313 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18314 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18315 A = LHS.getOperand(0);
18316 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18317 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018318 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18319 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018320 } else {
18321 if (LHS.getOpcode() != ISD::UNDEF)
18322 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018323 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018324 LMask[i] = i;
18325 }
18326
18327 // Likewise, view RHS in the form
18328 // RHS = VECTOR_SHUFFLE C, D, RMask
18329 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018330 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018331 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18332 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18333 C = RHS.getOperand(0);
18334 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18335 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018336 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18337 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018338 } else {
18339 if (RHS.getOpcode() != ISD::UNDEF)
18340 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018341 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018342 RMask[i] = i;
18343 }
18344
18345 // Check that the shuffles are both shuffling the same vectors.
18346 if (!(A == C && B == D) && !(A == D && B == C))
18347 return false;
18348
18349 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18350 if (!A.getNode() && !B.getNode())
18351 return false;
18352
18353 // If A and B occur in reverse order in RHS, then "swap" them (which means
18354 // rewriting the mask).
18355 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018356 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018357
18358 // At this point LHS and RHS are equivalent to
18359 // LHS = VECTOR_SHUFFLE A, B, LMask
18360 // RHS = VECTOR_SHUFFLE A, B, RMask
18361 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018362 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18363 for (unsigned i = 0; i != NumLaneElts; ++i) {
18364 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018365
Craig Topper57bc5a02013-08-06 06:54:25 +000018366 // Ignore any UNDEF components.
18367 if (LIdx < 0 || RIdx < 0 ||
18368 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18369 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18370 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018371
Craig Topper57bc5a02013-08-06 06:54:25 +000018372 // Check that successive elements are being operated on. If not, this is
18373 // not a horizontal operation.
18374 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18375 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18376 if (!(LIdx == Index && RIdx == Index + 1) &&
18377 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18378 return false;
18379 }
Duncan Sands17470be2011-09-22 20:15:48 +000018380 }
18381
18382 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18383 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18384 return true;
18385}
18386
18387/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18388static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18389 const X86Subtarget *Subtarget) {
18390 EVT VT = N->getValueType(0);
18391 SDValue LHS = N->getOperand(0);
18392 SDValue RHS = N->getOperand(1);
18393
18394 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018395 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018396 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018397 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018398 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018399 return SDValue();
18400}
18401
18402/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18403static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18404 const X86Subtarget *Subtarget) {
18405 EVT VT = N->getValueType(0);
18406 SDValue LHS = N->getOperand(0);
18407 SDValue RHS = N->getOperand(1);
18408
18409 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018410 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018411 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018412 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018413 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018414 return SDValue();
18415}
18416
Chris Lattner6cf73262008-01-25 06:14:17 +000018417/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18418/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018419static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018420 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18421 // F[X]OR(0.0, x) -> x
18422 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018423 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18424 if (C->getValueAPF().isPosZero())
18425 return N->getOperand(1);
18426 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18427 if (C->getValueAPF().isPosZero())
18428 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018429 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018430}
18431
Nadav Rotemd60cb112012-08-19 13:06:16 +000018432/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18433/// X86ISD::FMAX nodes.
18434static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18435 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18436
18437 // Only perform optimizations if UnsafeMath is used.
18438 if (!DAG.getTarget().Options.UnsafeFPMath)
18439 return SDValue();
18440
18441 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018442 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018443 unsigned NewOp = 0;
18444 switch (N->getOpcode()) {
18445 default: llvm_unreachable("unknown opcode");
18446 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18447 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18448 }
18449
Andrew Trickac6d9be2013-05-25 02:42:55 +000018450 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018451 N->getOperand(0), N->getOperand(1));
18452}
18453
Chris Lattneraf723b92008-01-25 05:46:26 +000018454/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018455static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018456 // FAND(0.0, x) -> 0.0
18457 // FAND(x, 0.0) -> 0.0
18458 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18459 if (C->getValueAPF().isPosZero())
18460 return N->getOperand(0);
18461 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18462 if (C->getValueAPF().isPosZero())
18463 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018464 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018465}
18466
Benjamin Kramer75311b72013-08-04 12:05:16 +000018467/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18468static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18469 // FANDN(x, 0.0) -> 0.0
18470 // FANDN(0.0, x) -> x
18471 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18472 if (C->getValueAPF().isPosZero())
18473 return N->getOperand(1);
18474 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18475 if (C->getValueAPF().isPosZero())
18476 return N->getOperand(1);
18477 return SDValue();
18478}
18479
Dan Gohmane5af2d32009-01-29 01:59:02 +000018480static SDValue PerformBTCombine(SDNode *N,
18481 SelectionDAG &DAG,
18482 TargetLowering::DAGCombinerInfo &DCI) {
18483 // BT ignores high bits in the bit index operand.
18484 SDValue Op1 = N->getOperand(1);
18485 if (Op1.hasOneUse()) {
18486 unsigned BitWidth = Op1.getValueSizeInBits();
18487 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18488 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018489 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18490 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018491 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018492 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18493 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18494 DCI.CommitTargetLoweringOpt(TLO);
18495 }
18496 return SDValue();
18497}
Chris Lattner83e6c992006-10-04 06:57:07 +000018498
Eli Friedman7a5e5552009-06-07 06:52:44 +000018499static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18500 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018501 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018502 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018503 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018504 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018505 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018506 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018507 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018508 }
18509 return SDValue();
18510}
18511
Matt Arsenault225ed702013-05-18 00:21:46 +000018512static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018513 const X86Subtarget *Subtarget) {
18514 EVT VT = N->getValueType(0);
18515 if (!VT.isVector())
18516 return SDValue();
18517
18518 SDValue N0 = N->getOperand(0);
18519 SDValue N1 = N->getOperand(1);
18520 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018521 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018522
18523 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18524 // both SSE and AVX2 since there is no sign-extended shift right
18525 // operation on a vector with 64-bit elements.
18526 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18527 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18528 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18529 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18530 SDValue N00 = N0.getOperand(0);
18531
Matt Arsenault225ed702013-05-18 00:21:46 +000018532 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018533 // it may be replaced with X86ISD::VSEXT node.
18534 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18535 if (!ISD::isNormalLoad(N00.getNode()))
18536 return SDValue();
18537
18538 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018539 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018540 N00, N1);
18541 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18542 }
18543 }
18544 return SDValue();
18545}
18546
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018547static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18548 TargetLowering::DAGCombinerInfo &DCI,
18549 const X86Subtarget *Subtarget) {
18550 if (!DCI.isBeforeLegalizeOps())
18551 return SDValue();
18552
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018553 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018554 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018555
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018556 EVT VT = N->getValueType(0);
18557 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018558 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18559 if (R.getNode())
18560 return R;
18561 }
18562
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018563 return SDValue();
18564}
18565
Michael Liaof6c24ee2012-08-10 14:39:24 +000018566static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018567 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018568 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018569 EVT VT = N->getValueType(0);
18570
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018571 // Let legalize expand this if it isn't a legal type yet.
18572 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18573 return SDValue();
18574
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018575 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018576 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18577 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018578 return SDValue();
18579
18580 SDValue A = N->getOperand(0);
18581 SDValue B = N->getOperand(1);
18582 SDValue C = N->getOperand(2);
18583
18584 bool NegA = (A.getOpcode() == ISD::FNEG);
18585 bool NegB = (B.getOpcode() == ISD::FNEG);
18586 bool NegC = (C.getOpcode() == ISD::FNEG);
18587
Michael Liaof6c24ee2012-08-10 14:39:24 +000018588 // Negative multiplication when NegA xor NegB
18589 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018590 if (NegA)
18591 A = A.getOperand(0);
18592 if (NegB)
18593 B = B.getOperand(0);
18594 if (NegC)
18595 C = C.getOperand(0);
18596
18597 unsigned Opcode;
18598 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018599 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018600 else
Craig Topperbf404372012-08-31 15:40:30 +000018601 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18602
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018603 return DAG.getNode(Opcode, dl, VT, A, B, C);
18604}
18605
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018606static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018607 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018608 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018609 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18610 // (and (i32 x86isd::setcc_carry), 1)
18611 // This eliminates the zext. This transformation is necessary because
18612 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018613 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018614 SDValue N0 = N->getOperand(0);
18615 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018616
Evan Cheng2e489c42009-12-16 00:53:11 +000018617 if (N0.getOpcode() == ISD::AND &&
18618 N0.hasOneUse() &&
18619 N0.getOperand(0).hasOneUse()) {
18620 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018621 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18622 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18623 if (!C || C->getZExtValue() != 1)
18624 return SDValue();
18625 return DAG.getNode(ISD::AND, dl, VT,
18626 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18627 N00.getOperand(0), N00.getOperand(1)),
18628 DAG.getConstant(1, VT));
18629 }
18630 }
18631
Craig Topper5a529e42013-01-18 06:44:29 +000018632 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018633 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18634 if (R.getNode())
18635 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018636 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018637
Evan Cheng2e489c42009-12-16 00:53:11 +000018638 return SDValue();
18639}
18640
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018641// Optimize x == -y --> x+y == 0
18642// x != -y --> x+y != 0
18643static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18644 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18645 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018646 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018647
18648 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18649 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18650 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018651 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018652 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018653 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018654 addV, DAG.getConstant(0, addV.getValueType()), CC);
18655 }
18656 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18657 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18658 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018659 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018660 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018661 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018662 addV, DAG.getConstant(0, addV.getValueType()), CC);
18663 }
18664 return SDValue();
18665}
18666
Eric Christophere187e252013-01-31 00:50:48 +000018667// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18668// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018669// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018670static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018671 return DAG.getNode(ISD::AND, DL, MVT::i8,
18672 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18673 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18674 DAG.getConstant(1, MVT::i8));
18675}
18676
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018677// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018678static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18679 TargetLowering::DAGCombinerInfo &DCI,
18680 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018681 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018682 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18683 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018684
Shuxin Yanga5526a92012-10-31 23:11:48 +000018685 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018686 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018687 // materializing "setb reg".
18688 //
18689 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18690 // cannot take an immediate as its first operand.
18691 //
Eric Christophere187e252013-01-31 00:50:48 +000018692 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018693 EFLAGS.getValueType().isInteger() &&
18694 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018695 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018696 EFLAGS.getNode()->getVTList(),
18697 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18698 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18699 return MaterializeSETB(DL, NewEFLAGS, DAG);
18700 }
18701 }
18702
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018703 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18704 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18705 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018706 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018707 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018708
Michael Liao2a33cec2012-08-10 19:58:13 +000018709 SDValue Flags;
18710
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018711 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18712 if (Flags.getNode()) {
18713 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18714 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18715 }
18716
Michael Liao2a33cec2012-08-10 19:58:13 +000018717 return SDValue();
18718}
18719
18720// Optimize branch condition evaluation.
18721//
18722static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18723 TargetLowering::DAGCombinerInfo &DCI,
18724 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018725 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018726 SDValue Chain = N->getOperand(0);
18727 SDValue Dest = N->getOperand(1);
18728 SDValue EFLAGS = N->getOperand(3);
18729 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18730
18731 SDValue Flags;
18732
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018733 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18734 if (Flags.getNode()) {
18735 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18736 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18737 Flags);
18738 }
18739
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018740 return SDValue();
18741}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018742
Benjamin Kramer1396c402011-06-18 11:09:41 +000018743static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18744 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018745 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018746 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018747
18748 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018749 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018750 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018751 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018752 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18753 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18754 }
18755
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018756 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18757 // a 32-bit target where SSE doesn't support i64->FP operations.
18758 if (Op0.getOpcode() == ISD::LOAD) {
18759 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18760 EVT VT = Ld->getValueType(0);
18761 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18762 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18763 !XTLI->getSubtarget()->is64Bit() &&
18764 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018765 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18766 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018767 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18768 return FILDChain;
18769 }
18770 }
18771 return SDValue();
18772}
18773
Chris Lattner23a01992010-12-20 01:37:09 +000018774// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18775static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18776 X86TargetLowering::DAGCombinerInfo &DCI) {
18777 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18778 // the result is either zero or one (depending on the input carry bit).
18779 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18780 if (X86::isZeroNode(N->getOperand(0)) &&
18781 X86::isZeroNode(N->getOperand(1)) &&
18782 // We don't have a good way to replace an EFLAGS use, so only do this when
18783 // dead right now.
18784 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018785 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018786 EVT VT = N->getValueType(0);
18787 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18788 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18789 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18790 DAG.getConstant(X86::COND_B,MVT::i8),
18791 N->getOperand(2)),
18792 DAG.getConstant(1, VT));
18793 return DCI.CombineTo(N, Res1, CarryOut);
18794 }
18795
18796 return SDValue();
18797}
18798
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018799// fold (add Y, (sete X, 0)) -> adc 0, Y
18800// (add Y, (setne X, 0)) -> sbb -1, Y
18801// (sub (sete X, 0), Y) -> sbb 0, Y
18802// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018803static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018804 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018805
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018806 // Look through ZExts.
18807 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18808 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18809 return SDValue();
18810
18811 SDValue SetCC = Ext.getOperand(0);
18812 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18813 return SDValue();
18814
18815 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18816 if (CC != X86::COND_E && CC != X86::COND_NE)
18817 return SDValue();
18818
18819 SDValue Cmp = SetCC.getOperand(1);
18820 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018821 !X86::isZeroNode(Cmp.getOperand(1)) ||
18822 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018823 return SDValue();
18824
18825 SDValue CmpOp0 = Cmp.getOperand(0);
18826 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18827 DAG.getConstant(1, CmpOp0.getValueType()));
18828
18829 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18830 if (CC == X86::COND_NE)
18831 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18832 DL, OtherVal.getValueType(), OtherVal,
18833 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18834 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18835 DL, OtherVal.getValueType(), OtherVal,
18836 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18837}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018838
Craig Topper54f952a2011-11-19 09:02:40 +000018839/// PerformADDCombine - Do target-specific dag combines on integer adds.
18840static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18841 const X86Subtarget *Subtarget) {
18842 EVT VT = N->getValueType(0);
18843 SDValue Op0 = N->getOperand(0);
18844 SDValue Op1 = N->getOperand(1);
18845
18846 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018847 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018848 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018849 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018850 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018851
18852 return OptimizeConditionalInDecrement(N, DAG);
18853}
18854
18855static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18856 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018857 SDValue Op0 = N->getOperand(0);
18858 SDValue Op1 = N->getOperand(1);
18859
18860 // X86 can't encode an immediate LHS of a sub. See if we can push the
18861 // negation into a preceding instruction.
18862 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018863 // If the RHS of the sub is a XOR with one use and a constant, invert the
18864 // immediate. Then add one to the LHS of the sub so we can turn
18865 // X-Y -> X+~Y+1, saving one register.
18866 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18867 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018868 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018869 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018870 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018871 Op1.getOperand(0),
18872 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018873 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018874 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018875 }
18876 }
18877
Craig Topper54f952a2011-11-19 09:02:40 +000018878 // Try to synthesize horizontal adds from adds of shuffles.
18879 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000018880 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018881 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000018882 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018883 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018884
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018885 return OptimizeConditionalInDecrement(N, DAG);
18886}
18887
Michael Liaod9d09602012-10-23 17:34:00 +000018888/// performVZEXTCombine - Performs build vector combines
18889static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18890 TargetLowering::DAGCombinerInfo &DCI,
18891 const X86Subtarget *Subtarget) {
18892 // (vzext (bitcast (vzext (x)) -> (vzext x)
18893 SDValue In = N->getOperand(0);
18894 while (In.getOpcode() == ISD::BITCAST)
18895 In = In.getOperand(0);
18896
18897 if (In.getOpcode() != X86ISD::VZEXT)
18898 return SDValue();
18899
Andrew Trickac6d9be2013-05-25 02:42:55 +000018900 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000018901 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000018902}
18903
Dan Gohman475871a2008-07-27 21:46:04 +000018904SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000018905 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000018906 SelectionDAG &DAG = DCI.DAG;
18907 switch (N->getOpcode()) {
18908 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000018909 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000018910 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000018911 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000018912 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018913 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000018914 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
18915 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000018916 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000018917 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000018918 case ISD::SHL:
18919 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000018920 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000018921 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000018922 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000018923 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018924 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000018925 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018926 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000018927 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
18928 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000018929 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000018930 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000018931 case X86ISD::FMIN:
18932 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000018933 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000018934 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000018935 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018936 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000018937 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000018938 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018939 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018940 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000018941 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018942 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018943 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000018944 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000018945 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000018946 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000018947 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000018948 case X86ISD::UNPCKH:
18949 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000018950 case X86ISD::MOVHLPS:
18951 case X86ISD::MOVLHPS:
18952 case X86ISD::PSHUFD:
18953 case X86ISD::PSHUFHW:
18954 case X86ISD::PSHUFLW:
18955 case X86ISD::MOVSS:
18956 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000018957 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000018958 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000018959 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018960 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000018961 }
18962
Dan Gohman475871a2008-07-27 21:46:04 +000018963 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000018964}
18965
Evan Chenge5b51ac2010-04-17 06:13:15 +000018966/// isTypeDesirableForOp - Return true if the target has native support for
18967/// the specified value type and it is 'desirable' to use the type for the
18968/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
18969/// instruction encodings are longer and some i16 instructions are slow.
18970bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
18971 if (!isTypeLegal(VT))
18972 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000018973 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000018974 return true;
18975
18976 switch (Opc) {
18977 default:
18978 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000018979 case ISD::LOAD:
18980 case ISD::SIGN_EXTEND:
18981 case ISD::ZERO_EXTEND:
18982 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000018983 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000018984 case ISD::SRL:
18985 case ISD::SUB:
18986 case ISD::ADD:
18987 case ISD::MUL:
18988 case ISD::AND:
18989 case ISD::OR:
18990 case ISD::XOR:
18991 return false;
18992 }
18993}
18994
18995/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000018996/// beneficial for dag combiner to promote the specified node. If true, it
18997/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000018998bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000018999 EVT VT = Op.getValueType();
19000 if (VT != MVT::i16)
19001 return false;
19002
Evan Cheng4c26e932010-04-19 19:29:22 +000019003 bool Promote = false;
19004 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019005 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019006 default: break;
19007 case ISD::LOAD: {
19008 LoadSDNode *LD = cast<LoadSDNode>(Op);
19009 // If the non-extending load has a single use and it's not live out, then it
19010 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019011 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19012 Op.hasOneUse()*/) {
19013 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19014 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19015 // The only case where we'd want to promote LOAD (rather then it being
19016 // promoted as an operand is when it's only use is liveout.
19017 if (UI->getOpcode() != ISD::CopyToReg)
19018 return false;
19019 }
19020 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019021 Promote = true;
19022 break;
19023 }
19024 case ISD::SIGN_EXTEND:
19025 case ISD::ZERO_EXTEND:
19026 case ISD::ANY_EXTEND:
19027 Promote = true;
19028 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019029 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019030 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019031 SDValue N0 = Op.getOperand(0);
19032 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019033 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019034 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019035 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019036 break;
19037 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019038 case ISD::ADD:
19039 case ISD::MUL:
19040 case ISD::AND:
19041 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019042 case ISD::XOR:
19043 Commute = true;
19044 // fallthrough
19045 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019046 SDValue N0 = Op.getOperand(0);
19047 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019048 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019049 return false;
19050 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019051 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019052 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019053 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019054 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019055 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019056 }
19057 }
19058
19059 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019060 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019061}
19062
Evan Cheng60c07e12006-07-05 22:17:51 +000019063//===----------------------------------------------------------------------===//
19064// X86 Inline Assembly Support
19065//===----------------------------------------------------------------------===//
19066
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019067namespace {
19068 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019069 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019070 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019071
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019072 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019073 StringRef piece(*args[i]);
19074 if (!s.startswith(piece)) // Check if the piece matches.
19075 return false;
19076
19077 s = s.substr(piece.size());
19078 StringRef::size_type pos = s.find_first_not_of(" \t");
19079 if (pos == 0) // We matched a prefix.
19080 return false;
19081
19082 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019083 }
19084
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019085 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019086 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019087 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019088}
19089
Chris Lattnerb8105652009-07-20 17:51:36 +000019090bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19091 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019092
19093 std::string AsmStr = IA->getAsmString();
19094
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019095 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19096 if (!Ty || Ty->getBitWidth() % 16 != 0)
19097 return false;
19098
Chris Lattnerb8105652009-07-20 17:51:36 +000019099 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019100 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019101 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019102
19103 switch (AsmPieces.size()) {
19104 default: return false;
19105 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019106 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019107 // we will turn this bswap into something that will be lowered to logical
19108 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19109 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019110 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019111 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19112 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19113 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19114 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19115 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19116 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019117 // No need to check constraints, nothing other than the equivalent of
19118 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019119 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019120 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019121
Chris Lattnerb8105652009-07-20 17:51:36 +000019122 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019123 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019124 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019125 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19126 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019127 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019128 const std::string &ConstraintsStr = IA->getConstraintString();
19129 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019130 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000019131 if (AsmPieces.size() == 4 &&
19132 AsmPieces[0] == "~{cc}" &&
19133 AsmPieces[1] == "~{dirflag}" &&
19134 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019135 AsmPieces[3] == "~{fpsr}")
19136 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019137 }
19138 break;
19139 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019140 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019141 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019142 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19143 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19144 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019145 AsmPieces.clear();
19146 const std::string &ConstraintsStr = IA->getConstraintString();
19147 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019148 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019149 if (AsmPieces.size() == 4 &&
19150 AsmPieces[0] == "~{cc}" &&
19151 AsmPieces[1] == "~{dirflag}" &&
19152 AsmPieces[2] == "~{flags}" &&
19153 AsmPieces[3] == "~{fpsr}")
19154 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019155 }
Evan Cheng55d42002011-01-08 01:24:27 +000019156
19157 if (CI->getType()->isIntegerTy(64)) {
19158 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19159 if (Constraints.size() >= 2 &&
19160 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19161 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19162 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019163 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19164 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19165 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019166 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019167 }
19168 }
19169 break;
19170 }
19171 return false;
19172}
19173
Chris Lattnerf4dff842006-07-11 02:54:03 +000019174/// getConstraintType - Given a constraint letter, return the type of
19175/// constraint it is for this target.
19176X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019177X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19178 if (Constraint.size() == 1) {
19179 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019180 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019181 case 'q':
19182 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019183 case 'f':
19184 case 't':
19185 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019186 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019187 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019188 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019189 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019190 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019191 case 'a':
19192 case 'b':
19193 case 'c':
19194 case 'd':
19195 case 'S':
19196 case 'D':
19197 case 'A':
19198 return C_Register;
19199 case 'I':
19200 case 'J':
19201 case 'K':
19202 case 'L':
19203 case 'M':
19204 case 'N':
19205 case 'G':
19206 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019207 case 'e':
19208 case 'Z':
19209 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019210 default:
19211 break;
19212 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019213 }
Chris Lattner4234f572007-03-25 02:14:49 +000019214 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019215}
19216
John Thompson44ab89e2010-10-29 17:29:13 +000019217/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019218/// This object must already have been set up with the operand type
19219/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019220TargetLowering::ConstraintWeight
19221 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019222 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019223 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019224 Value *CallOperandVal = info.CallOperandVal;
19225 // If we don't have a value, we can't do a match,
19226 // but allow it at the lowest weight.
19227 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019228 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019229 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019230 // Look at the constraint type.
19231 switch (*constraint) {
19232 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019233 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19234 case 'R':
19235 case 'q':
19236 case 'Q':
19237 case 'a':
19238 case 'b':
19239 case 'c':
19240 case 'd':
19241 case 'S':
19242 case 'D':
19243 case 'A':
19244 if (CallOperandVal->getType()->isIntegerTy())
19245 weight = CW_SpecificReg;
19246 break;
19247 case 'f':
19248 case 't':
19249 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019250 if (type->isFloatingPointTy())
19251 weight = CW_SpecificReg;
19252 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019253 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019254 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19255 weight = CW_SpecificReg;
19256 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019257 case 'x':
19258 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019259 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019260 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019261 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019262 break;
19263 case 'I':
19264 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19265 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019266 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019267 }
19268 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019269 case 'J':
19270 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19271 if (C->getZExtValue() <= 63)
19272 weight = CW_Constant;
19273 }
19274 break;
19275 case 'K':
19276 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19277 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19278 weight = CW_Constant;
19279 }
19280 break;
19281 case 'L':
19282 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19283 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19284 weight = CW_Constant;
19285 }
19286 break;
19287 case 'M':
19288 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19289 if (C->getZExtValue() <= 3)
19290 weight = CW_Constant;
19291 }
19292 break;
19293 case 'N':
19294 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19295 if (C->getZExtValue() <= 0xff)
19296 weight = CW_Constant;
19297 }
19298 break;
19299 case 'G':
19300 case 'C':
19301 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19302 weight = CW_Constant;
19303 }
19304 break;
19305 case 'e':
19306 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19307 if ((C->getSExtValue() >= -0x80000000LL) &&
19308 (C->getSExtValue() <= 0x7fffffffLL))
19309 weight = CW_Constant;
19310 }
19311 break;
19312 case 'Z':
19313 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19314 if (C->getZExtValue() <= 0xffffffff)
19315 weight = CW_Constant;
19316 }
19317 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019318 }
19319 return weight;
19320}
19321
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019322/// LowerXConstraint - try to replace an X constraint, which matches anything,
19323/// with another that has more specific requirements based on the type of the
19324/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019325const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019326LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019327 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19328 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019329 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019330 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019331 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019332 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019333 return "x";
19334 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019335
Chris Lattner5e764232008-04-26 23:02:14 +000019336 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019337}
19338
Chris Lattner48884cd2007-08-25 00:47:38 +000019339/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19340/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019341void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019342 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019343 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019344 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019345 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019346
Eric Christopher100c8332011-06-02 23:16:42 +000019347 // Only support length 1 constraints for now.
19348 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019349
Eric Christopher100c8332011-06-02 23:16:42 +000019350 char ConstraintLetter = Constraint[0];
19351 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019352 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019353 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019354 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019355 if (C->getZExtValue() <= 31) {
19356 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019357 break;
19358 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019359 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019360 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019361 case 'J':
19362 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019363 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019364 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19365 break;
19366 }
19367 }
19368 return;
19369 case 'K':
19370 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019371 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019372 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19373 break;
19374 }
19375 }
19376 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019377 case 'N':
19378 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019379 if (C->getZExtValue() <= 255) {
19380 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019381 break;
19382 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019383 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019384 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019385 case 'e': {
19386 // 32-bit signed value
19387 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019388 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19389 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019390 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019391 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019392 break;
19393 }
19394 // FIXME gcc accepts some relocatable values here too, but only in certain
19395 // memory models; it's complicated.
19396 }
19397 return;
19398 }
19399 case 'Z': {
19400 // 32-bit unsigned value
19401 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019402 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19403 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019404 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19405 break;
19406 }
19407 }
19408 // FIXME gcc accepts some relocatable values here too, but only in certain
19409 // memory models; it's complicated.
19410 return;
19411 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019412 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019413 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019414 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019415 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019416 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019417 break;
19418 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019419
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019420 // In any sort of PIC mode addresses need to be computed at runtime by
19421 // adding in a register or some sort of table lookup. These can't
19422 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019423 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019424 return;
19425
Chris Lattnerdc43a882007-05-03 16:52:29 +000019426 // If we are in non-pic codegen mode, we allow the address of a global (with
19427 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019428 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019429 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019430
Chris Lattner49921962009-05-08 18:23:14 +000019431 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19432 while (1) {
19433 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19434 Offset += GA->getOffset();
19435 break;
19436 } else if (Op.getOpcode() == ISD::ADD) {
19437 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19438 Offset += C->getZExtValue();
19439 Op = Op.getOperand(0);
19440 continue;
19441 }
19442 } else if (Op.getOpcode() == ISD::SUB) {
19443 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19444 Offset += -C->getZExtValue();
19445 Op = Op.getOperand(0);
19446 continue;
19447 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019448 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019449
Chris Lattner49921962009-05-08 18:23:14 +000019450 // Otherwise, this isn't something we can handle, reject it.
19451 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019452 }
Eric Christopherfd179292009-08-27 18:07:15 +000019453
Dan Gohman46510a72010-04-15 01:51:59 +000019454 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019455 // If we require an extra load to get this address, as in PIC mode, we
19456 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019457 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19458 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019459 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019460
Andrew Trickac6d9be2013-05-25 02:42:55 +000019461 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019462 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019463 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019464 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019465 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019466
Gabor Greifba36cb52008-08-28 21:40:38 +000019467 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019468 Ops.push_back(Result);
19469 return;
19470 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019471 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019472}
19473
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019474std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019475X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019476 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019477 // First, see if this is a constraint that directly corresponds to an LLVM
19478 // register class.
19479 if (Constraint.size() == 1) {
19480 // GCC Constraint Letters
19481 switch (Constraint[0]) {
19482 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019483 // TODO: Slight differences here in allocation order and leaving
19484 // RIP in the class. Do they matter any more here than they do
19485 // in the normal allocation?
19486 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19487 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019488 if (VT == MVT::i32 || VT == MVT::f32)
19489 return std::make_pair(0U, &X86::GR32RegClass);
19490 if (VT == MVT::i16)
19491 return std::make_pair(0U, &X86::GR16RegClass);
19492 if (VT == MVT::i8 || VT == MVT::i1)
19493 return std::make_pair(0U, &X86::GR8RegClass);
19494 if (VT == MVT::i64 || VT == MVT::f64)
19495 return std::make_pair(0U, &X86::GR64RegClass);
19496 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019497 }
19498 // 32-bit fallthrough
19499 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019500 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019501 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19502 if (VT == MVT::i16)
19503 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19504 if (VT == MVT::i8 || VT == MVT::i1)
19505 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19506 if (VT == MVT::i64)
19507 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019508 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019509 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019510 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019511 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019512 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019513 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019514 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019515 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019516 return std::make_pair(0U, &X86::GR32RegClass);
19517 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019518 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019519 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019520 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019521 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019522 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019523 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019524 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19525 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019526 case 'f': // FP Stack registers.
19527 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19528 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019529 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019530 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019531 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019532 return std::make_pair(0U, &X86::RFP64RegClass);
19533 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019534 case 'y': // MMX_REGS if MMX allowed.
19535 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019536 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019537 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019538 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019539 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019540 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019541 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019542
Chad Rosier5b3fca52013-06-22 18:37:38 +000019543 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019544 default: break;
19545 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019546 case MVT::f32:
19547 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019548 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019549 case MVT::f64:
19550 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019551 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019552 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019553 case MVT::v16i8:
19554 case MVT::v8i16:
19555 case MVT::v4i32:
19556 case MVT::v2i64:
19557 case MVT::v4f32:
19558 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019559 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019560 // AVX types.
19561 case MVT::v32i8:
19562 case MVT::v16i16:
19563 case MVT::v8i32:
19564 case MVT::v4i64:
19565 case MVT::v8f32:
19566 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019567 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019568 case MVT::v8f64:
19569 case MVT::v16f32:
19570 case MVT::v16i32:
19571 case MVT::v8i64:
19572 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019573 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019574 break;
19575 }
19576 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019577
Chris Lattnerf76d1802006-07-31 23:26:50 +000019578 // Use the default implementation in TargetLowering to convert the register
19579 // constraint into a member of a register class.
19580 std::pair<unsigned, const TargetRegisterClass*> Res;
19581 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019582
19583 // Not found as a standard register?
19584 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019585 // Map st(0) -> st(7) -> ST0
19586 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19587 tolower(Constraint[1]) == 's' &&
19588 tolower(Constraint[2]) == 't' &&
19589 Constraint[3] == '(' &&
19590 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19591 Constraint[5] == ')' &&
19592 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019593
Chris Lattner56d77c72009-09-13 22:41:48 +000019594 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019595 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019596 return Res;
19597 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019598
Chris Lattner56d77c72009-09-13 22:41:48 +000019599 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019600 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019601 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019602 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019603 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019604 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019605
19606 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019607 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019608 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019609 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019610 return Res;
19611 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019612
Dale Johannesen330169f2008-11-13 21:52:36 +000019613 // 'A' means EAX + EDX.
19614 if (Constraint == "A") {
19615 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019616 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019617 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019618 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019619 return Res;
19620 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019621
Chris Lattnerf76d1802006-07-31 23:26:50 +000019622 // Otherwise, check to see if this is a register class of the wrong value
19623 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19624 // turn into {ax},{dx}.
19625 if (Res.second->hasType(VT))
19626 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019627
Chris Lattnerf76d1802006-07-31 23:26:50 +000019628 // All of the single-register GCC register classes map their values onto
19629 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19630 // really want an 8-bit or 32-bit register, map to the appropriate register
19631 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019632 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019633 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019634 unsigned DestReg = 0;
19635 switch (Res.first) {
19636 default: break;
19637 case X86::AX: DestReg = X86::AL; break;
19638 case X86::DX: DestReg = X86::DL; break;
19639 case X86::CX: DestReg = X86::CL; break;
19640 case X86::BX: DestReg = X86::BL; break;
19641 }
19642 if (DestReg) {
19643 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019644 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019645 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019646 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019647 unsigned DestReg = 0;
19648 switch (Res.first) {
19649 default: break;
19650 case X86::AX: DestReg = X86::EAX; break;
19651 case X86::DX: DestReg = X86::EDX; break;
19652 case X86::CX: DestReg = X86::ECX; break;
19653 case X86::BX: DestReg = X86::EBX; break;
19654 case X86::SI: DestReg = X86::ESI; break;
19655 case X86::DI: DestReg = X86::EDI; break;
19656 case X86::BP: DestReg = X86::EBP; break;
19657 case X86::SP: DestReg = X86::ESP; break;
19658 }
19659 if (DestReg) {
19660 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019661 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019662 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019663 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019664 unsigned DestReg = 0;
19665 switch (Res.first) {
19666 default: break;
19667 case X86::AX: DestReg = X86::RAX; break;
19668 case X86::DX: DestReg = X86::RDX; break;
19669 case X86::CX: DestReg = X86::RCX; break;
19670 case X86::BX: DestReg = X86::RBX; break;
19671 case X86::SI: DestReg = X86::RSI; break;
19672 case X86::DI: DestReg = X86::RDI; break;
19673 case X86::BP: DestReg = X86::RBP; break;
19674 case X86::SP: DestReg = X86::RSP; break;
19675 }
19676 if (DestReg) {
19677 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019678 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019679 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019680 }
Craig Topperc9099502012-04-20 06:31:50 +000019681 } else if (Res.second == &X86::FR32RegClass ||
19682 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019683 Res.second == &X86::VR128RegClass ||
19684 Res.second == &X86::VR256RegClass ||
19685 Res.second == &X86::FR32XRegClass ||
19686 Res.second == &X86::FR64XRegClass ||
19687 Res.second == &X86::VR128XRegClass ||
19688 Res.second == &X86::VR256XRegClass ||
19689 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019690 // Handle references to XMM physical registers that got mapped into the
19691 // wrong class. This can happen with constraints like {xmm0} where the
19692 // target independent register mapper will just pick the first match it can
19693 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019694
19695 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019696 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019697 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019698 Res.second = &X86::FR64RegClass;
19699 else if (X86::VR128RegClass.hasType(VT))
19700 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019701 else if (X86::VR256RegClass.hasType(VT))
19702 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019703 else if (X86::VR512RegClass.hasType(VT))
19704 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019705 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019706
Chris Lattnerf76d1802006-07-31 23:26:50 +000019707 return Res;
19708}