blob: 592e5b37ac8e1d47a21aa30a2eb3e7ae52225956 [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);
1393
1394 // Custom lower several nodes.
1395 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1396 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1397 MVT VT = (MVT::SimpleValueType)i;
1398
Elena Demikhovsky07801792013-08-01 13:34:06 +00001399 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001400 // Extract subvector is special because the value type
1401 // (result) is 256/128-bit but the source is 512-bit wide.
1402 if (VT.is128BitVector() || VT.is256BitVector())
1403 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1404
1405 if (VT.getVectorElementType() == MVT::i1)
1406 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1407
1408 // Do not attempt to custom lower other non-512-bit vectors
1409 if (!VT.is512BitVector())
1410 continue;
1411
1412 if (VT != MVT::v8i64) {
1413 setOperationAction(ISD::XOR, VT, Promote);
1414 AddPromotedToType (ISD::XOR, VT, MVT::v8i64);
1415 setOperationAction(ISD::OR, VT, Promote);
1416 AddPromotedToType (ISD::OR, VT, MVT::v8i64);
1417 setOperationAction(ISD::AND, VT, Promote);
1418 AddPromotedToType (ISD::AND, VT, MVT::v8i64);
1419 }
Elena Demikhovsky07801792013-08-01 13:34:06 +00001420 if ( EltSize >= 32) {
1421 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1422 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1423 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1424 setOperationAction(ISD::VSELECT, VT, Legal);
1425 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1426 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1427 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1428 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001429 }
1430 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1431 MVT VT = (MVT::SimpleValueType)i;
1432
1433 // Do not attempt to promote non-256-bit vectors
1434 if (!VT.is512BitVector())
1435 continue;
1436
1437 setOperationAction(ISD::LOAD, VT, Promote);
1438 AddPromotedToType (ISD::LOAD, VT, MVT::v8i64);
1439 setOperationAction(ISD::SELECT, VT, Promote);
1440 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1441 }
1442 }// has AVX-512
1443
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001444 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1445 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001446 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1447 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001448 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1449 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001450 }
1451
Evan Cheng6be2c582006-04-05 23:38:46 +00001452 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001453 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001454 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001455
Eli Friedman962f5492010-06-02 19:35:46 +00001456 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1457 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001458 //
Eli Friedman962f5492010-06-02 19:35:46 +00001459 // FIXME: We really should do custom legalization for addition and
1460 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1461 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001462 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1463 // Add/Sub/Mul with overflow operations are custom lowered.
1464 MVT VT = IntVTs[i];
1465 setOperationAction(ISD::SADDO, VT, Custom);
1466 setOperationAction(ISD::UADDO, VT, Custom);
1467 setOperationAction(ISD::SSUBO, VT, Custom);
1468 setOperationAction(ISD::USUBO, VT, Custom);
1469 setOperationAction(ISD::SMULO, VT, Custom);
1470 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001471 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001472
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001473 // There are no 8-bit 3-address imul/mul instructions
1474 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1475 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001476
Evan Chengd54f2d52009-03-31 19:38:51 +00001477 if (!Subtarget->is64Bit()) {
1478 // These libcalls are not available in 32-bit.
1479 setLibcallName(RTLIB::SHL_I128, 0);
1480 setLibcallName(RTLIB::SRL_I128, 0);
1481 setLibcallName(RTLIB::SRA_I128, 0);
1482 }
1483
Evan Cheng8688a582013-01-29 02:32:37 +00001484 // Combine sin / cos into one node or libcall if possible.
1485 if (Subtarget->hasSinCos()) {
1486 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1487 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001488 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001489 // For MacOSX, we don't want to the normal expansion of a libcall to
1490 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1491 // traffic.
1492 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1493 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1494 }
1495 }
1496
Evan Cheng206ee9d2006-07-07 08:33:52 +00001497 // We have target-specific dag combine patterns for the following nodes:
1498 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001499 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001500 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001501 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001502 setTargetDAGCombine(ISD::SHL);
1503 setTargetDAGCombine(ISD::SRA);
1504 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001505 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001506 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001507 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001508 setTargetDAGCombine(ISD::FADD);
1509 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001510 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001511 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001512 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001513 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001514 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001515 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001516 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001517 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001518 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001519 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001520 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001521 if (Subtarget->is64Bit())
1522 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001523 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001524
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001525 computeRegisterProperties();
1526
Evan Cheng05219282011-01-06 06:52:41 +00001527 // On Darwin, -Os means optimize for size without hurting performance,
1528 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001529 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1530 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1531 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1532 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1533 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1534 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001535 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001536
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001537 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001538 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001539
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001540 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001541}
1542
Matt Arsenault225ed702013-05-18 00:21:46 +00001543EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Duncan Sands28b77e92011-09-06 19:07:46 +00001544 if (!VT.isVector()) return MVT::i8;
1545 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001546}
1547
Evan Cheng29286502008-01-23 23:17:41 +00001548/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1549/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001550static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001551 if (MaxAlign == 16)
1552 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001553 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001554 if (VTy->getBitWidth() == 128)
1555 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001556 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001557 unsigned EltAlign = 0;
1558 getMaxByValAlign(ATy->getElementType(), EltAlign);
1559 if (EltAlign > MaxAlign)
1560 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001561 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001562 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1563 unsigned EltAlign = 0;
1564 getMaxByValAlign(STy->getElementType(i), EltAlign);
1565 if (EltAlign > MaxAlign)
1566 MaxAlign = EltAlign;
1567 if (MaxAlign == 16)
1568 break;
1569 }
1570 }
Evan Cheng29286502008-01-23 23:17:41 +00001571}
1572
1573/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1574/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001575/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1576/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001577unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001578 if (Subtarget->is64Bit()) {
1579 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001580 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001581 if (TyAlign > 8)
1582 return TyAlign;
1583 return 8;
1584 }
1585
Evan Cheng29286502008-01-23 23:17:41 +00001586 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001587 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001588 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001589 return Align;
1590}
Chris Lattner2b02a442007-02-25 08:29:00 +00001591
Evan Chengf0df0312008-05-15 08:39:06 +00001592/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001593/// and store operations as a result of memset, memcpy, and memmove
1594/// lowering. If DstAlign is zero that means it's safe to destination
1595/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1596/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001597/// probably because the source does not need to be loaded. If 'IsMemset' is
1598/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1599/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1600/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001601/// It returns EVT::Other if the type should be determined using generic
1602/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001603EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001604X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1605 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001606 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001607 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001608 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001609 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001610 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001611 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1612 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001613 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001614 (Subtarget->isUnalignedMemAccessFast() ||
1615 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001616 (SrcAlign == 0 || SrcAlign >= 16)))) {
1617 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001618 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001619 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001620 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001621 return MVT::v8f32;
1622 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001623 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001624 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001625 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001626 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001627 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001628 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001629 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001630 // Do not use f64 to lower memcpy if source is string constant. It's
1631 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001632 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001633 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001634 }
Evan Chengf0df0312008-05-15 08:39:06 +00001635 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001636 return MVT::i64;
1637 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001638}
1639
Evan Cheng7d342672012-12-12 01:32:07 +00001640bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001641 if (VT == MVT::f32)
1642 return X86ScalarSSEf32;
1643 else if (VT == MVT::f64)
1644 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001645 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001646}
1647
Evan Cheng376642e2012-12-10 23:21:26 +00001648bool
1649X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1650 if (Fast)
1651 *Fast = Subtarget->isUnalignedMemAccessFast();
1652 return true;
1653}
1654
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001655/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1656/// current function. The returned value is a member of the
1657/// MachineJumpTableInfo::JTEntryKind enum.
1658unsigned X86TargetLowering::getJumpTableEncoding() const {
1659 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1660 // symbol.
1661 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1662 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001663 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001664
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001665 // Otherwise, use the normal jump table encoding heuristics.
1666 return TargetLowering::getJumpTableEncoding();
1667}
1668
Chris Lattnerc64daab2010-01-26 05:02:42 +00001669const MCExpr *
1670X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1671 const MachineBasicBlock *MBB,
1672 unsigned uid,MCContext &Ctx) const{
1673 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1674 Subtarget->isPICStyleGOT());
1675 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1676 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001677 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1678 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001679}
1680
Evan Chengcc415862007-11-09 01:32:10 +00001681/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1682/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001683SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001684 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001685 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001686 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001687 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001688 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001689 return Table;
1690}
1691
Chris Lattner589c6f62010-01-26 06:28:43 +00001692/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1693/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1694/// MCExpr.
1695const MCExpr *X86TargetLowering::
1696getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1697 MCContext &Ctx) const {
1698 // X86-64 uses RIP relative addressing based on the jump table label.
1699 if (Subtarget->isPICStyleRIPRel())
1700 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1701
1702 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001703 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001704}
1705
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001706// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001707std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001708X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001709 const TargetRegisterClass *RRC = 0;
1710 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001711 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001712 default:
1713 return TargetLowering::findRepresentativeClass(VT);
1714 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001715 RRC = Subtarget->is64Bit() ?
1716 (const TargetRegisterClass*)&X86::GR64RegClass :
1717 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001718 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001719 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001720 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001721 break;
1722 case MVT::f32: case MVT::f64:
1723 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1724 case MVT::v4f32: case MVT::v2f64:
1725 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1726 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001727 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001728 break;
1729 }
1730 return std::make_pair(RRC, Cost);
1731}
1732
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001733bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1734 unsigned &Offset) const {
1735 if (!Subtarget->isTargetLinux())
1736 return false;
1737
1738 if (Subtarget->is64Bit()) {
1739 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1740 Offset = 0x28;
1741 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1742 AddressSpace = 256;
1743 else
1744 AddressSpace = 257;
1745 } else {
1746 // %gs:0x14 on i386
1747 Offset = 0x14;
1748 AddressSpace = 256;
1749 }
1750 return true;
1751}
1752
Chris Lattner2b02a442007-02-25 08:29:00 +00001753//===----------------------------------------------------------------------===//
1754// Return Value Calling Convention Implementation
1755//===----------------------------------------------------------------------===//
1756
Chris Lattner59ed56b2007-02-28 04:55:35 +00001757#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001758
Michael J. Spencerec38de22010-10-10 22:04:20 +00001759bool
Eric Christopher471e4222011-06-08 23:55:35 +00001760X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001761 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001762 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001763 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001764 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001765 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001766 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001767 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001768}
1769
Dan Gohman98ca4f22009-08-05 01:29:28 +00001770SDValue
1771X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001772 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001773 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001774 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001775 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001776 MachineFunction &MF = DAG.getMachineFunction();
1777 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001778
Chris Lattner9774c912007-02-27 05:28:59 +00001779 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001780 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001781 RVLocs, *DAG.getContext());
1782 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001783
Dan Gohman475871a2008-07-27 21:46:04 +00001784 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001785 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001786 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1787 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001788 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1789 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001790
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001791 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001792 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1793 CCValAssign &VA = RVLocs[i];
1794 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001795 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001796 EVT ValVT = ValToCopy.getValueType();
1797
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001798 // Promote values to the appropriate types
1799 if (VA.getLocInfo() == CCValAssign::SExt)
1800 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1801 else if (VA.getLocInfo() == CCValAssign::ZExt)
1802 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1803 else if (VA.getLocInfo() == CCValAssign::AExt)
1804 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1805 else if (VA.getLocInfo() == CCValAssign::BCvt)
1806 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1807
Dale Johannesenc4510512010-09-24 19:05:48 +00001808 // If this is x86-64, and we disabled SSE, we can't return FP values,
1809 // or SSE or MMX vectors.
1810 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1811 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001812 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001813 report_fatal_error("SSE register return with SSE disabled");
1814 }
1815 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1816 // llvm-gcc has never done it right and no one has noticed, so this
1817 // should be OK for now.
1818 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001819 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001820 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001821
Chris Lattner447ff682008-03-11 03:23:40 +00001822 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1823 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001824 if (VA.getLocReg() == X86::ST0 ||
1825 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001826 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1827 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001828 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001829 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001830 RetOps.push_back(ValToCopy);
1831 // Don't emit a copytoreg.
1832 continue;
1833 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001834
Evan Cheng242b38b2009-02-23 09:03:22 +00001835 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1836 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001837 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001838 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001839 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001840 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001841 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1842 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001843 // If we don't have SSE2 available, convert to v4f32 so the generated
1844 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001845 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001846 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001847 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001848 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001849 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001850
Dale Johannesendd64c412009-02-04 00:33:20 +00001851 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001852 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001853 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001854 }
Dan Gohman61a92132008-04-21 23:59:07 +00001855
Eli Benderskya5597f02013-01-25 22:07:43 +00001856 // The x86-64 ABIs require that for returning structs by value we copy
1857 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001858 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001859 // We saved the argument into a virtual register in the entry block,
1860 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001861 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1862 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001863 MachineFunction &MF = DAG.getMachineFunction();
1864 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1865 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001866 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001867 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001868 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001869
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001870 unsigned RetValReg
1871 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1872 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001873 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001874 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001875
Eli Benderskya5597f02013-01-25 22:07:43 +00001876 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001877 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001879
Chris Lattner447ff682008-03-11 03:23:40 +00001880 RetOps[0] = Chain; // Update chain.
1881
1882 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001883 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001884 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001885
1886 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001887 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001888}
1889
Evan Chengbf010eb2012-04-10 01:51:00 +00001890bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001891 if (N->getNumValues() != 1)
1892 return false;
1893 if (!N->hasNUsesOfValue(1, 0))
1894 return false;
1895
Evan Chengbf010eb2012-04-10 01:51:00 +00001896 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001897 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001898 if (Copy->getOpcode() == ISD::CopyToReg) {
1899 // If the copy has a glue operand, we conservatively assume it isn't safe to
1900 // perform a tail call.
1901 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1902 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001903 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001904 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001905 return false;
1906
Evan Cheng1bf891a2010-12-01 22:59:46 +00001907 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001908 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001909 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001910 if (UI->getOpcode() != X86ISD::RET_FLAG)
1911 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001912 HasRet = true;
1913 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001914
Evan Chengbf010eb2012-04-10 01:51:00 +00001915 if (!HasRet)
1916 return false;
1917
1918 Chain = TCChain;
1919 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001920}
1921
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001922MVT
1923X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001924 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001925 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001926 // TODO: Is this also valid on 32-bit?
1927 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001928 ReturnMVT = MVT::i8;
1929 else
1930 ReturnMVT = MVT::i32;
1931
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001932 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001933 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001934}
1935
Dan Gohman98ca4f22009-08-05 01:29:28 +00001936/// LowerCallResult - Lower the result values of a call into the
1937/// appropriate copies out of appropriate physical registers.
1938///
1939SDValue
1940X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001941 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001942 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001943 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001944 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001945
Chris Lattnere32bbf62007-02-28 07:09:55 +00001946 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001947 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001948 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001949 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001950 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001951 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001952
Chris Lattner3085e152007-02-25 08:59:22 +00001953 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001954 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001955 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001956 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001957
Torok Edwin3f142c32009-02-01 18:15:56 +00001958 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001959 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001960 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001961 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001962 }
1963
Evan Cheng79fb3b42009-02-20 20:43:02 +00001964 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001965
1966 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001967 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001968 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001969 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001970 // instead.
1971 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1972 // If we prefer to use the value in xmm registers, copy it out as f80 and
1973 // use a truncate to move it from fp stack reg to xmm reg.
1974 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001975 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001976 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001977 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001978 Val = Chain.getValue(0);
1979
1980 // Round the f80 to the right size, which also moves it to the appropriate
1981 // xmm register.
1982 if (CopyVT != VA.getValVT())
1983 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1984 // This truncation won't change the value.
1985 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001986 } else {
1987 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1988 CopyVT, InFlag).getValue(1);
1989 Val = Chain.getValue(0);
1990 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001991 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001992 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001993 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001994
Dan Gohman98ca4f22009-08-05 01:29:28 +00001995 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001996}
1997
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001998//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001999// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002000//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002001// StdCall calling convention seems to be standard for many Windows' API
2002// routines and around. It differs from C calling convention just a little:
2003// callee should clean up the stack, not caller. Symbols should be also
2004// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002005// For info on fast calling convention see Fast Calling Convention (tail call)
2006// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002007
Dan Gohman98ca4f22009-08-05 01:29:28 +00002008/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002009/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002010enum StructReturnType {
2011 NotStructReturn,
2012 RegStructReturn,
2013 StackStructReturn
2014};
2015static StructReturnType
2016callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002017 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002018 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002019
Rafael Espindola1cee7102012-07-25 13:41:10 +00002020 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2021 if (!Flags.isSRet())
2022 return NotStructReturn;
2023 if (Flags.isInReg())
2024 return RegStructReturn;
2025 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002026}
2027
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002028/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002029/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002030static StructReturnType
2031argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002032 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002033 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002034
Rafael Espindola1cee7102012-07-25 13:41:10 +00002035 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2036 if (!Flags.isSRet())
2037 return NotStructReturn;
2038 if (Flags.isInReg())
2039 return RegStructReturn;
2040 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002041}
2042
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002043/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2044/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002045/// the specific parameter attribute. The copy will be passed as a byval
2046/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002047static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002048CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002049 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002050 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002051 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002052
Dale Johannesendd64c412009-02-04 00:33:20 +00002053 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002054 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002055 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002056}
2057
Chris Lattner29689432010-03-11 00:22:57 +00002058/// IsTailCallConvention - Return true if the calling convention is one that
2059/// supports tail call optimization.
2060static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002061 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2062 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002063}
2064
Charles Davisac226bb2013-07-12 06:02:35 +00002065/// \brief Return true if the calling convention is a C calling convention.
2066static bool IsCCallConvention(CallingConv::ID CC) {
2067 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2068 CC == CallingConv::X86_64_SysV);
2069}
2070
Evan Cheng485fafc2011-03-21 01:19:09 +00002071bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002072 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002073 return false;
2074
2075 CallSite CS(CI);
2076 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002077 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002078 return false;
2079
2080 return true;
2081}
2082
Evan Cheng0c439eb2010-01-27 00:07:07 +00002083/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2084/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002085static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2086 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002087 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002088}
2089
Dan Gohman98ca4f22009-08-05 01:29:28 +00002090SDValue
2091X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002092 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002093 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002094 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002095 const CCValAssign &VA,
2096 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002097 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002098 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002099 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002100 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2101 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002102 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002103 EVT ValVT;
2104
2105 // If value is passed by pointer we have address passed instead of the value
2106 // itself.
2107 if (VA.getLocInfo() == CCValAssign::Indirect)
2108 ValVT = VA.getLocVT();
2109 else
2110 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002111
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002112 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002113 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002114 // In case of tail call optimization mark all arguments mutable. Since they
2115 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002116 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002117 unsigned Bytes = Flags.getByValSize();
2118 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2119 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002120 return DAG.getFrameIndex(FI, getPointerTy());
2121 } else {
2122 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002123 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002124 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2125 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002126 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002127 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002128 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002129}
2130
Dan Gohman475871a2008-07-27 21:46:04 +00002131SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002132X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002133 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002134 bool isVarArg,
2135 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002136 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002137 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002138 SmallVectorImpl<SDValue> &InVals)
2139 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002140 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002141 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002142
Gordon Henriksen86737662008-01-05 16:56:59 +00002143 const Function* Fn = MF.getFunction();
2144 if (Fn->hasExternalLinkage() &&
2145 Subtarget->isTargetCygMing() &&
2146 Fn->getName() == "main")
2147 FuncInfo->setForceFramePointer(true);
2148
Evan Cheng1bc78042006-04-26 01:20:17 +00002149 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002150 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002151 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002152 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002153
Chris Lattner29689432010-03-11 00:22:57 +00002154 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002155 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002156
Chris Lattner638402b2007-02-28 07:00:42 +00002157 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002158 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002159 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002160 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002161
2162 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002163 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002164 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002165
Duncan Sands45907662010-10-31 13:21:44 +00002166 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002167
Chris Lattnerf39f7712007-02-28 05:46:49 +00002168 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002169 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002170 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2171 CCValAssign &VA = ArgLocs[i];
2172 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2173 // places.
2174 assert(VA.getValNo() != LastVal &&
2175 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002176 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002177 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002178
Chris Lattnerf39f7712007-02-28 05:46:49 +00002179 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002180 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002181 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002182 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002183 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002184 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002185 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002186 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002187 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002188 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002189 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002190 else if (RegVT.is512BitVector())
2191 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002192 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002193 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002194 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002195 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002196 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002197 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002198 else if (RegVT == MVT::v8i1)
2199 RC = &X86::VK8RegClass;
2200 else if (RegVT == MVT::v16i1)
2201 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002202 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002203 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002204
Devang Patel68e6bee2011-02-21 23:21:26 +00002205 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002206 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002207
Chris Lattnerf39f7712007-02-28 05:46:49 +00002208 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2209 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2210 // right size.
2211 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002212 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002213 DAG.getValueType(VA.getValVT()));
2214 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002215 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002216 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002217 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002218 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002219
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002220 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002221 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002222 if (RegVT.isVector())
2223 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2224 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002225 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002226 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002227 } else {
2228 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002229 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002230 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002231
2232 // If value is passed via pointer - do a load.
2233 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002234 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002235 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002236
Dan Gohman98ca4f22009-08-05 01:29:28 +00002237 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002238 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002239
Eli Benderskya5597f02013-01-25 22:07:43 +00002240 // The x86-64 ABIs require that for returning structs by value we copy
2241 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002242 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002243 // Save the argument into a virtual register so that we can access it
2244 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002245 if (MF.getFunction()->hasStructRetAttr() &&
2246 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002247 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2248 unsigned Reg = FuncInfo->getSRetReturnReg();
2249 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002250 MVT PtrTy = getPointerTy();
2251 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002252 FuncInfo->setSRetReturnReg(Reg);
2253 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002254 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002255 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002256 }
2257
Chris Lattnerf39f7712007-02-28 05:46:49 +00002258 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002259 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002260 if (FuncIsMadeTailCallSafe(CallConv,
2261 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002262 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002263
Evan Cheng1bc78042006-04-26 01:20:17 +00002264 // If the function takes variable number of arguments, make a frame index for
2265 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002266 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002267 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2268 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002269 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002270 }
2271 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002272 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2273
2274 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002275 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002276 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002277 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002278 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002279 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2280 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002281 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002282 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2283 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2284 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002285 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002286 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002287
2288 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002289 // The XMM registers which might contain var arg parameters are shadowed
2290 // in their paired GPR. So we only need to save the GPR to their home
2291 // slots.
2292 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002293 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002294 } else {
2295 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2296 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002297
Chad Rosier30450e82011-12-22 22:35:21 +00002298 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2299 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002300 }
2301 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2302 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002303
Bill Wendling831737d2012-12-30 10:32:01 +00002304 bool NoImplicitFloatOps = Fn->getAttributes().
2305 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002306 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002307 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002308 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2309 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002310 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002311 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002312 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002313 // Kernel mode asks for SSE to be disabled, so don't push them
2314 // on the stack.
2315 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002316
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002317 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002318 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002319 // Get to the caller-allocated home save location. Add 8 to account
2320 // for the return address.
2321 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002322 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002323 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002324 // Fixup to set vararg frame on shadow area (4 x i64).
2325 if (NumIntRegs < 4)
2326 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002327 } else {
2328 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002329 // registers, then we must store them to their spots on the stack so
2330 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002331 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2332 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2333 FuncInfo->setRegSaveFrameIndex(
2334 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002335 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002336 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002337
Gordon Henriksen86737662008-01-05 16:56:59 +00002338 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002339 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002340 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2341 getPointerTy());
2342 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002343 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002344 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2345 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002346 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002347 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002348 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002349 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002350 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002351 MachinePointerInfo::getFixedStack(
2352 FuncInfo->getRegSaveFrameIndex(), Offset),
2353 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002354 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002355 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002356 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002357
Dan Gohmanface41a2009-08-16 21:24:25 +00002358 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2359 // Now store the XMM (fp + vector) parameter registers.
2360 SmallVector<SDValue, 11> SaveXMMOps;
2361 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002362
Craig Topperc9099502012-04-20 06:31:50 +00002363 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002364 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2365 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002366
Dan Gohman1e93df62010-04-17 14:41:14 +00002367 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2368 FuncInfo->getRegSaveFrameIndex()));
2369 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2370 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002371
Dan Gohmanface41a2009-08-16 21:24:25 +00002372 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002373 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002374 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002375 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2376 SaveXMMOps.push_back(Val);
2377 }
2378 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2379 MVT::Other,
2380 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002381 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002382
2383 if (!MemOps.empty())
2384 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2385 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002386 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002387 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002388
Gordon Henriksen86737662008-01-05 16:56:59 +00002389 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002390 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2391 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002392 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002393 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002394 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002395 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002396 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002397 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002398 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002399 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002400
Gordon Henriksen86737662008-01-05 16:56:59 +00002401 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002402 // RegSaveFrameIndex is X86-64 only.
2403 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002404 if (CallConv == CallingConv::X86_FastCall ||
2405 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002406 // fastcc functions can't have varargs.
2407 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002408 }
Evan Cheng25caf632006-05-23 21:06:34 +00002409
Rafael Espindola76927d752011-08-30 19:39:58 +00002410 FuncInfo->setArgumentStackSize(StackSize);
2411
Dan Gohman98ca4f22009-08-05 01:29:28 +00002412 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002413}
2414
Dan Gohman475871a2008-07-27 21:46:04 +00002415SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002416X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2417 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002418 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002419 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002420 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002421 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002422 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002423 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002424 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002425 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002426
2427 return DAG.getStore(Chain, dl, Arg, PtrOff,
2428 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002429 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002430}
2431
Bill Wendling64e87322009-01-16 19:25:27 +00002432/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002433/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002434SDValue
2435X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002436 SDValue &OutRetAddr, SDValue Chain,
2437 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002438 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002439 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002440 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002441 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002442
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002443 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002444 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002445 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002446 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002447}
2448
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002449/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002450/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002451static SDValue
2452EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002453 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002454 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002455 // Store the return address to the appropriate stack slot.
2456 if (!FPDiff) return Chain;
2457 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002458 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002459 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2460 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002461 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002462 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002463 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002464 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002465 return Chain;
2466}
2467
Dan Gohman98ca4f22009-08-05 01:29:28 +00002468SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002469X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002470 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002471 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002472 SDLoc &dl = CLI.DL;
2473 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2474 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2475 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002476 SDValue Chain = CLI.Chain;
2477 SDValue Callee = CLI.Callee;
2478 CallingConv::ID CallConv = CLI.CallConv;
2479 bool &isTailCall = CLI.IsTailCall;
2480 bool isVarArg = CLI.IsVarArg;
2481
Dan Gohman98ca4f22009-08-05 01:29:28 +00002482 MachineFunction &MF = DAG.getMachineFunction();
2483 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002484 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002485 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002486 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002487 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002488
Nick Lewycky22de16d2012-01-19 00:34:10 +00002489 if (MF.getTarget().Options.DisableTailCalls)
2490 isTailCall = false;
2491
Evan Cheng5f941932010-02-05 02:21:12 +00002492 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002493 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002494 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002495 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002496 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002497 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002498
2499 // Sibcalls are automatically detected tailcalls which do not require
2500 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002501 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002502 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002503
2504 if (isTailCall)
2505 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002506 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002507
Chris Lattner29689432010-03-11 00:22:57 +00002508 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002509 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002510
Chris Lattner638402b2007-02-28 07:00:42 +00002511 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002512 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002513 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002514 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002515
2516 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002517 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002518 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002519
Duncan Sands45907662010-10-31 13:21:44 +00002520 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002521
Chris Lattner423c5f42007-02-28 05:31:48 +00002522 // Get a count of how many bytes are to be pushed on the stack.
2523 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002524 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002525 // This is a sibcall. The memory operands are available in caller's
2526 // own caller's stack.
2527 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002528 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2529 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002530 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002531
Gordon Henriksen86737662008-01-05 16:56:59 +00002532 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002533 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002534 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002535 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2536 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2537
Gordon Henriksen86737662008-01-05 16:56:59 +00002538 FPDiff = NumBytesCallerPushed - NumBytes;
2539
2540 // Set the delta of movement of the returnaddr stackslot.
2541 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002542 if (FPDiff < X86Info->getTCReturnAddrDelta())
2543 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002544 }
2545
Evan Chengf22f9b32010-02-06 03:28:46 +00002546 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002547 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2548 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002549
Dan Gohman475871a2008-07-27 21:46:04 +00002550 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002551 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002552 if (isTailCall && FPDiff)
2553 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2554 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002555
Dan Gohman475871a2008-07-27 21:46:04 +00002556 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2557 SmallVector<SDValue, 8> MemOpChains;
2558 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002559
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002560 // Walk the register/memloc assignments, inserting copies/loads. In the case
2561 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002562 const X86RegisterInfo *RegInfo =
2563 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002564 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2565 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002566 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002567 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002568 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002569 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002570
Chris Lattner423c5f42007-02-28 05:31:48 +00002571 // Promote the value if needed.
2572 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002573 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002574 case CCValAssign::Full: break;
2575 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002576 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002577 break;
2578 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002579 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002580 break;
2581 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002582 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002583 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002584 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002585 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2586 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002587 } else
2588 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2589 break;
2590 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002591 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002592 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002593 case CCValAssign::Indirect: {
2594 // Store the argument.
2595 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002596 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002597 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002598 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002599 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002600 Arg = SpillSlot;
2601 break;
2602 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002603 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002604
Chris Lattner423c5f42007-02-28 05:31:48 +00002605 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002606 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2607 if (isVarArg && IsWin64) {
2608 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2609 // shadow reg if callee is a varargs function.
2610 unsigned ShadowReg = 0;
2611 switch (VA.getLocReg()) {
2612 case X86::XMM0: ShadowReg = X86::RCX; break;
2613 case X86::XMM1: ShadowReg = X86::RDX; break;
2614 case X86::XMM2: ShadowReg = X86::R8; break;
2615 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002616 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002617 if (ShadowReg)
2618 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002619 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002620 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002621 assert(VA.isMemLoc());
2622 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002623 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2624 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002625 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2626 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002627 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002628 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002629
Evan Cheng32fe1032006-05-25 00:59:30 +00002630 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002631 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002632 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002633
Chris Lattner88e1fd52009-07-09 04:24:46 +00002634 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002635 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2636 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002637 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002638 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002639 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002640 } else {
2641 // If we are tail calling and generating PIC/GOT style code load the
2642 // address of the callee into ECX. The value in ecx is used as target of
2643 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2644 // for tail calls on PIC/GOT architectures. Normally we would just put the
2645 // address of GOT into ebx and then call target@PLT. But for tail calls
2646 // ebx would be restored (since ebx is callee saved) before jumping to the
2647 // target@PLT.
2648
2649 // Note: The actual moving to ECX is done further down.
2650 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2651 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2652 !G->getGlobal()->hasProtectedVisibility())
2653 Callee = LowerGlobalAddress(Callee, DAG);
2654 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002655 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002656 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002657 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002658
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002659 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002660 // From AMD64 ABI document:
2661 // For calls that may call functions that use varargs or stdargs
2662 // (prototype-less calls or calls to functions containing ellipsis (...) in
2663 // the declaration) %al is used as hidden argument to specify the number
2664 // of SSE registers used. The contents of %al do not need to match exactly
2665 // the number of registers, but must be an ubound on the number of SSE
2666 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002667
Gordon Henriksen86737662008-01-05 16:56:59 +00002668 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002669 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002670 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2671 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2672 };
2673 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002674 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002675 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002676
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002677 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2678 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002679 }
2680
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002681 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002682 if (isTailCall) {
2683 // Force all the incoming stack arguments to be loaded from the stack
2684 // before any new outgoing arguments are stored to the stack, because the
2685 // outgoing stack slots may alias the incoming argument stack slots, and
2686 // the alias isn't otherwise explicit. This is slightly more conservative
2687 // than necessary, because it means that each store effectively depends
2688 // on every argument instead of just those arguments it would clobber.
2689 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2690
Dan Gohman475871a2008-07-27 21:46:04 +00002691 SmallVector<SDValue, 8> MemOpChains2;
2692 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002693 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002694 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002695 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2696 CCValAssign &VA = ArgLocs[i];
2697 if (VA.isRegLoc())
2698 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002699 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002700 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002701 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002702 // Create frame index.
2703 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002704 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002705 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002706 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002707
Duncan Sands276dcbd2008-03-21 09:14:45 +00002708 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002709 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002710 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002711 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002712 StackPtr = DAG.getCopyFromReg(Chain, dl,
2713 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002714 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002715 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002716
Dan Gohman98ca4f22009-08-05 01:29:28 +00002717 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2718 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002719 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002720 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002721 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002722 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002723 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002724 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002725 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002726 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002727 }
2728 }
2729
2730 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002731 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002732 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002733
2734 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002735 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2736 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002737 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002738 }
2739
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002740 // Build a sequence of copy-to-reg nodes chained together with token chain
2741 // and flag operands which copy the outgoing args into registers.
2742 SDValue InFlag;
2743 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2744 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2745 RegsToPass[i].second, InFlag);
2746 InFlag = Chain.getValue(1);
2747 }
2748
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002749 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2750 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2751 // In the 64-bit large code model, we have to make all calls
2752 // through a register, since the call instruction's 32-bit
2753 // pc-relative offset may not be large enough to hold the whole
2754 // address.
2755 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002756 // If the callee is a GlobalAddress node (quite common, every direct call
2757 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2758 // it.
2759
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002760 // We should use extra load for direct calls to dllimported functions in
2761 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002762 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002763 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002764 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002765 bool ExtraLoad = false;
2766 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002767
Chris Lattner48a7d022009-07-09 05:02:21 +00002768 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2769 // external symbols most go through the PLT in PIC mode. If the symbol
2770 // has hidden or protected visibility, or if it is static or local, then
2771 // we don't need to use the PLT - we can directly call it.
2772 if (Subtarget->isTargetELF() &&
2773 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002774 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002775 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002776 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002777 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002778 (!Subtarget->getTargetTriple().isMacOSX() ||
2779 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002780 // PC-relative references to external symbols should go through $stub,
2781 // unless we're building with the leopard linker or later, which
2782 // automatically synthesizes these stubs.
2783 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002784 } else if (Subtarget->isPICStyleRIPRel() &&
2785 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002786 cast<Function>(GV)->getAttributes().
2787 hasAttribute(AttributeSet::FunctionIndex,
2788 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002789 // If the function is marked as non-lazy, generate an indirect call
2790 // which loads from the GOT directly. This avoids runtime overhead
2791 // at the cost of eager binding (and one extra byte of encoding).
2792 OpFlags = X86II::MO_GOTPCREL;
2793 WrapperKind = X86ISD::WrapperRIP;
2794 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002795 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002796
Devang Patel0d881da2010-07-06 22:08:15 +00002797 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002798 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002799
2800 // Add a wrapper if needed.
2801 if (WrapperKind != ISD::DELETED_NODE)
2802 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2803 // Add extra indirection if needed.
2804 if (ExtraLoad)
2805 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2806 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002807 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002808 }
Bill Wendling056292f2008-09-16 21:48:12 +00002809 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002810 unsigned char OpFlags = 0;
2811
Evan Cheng1bf891a2010-12-01 22:59:46 +00002812 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2813 // external symbols should go through the PLT.
2814 if (Subtarget->isTargetELF() &&
2815 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2816 OpFlags = X86II::MO_PLT;
2817 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002818 (!Subtarget->getTargetTriple().isMacOSX() ||
2819 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002820 // PC-relative references to external symbols should go through $stub,
2821 // unless we're building with the leopard linker or later, which
2822 // automatically synthesizes these stubs.
2823 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002824 }
Eric Christopherfd179292009-08-27 18:07:15 +00002825
Chris Lattner48a7d022009-07-09 05:02:21 +00002826 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2827 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002828 }
2829
Chris Lattnerd96d0722007-02-25 06:40:16 +00002830 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002831 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002832 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002833
Evan Chengf22f9b32010-02-06 03:28:46 +00002834 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002835 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002836 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002837 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002839
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002840 Ops.push_back(Chain);
2841 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002842
Dan Gohman98ca4f22009-08-05 01:29:28 +00002843 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002844 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002845
Gordon Henriksen86737662008-01-05 16:56:59 +00002846 // Add argument registers to the end of the list so that they are known live
2847 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002848 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2849 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2850 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002851
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002852 // Add a register mask operand representing the call-preserved registers.
2853 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2854 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2855 assert(Mask && "Missing call preserved mask for calling convention");
2856 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002857
Gabor Greifba36cb52008-08-28 21:40:38 +00002858 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002859 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002860
Dan Gohman98ca4f22009-08-05 01:29:28 +00002861 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002862 // We used to do:
2863 //// If this is the first return lowered for this function, add the regs
2864 //// to the liveout set for the function.
2865 // This isn't right, although it's probably harmless on x86; liveouts
2866 // should be computed from returns not tail calls. Consider a void
2867 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002868 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002869 }
2870
Dale Johannesenace16102009-02-03 19:33:06 +00002871 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002872 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002873
Chris Lattner2d297092006-05-23 18:50:38 +00002874 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002875 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002876 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2877 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002878 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002879 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002880 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002881 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002882 // pops the hidden struct pointer, so we have to push it back.
2883 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002884 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002885 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002886 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002887 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002888
Gordon Henriksenae636f82008-01-03 16:47:34 +00002889 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002890 if (!IsSibcall) {
2891 Chain = DAG.getCALLSEQ_END(Chain,
2892 DAG.getIntPtrConstant(NumBytes, true),
2893 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2894 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002895 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002896 InFlag = Chain.getValue(1);
2897 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002898
Chris Lattner3085e152007-02-25 08:59:22 +00002899 // Handle result values, copying them out of physregs into vregs that we
2900 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002901 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2902 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002903}
2904
Evan Cheng25ab6902006-09-08 06:48:29 +00002905//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002906// Fast Calling Convention (tail call) implementation
2907//===----------------------------------------------------------------------===//
2908
2909// Like std call, callee cleans arguments, convention except that ECX is
2910// reserved for storing the tail called function address. Only 2 registers are
2911// free for argument passing (inreg). Tail call optimization is performed
2912// provided:
2913// * tailcallopt is enabled
2914// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002915// On X86_64 architecture with GOT-style position independent code only local
2916// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002917// To keep the stack aligned according to platform abi the function
2918// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2919// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002920// If a tail called function callee has more arguments than the caller the
2921// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002922// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002923// original REtADDR, but before the saved framepointer or the spilled registers
2924// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2925// stack layout:
2926// arg1
2927// arg2
2928// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002929// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002930// move area ]
2931// (possible EBP)
2932// ESI
2933// EDI
2934// local1 ..
2935
2936/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2937/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002938unsigned
2939X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2940 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002941 MachineFunction &MF = DAG.getMachineFunction();
2942 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002943 const X86RegisterInfo *RegInfo =
2944 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002945 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002946 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002947 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002948 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002949 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002950 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2951 // Number smaller than 12 so just add the difference.
2952 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2953 } else {
2954 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002955 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002956 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002957 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002958 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002959}
2960
Evan Cheng5f941932010-02-05 02:21:12 +00002961/// MatchingStackOffset - Return true if the given stack call argument is
2962/// already available in the same position (relatively) of the caller's
2963/// incoming argument stack.
2964static
2965bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2966 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2967 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002968 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2969 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002970 if (Arg.getOpcode() == ISD::CopyFromReg) {
2971 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002972 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002973 return false;
2974 MachineInstr *Def = MRI->getVRegDef(VR);
2975 if (!Def)
2976 return false;
2977 if (!Flags.isByVal()) {
2978 if (!TII->isLoadFromStackSlot(Def, FI))
2979 return false;
2980 } else {
2981 unsigned Opcode = Def->getOpcode();
2982 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2983 Def->getOperand(1).isFI()) {
2984 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002985 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002986 } else
2987 return false;
2988 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002989 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2990 if (Flags.isByVal())
2991 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002992 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002993 // define @foo(%struct.X* %A) {
2994 // tail call @bar(%struct.X* byval %A)
2995 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002996 return false;
2997 SDValue Ptr = Ld->getBasePtr();
2998 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2999 if (!FINode)
3000 return false;
3001 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003002 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003003 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003004 FI = FINode->getIndex();
3005 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003006 } else
3007 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003008
Evan Cheng4cae1332010-03-05 08:38:04 +00003009 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003010 if (!MFI->isFixedObjectIndex(FI))
3011 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003012 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003013}
3014
Dan Gohman98ca4f22009-08-05 01:29:28 +00003015/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3016/// for tail call optimization. Targets which want to do tail call
3017/// optimization should implement this function.
3018bool
3019X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003020 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003021 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003022 bool isCalleeStructRet,
3023 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003024 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003025 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003026 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003027 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003028 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003029 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003030 return false;
3031
Evan Cheng7096ae42010-01-29 06:45:59 +00003032 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003033 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003034 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003035
3036 // If the function return type is x86_fp80 and the callee return type is not,
3037 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3038 // perform a tailcall optimization here.
3039 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3040 return false;
3041
Evan Cheng13617962010-04-30 01:12:32 +00003042 CallingConv::ID CallerCC = CallerF->getCallingConv();
3043 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003044 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3045 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003046
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003047 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003048 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003049 return true;
3050 return false;
3051 }
3052
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003053 // Look for obvious safe cases to perform tail call optimization that do not
3054 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003055
Evan Cheng2c12cb42010-03-26 16:26:03 +00003056 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3057 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003058 const X86RegisterInfo *RegInfo =
3059 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003060 if (RegInfo->needsStackRealignment(MF))
3061 return false;
3062
Evan Chenga375d472010-03-15 18:54:48 +00003063 // Also avoid sibcall optimization if either caller or callee uses struct
3064 // return semantics.
3065 if (isCalleeStructRet || isCallerStructRet)
3066 return false;
3067
Chad Rosier2416da32011-06-24 21:15:36 +00003068 // An stdcall caller is expected to clean up its arguments; the callee
3069 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003070 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003071 return false;
3072
Chad Rosier871f6642011-05-18 19:59:50 +00003073 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003074 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003075 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003076
3077 // Optimizing for varargs on Win64 is unlikely to be safe without
3078 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003079 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003080 return false;
3081
Chad Rosier871f6642011-05-18 19:59:50 +00003082 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003083 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003084 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003085
Chad Rosier871f6642011-05-18 19:59:50 +00003086 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3087 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3088 if (!ArgLocs[i].isRegLoc())
3089 return false;
3090 }
3091
Chad Rosier30450e82011-12-22 22:35:21 +00003092 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3093 // stack. Therefore, if it's not used by the call it is not safe to optimize
3094 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003095 bool Unused = false;
3096 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3097 if (!Ins[i].Used) {
3098 Unused = true;
3099 break;
3100 }
3101 }
3102 if (Unused) {
3103 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003104 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003105 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003106 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003107 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003108 CCValAssign &VA = RVLocs[i];
3109 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3110 return false;
3111 }
3112 }
3113
Evan Cheng13617962010-04-30 01:12:32 +00003114 // If the calling conventions do not match, then we'd better make sure the
3115 // results are returned in the same way as what the caller expects.
3116 if (!CCMatch) {
3117 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003118 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003119 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003120 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3121
3122 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003123 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003124 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003125 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3126
3127 if (RVLocs1.size() != RVLocs2.size())
3128 return false;
3129 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3130 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3131 return false;
3132 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3133 return false;
3134 if (RVLocs1[i].isRegLoc()) {
3135 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3136 return false;
3137 } else {
3138 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3139 return false;
3140 }
3141 }
3142 }
3143
Evan Chenga6bff982010-01-30 01:22:00 +00003144 // If the callee takes no arguments then go on to check the results of the
3145 // call.
3146 if (!Outs.empty()) {
3147 // Check if stack adjustment is needed. For now, do not do this if any
3148 // argument is passed on the stack.
3149 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003150 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003151 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003152
3153 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003154 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003155 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003156
Duncan Sands45907662010-10-31 13:21:44 +00003157 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003158 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003159 MachineFunction &MF = DAG.getMachineFunction();
3160 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3161 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003162
3163 // Check if the arguments are already laid out in the right way as
3164 // the caller's fixed stack objects.
3165 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003166 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3167 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003168 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003169 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3170 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003171 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003172 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003173 if (VA.getLocInfo() == CCValAssign::Indirect)
3174 return false;
3175 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003176 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3177 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003178 return false;
3179 }
3180 }
3181 }
Evan Cheng9c044672010-05-29 01:35:22 +00003182
3183 // If the tailcall address may be in a register, then make sure it's
3184 // possible to register allocate for it. In 32-bit, the call address can
3185 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003186 // callee-saved registers are restored. These happen to be the same
3187 // registers used to pass 'inreg' arguments so watch out for those.
3188 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003189 ((!isa<GlobalAddressSDNode>(Callee) &&
3190 !isa<ExternalSymbolSDNode>(Callee)) ||
3191 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003192 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003193 // In PIC we need an extra register to formulate the address computation
3194 // for the callee.
3195 unsigned MaxInRegs =
3196 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3197
Evan Cheng9c044672010-05-29 01:35:22 +00003198 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3199 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003200 if (!VA.isRegLoc())
3201 continue;
3202 unsigned Reg = VA.getLocReg();
3203 switch (Reg) {
3204 default: break;
3205 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003206 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003207 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003208 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003209 }
3210 }
3211 }
Evan Chenga6bff982010-01-30 01:22:00 +00003212 }
Evan Chengb1712452010-01-27 06:25:16 +00003213
Evan Cheng86809cc2010-02-03 03:28:02 +00003214 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003215}
3216
Dan Gohman3df24e62008-09-03 23:12:08 +00003217FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003218X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3219 const TargetLibraryInfo *libInfo) const {
3220 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003221}
3222
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003223//===----------------------------------------------------------------------===//
3224// Other Lowering Hooks
3225//===----------------------------------------------------------------------===//
3226
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003227static bool MayFoldLoad(SDValue Op) {
3228 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3229}
3230
3231static bool MayFoldIntoStore(SDValue Op) {
3232 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3233}
3234
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003235static bool isTargetShuffle(unsigned Opcode) {
3236 switch(Opcode) {
3237 default: return false;
3238 case X86ISD::PSHUFD:
3239 case X86ISD::PSHUFHW:
3240 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003241 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003242 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003243 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003244 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003245 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003246 case X86ISD::MOVLPS:
3247 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003248 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003249 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003250 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003251 case X86ISD::MOVSS:
3252 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003253 case X86ISD::UNPCKL:
3254 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003255 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003256 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003257 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003258 return true;
3259 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003260}
3261
Andrew Trickac6d9be2013-05-25 02:42:55 +00003262static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003263 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003264 switch(Opc) {
3265 default: llvm_unreachable("Unknown x86 shuffle node");
3266 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003267 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003268 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003269 return DAG.getNode(Opc, dl, VT, V1);
3270 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003271}
3272
Andrew Trickac6d9be2013-05-25 02:42:55 +00003273static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003274 SDValue V1, unsigned TargetMask,
3275 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003276 switch(Opc) {
3277 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003278 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003279 case X86ISD::PSHUFHW:
3280 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003281 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003282 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003283 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3284 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003285}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003286
Andrew Trickac6d9be2013-05-25 02:42:55 +00003287static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003288 SDValue V1, SDValue V2, unsigned TargetMask,
3289 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003290 switch(Opc) {
3291 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003292 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003293 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003294 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003295 return DAG.getNode(Opc, dl, VT, V1, V2,
3296 DAG.getConstant(TargetMask, MVT::i8));
3297 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003298}
3299
Andrew Trickac6d9be2013-05-25 02:42:55 +00003300static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003301 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3302 switch(Opc) {
3303 default: llvm_unreachable("Unknown x86 shuffle node");
3304 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003305 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003306 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003307 case X86ISD::MOVLPS:
3308 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003309 case X86ISD::MOVSS:
3310 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003311 case X86ISD::UNPCKL:
3312 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003313 return DAG.getNode(Opc, dl, VT, V1, V2);
3314 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003315}
3316
Dan Gohmand858e902010-04-17 15:26:15 +00003317SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003318 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003319 const X86RegisterInfo *RegInfo =
3320 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003321 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3322 int ReturnAddrIndex = FuncInfo->getRAIndex();
3323
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003324 if (ReturnAddrIndex == 0) {
3325 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003326 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003327 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3328 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003329 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003330 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003331 }
3332
Evan Cheng25ab6902006-09-08 06:48:29 +00003333 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003334}
3335
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003336bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3337 bool hasSymbolicDisplacement) {
3338 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003339 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003340 return false;
3341
3342 // If we don't have a symbolic displacement - we don't have any extra
3343 // restrictions.
3344 if (!hasSymbolicDisplacement)
3345 return true;
3346
3347 // FIXME: Some tweaks might be needed for medium code model.
3348 if (M != CodeModel::Small && M != CodeModel::Kernel)
3349 return false;
3350
3351 // For small code model we assume that latest object is 16MB before end of 31
3352 // bits boundary. We may also accept pretty large negative constants knowing
3353 // that all objects are in the positive half of address space.
3354 if (M == CodeModel::Small && Offset < 16*1024*1024)
3355 return true;
3356
3357 // For kernel code model we know that all object resist in the negative half
3358 // of 32bits address space. We may not accept negative offsets, since they may
3359 // be just off and we may accept pretty large positive ones.
3360 if (M == CodeModel::Kernel && Offset > 0)
3361 return true;
3362
3363 return false;
3364}
3365
Evan Chengef41ff62011-06-23 17:54:54 +00003366/// isCalleePop - Determines whether the callee is required to pop its
3367/// own arguments. Callee pop is necessary to support tail calls.
3368bool X86::isCalleePop(CallingConv::ID CallingConv,
3369 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3370 if (IsVarArg)
3371 return false;
3372
3373 switch (CallingConv) {
3374 default:
3375 return false;
3376 case CallingConv::X86_StdCall:
3377 return !is64Bit;
3378 case CallingConv::X86_FastCall:
3379 return !is64Bit;
3380 case CallingConv::X86_ThisCall:
3381 return !is64Bit;
3382 case CallingConv::Fast:
3383 return TailCallOpt;
3384 case CallingConv::GHC:
3385 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003386 case CallingConv::HiPE:
3387 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003388 }
3389}
3390
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003391/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3392/// specific condition code, returning the condition code and the LHS/RHS of the
3393/// comparison to make.
3394static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3395 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003396 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003397 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3398 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3399 // X > -1 -> X == 0, jump !sign.
3400 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003401 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003402 }
3403 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003404 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003405 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003406 }
3407 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003408 // X < 1 -> X <= 0
3409 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003410 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003411 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003412 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003413
Evan Chengd9558e02006-01-06 00:43:03 +00003414 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003415 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003416 case ISD::SETEQ: return X86::COND_E;
3417 case ISD::SETGT: return X86::COND_G;
3418 case ISD::SETGE: return X86::COND_GE;
3419 case ISD::SETLT: return X86::COND_L;
3420 case ISD::SETLE: return X86::COND_LE;
3421 case ISD::SETNE: return X86::COND_NE;
3422 case ISD::SETULT: return X86::COND_B;
3423 case ISD::SETUGT: return X86::COND_A;
3424 case ISD::SETULE: return X86::COND_BE;
3425 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003426 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003427 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003428
Chris Lattner4c78e022008-12-23 23:42:27 +00003429 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003430
Chris Lattner4c78e022008-12-23 23:42:27 +00003431 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003432 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3433 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003434 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3435 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003436 }
3437
Chris Lattner4c78e022008-12-23 23:42:27 +00003438 switch (SetCCOpcode) {
3439 default: break;
3440 case ISD::SETOLT:
3441 case ISD::SETOLE:
3442 case ISD::SETUGT:
3443 case ISD::SETUGE:
3444 std::swap(LHS, RHS);
3445 break;
3446 }
3447
3448 // On a floating point condition, the flags are set as follows:
3449 // ZF PF CF op
3450 // 0 | 0 | 0 | X > Y
3451 // 0 | 0 | 1 | X < Y
3452 // 1 | 0 | 0 | X == Y
3453 // 1 | 1 | 1 | unordered
3454 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003455 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003456 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003457 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003458 case ISD::SETOLT: // flipped
3459 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003460 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003461 case ISD::SETOLE: // flipped
3462 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003463 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003464 case ISD::SETUGT: // flipped
3465 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003466 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003467 case ISD::SETUGE: // flipped
3468 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003469 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003470 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003471 case ISD::SETNE: return X86::COND_NE;
3472 case ISD::SETUO: return X86::COND_P;
3473 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003474 case ISD::SETOEQ:
3475 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003476 }
Evan Chengd9558e02006-01-06 00:43:03 +00003477}
3478
Evan Cheng4a460802006-01-11 00:33:36 +00003479/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3480/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003481/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003482static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003483 switch (X86CC) {
3484 default:
3485 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003486 case X86::COND_B:
3487 case X86::COND_BE:
3488 case X86::COND_E:
3489 case X86::COND_P:
3490 case X86::COND_A:
3491 case X86::COND_AE:
3492 case X86::COND_NE:
3493 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003494 return true;
3495 }
3496}
3497
Evan Chengeb2f9692009-10-27 19:56:55 +00003498/// isFPImmLegal - Returns true if the target can instruction select the
3499/// specified FP immediate natively. If false, the legalizer will
3500/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003501bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003502 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3503 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3504 return true;
3505 }
3506 return false;
3507}
3508
Nate Begeman9008ca62009-04-27 18:41:29 +00003509/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3510/// the specified range (L, H].
3511static bool isUndefOrInRange(int Val, int Low, int Hi) {
3512 return (Val < 0) || (Val >= Low && Val < Hi);
3513}
3514
3515/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3516/// specified value.
3517static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003518 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003519}
3520
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003521/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003522/// from position Pos and ending in Pos+Size, falls within the specified
3523/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003524static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003525 unsigned Pos, unsigned Size, int Low) {
3526 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003527 if (!isUndefOrEqual(Mask[i], Low))
3528 return false;
3529 return true;
3530}
3531
Nate Begeman9008ca62009-04-27 18:41:29 +00003532/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3533/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3534/// the second operand.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003535static bool isPSHUFDMask(ArrayRef<int> Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003536 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003537 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003538 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003539 return (Mask[0] < 2 && Mask[1] < 2);
3540 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003541}
3542
Nate Begeman9008ca62009-04-27 18:41:29 +00003543/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3544/// is suitable for input to PSHUFHW.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003545static bool isPSHUFHWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3546 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003547 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003548
Nate Begeman9008ca62009-04-27 18:41:29 +00003549 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003550 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3551 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003552
Evan Cheng506d3df2006-03-29 23:07:14 +00003553 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003554 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003555 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003556 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003557
Craig Toppera9a568a2012-05-02 08:03:44 +00003558 if (VT == MVT::v16i16) {
3559 // Lower quadword copied in order or undef.
3560 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3561 return false;
3562
3563 // Upper quadword shuffled.
3564 for (unsigned i = 12; i != 16; ++i)
3565 if (!isUndefOrInRange(Mask[i], 12, 16))
3566 return false;
3567 }
3568
Evan Cheng506d3df2006-03-29 23:07:14 +00003569 return true;
3570}
3571
Nate Begeman9008ca62009-04-27 18:41:29 +00003572/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3573/// is suitable for input to PSHUFLW.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003574static bool isPSHUFLWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3575 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003576 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003577
Rafael Espindola15684b22009-04-24 12:40:33 +00003578 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003579 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3580 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003581
Rafael Espindola15684b22009-04-24 12:40:33 +00003582 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003583 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003584 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003585 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003586
Craig Toppera9a568a2012-05-02 08:03:44 +00003587 if (VT == MVT::v16i16) {
3588 // Upper quadword copied in order.
3589 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3590 return false;
3591
3592 // Lower quadword shuffled.
3593 for (unsigned i = 8; i != 12; ++i)
3594 if (!isUndefOrInRange(Mask[i], 8, 12))
3595 return false;
3596 }
3597
Rafael Espindola15684b22009-04-24 12:40:33 +00003598 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003599}
3600
Nate Begemana09008b2009-10-19 02:17:23 +00003601/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3602/// is suitable for input to PALIGNR.
Craig Topper0e2037b2012-01-20 05:53:00 +00003603static bool isPALIGNRMask(ArrayRef<int> Mask, EVT VT,
3604 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003605 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3606 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003607 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003608
Craig Topper0e2037b2012-01-20 05:53:00 +00003609 unsigned NumElts = VT.getVectorNumElements();
3610 unsigned NumLanes = VT.getSizeInBits()/128;
3611 unsigned NumLaneElts = NumElts/NumLanes;
3612
3613 // Do not handle 64-bit element shuffles with palignr.
3614 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003615 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003616
Craig Topper0e2037b2012-01-20 05:53:00 +00003617 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3618 unsigned i;
3619 for (i = 0; i != NumLaneElts; ++i) {
3620 if (Mask[i+l] >= 0)
3621 break;
3622 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003623
Craig Topper0e2037b2012-01-20 05:53:00 +00003624 // Lane is all undef, go to next lane
3625 if (i == NumLaneElts)
3626 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003627
Craig Topper0e2037b2012-01-20 05:53:00 +00003628 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003629
Craig Topper0e2037b2012-01-20 05:53:00 +00003630 // Make sure its in this lane in one of the sources
3631 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3632 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003633 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003634
3635 // If not lane 0, then we must match lane 0
3636 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3637 return false;
3638
3639 // Correct second source to be contiguous with first source
3640 if (Start >= (int)NumElts)
3641 Start -= NumElts - NumLaneElts;
3642
3643 // Make sure we're shifting in the right direction.
3644 if (Start <= (int)(i+l))
3645 return false;
3646
3647 Start -= i;
3648
3649 // Check the rest of the elements to see if they are consecutive.
3650 for (++i; i != NumLaneElts; ++i) {
3651 int Idx = Mask[i+l];
3652
3653 // Make sure its in this lane
3654 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3655 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3656 return false;
3657
3658 // If not lane 0, then we must match lane 0
3659 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3660 return false;
3661
3662 if (Idx >= (int)NumElts)
3663 Idx -= NumElts - NumLaneElts;
3664
3665 if (!isUndefOrEqual(Idx, Start+i))
3666 return false;
3667
3668 }
Nate Begemana09008b2009-10-19 02:17:23 +00003669 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003670
Nate Begemana09008b2009-10-19 02:17:23 +00003671 return true;
3672}
3673
Craig Topper1a7700a2012-01-19 08:19:12 +00003674/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3675/// the two vector operands have swapped position.
3676static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3677 unsigned NumElems) {
3678 for (unsigned i = 0; i != NumElems; ++i) {
3679 int idx = Mask[i];
3680 if (idx < 0)
3681 continue;
3682 else if (idx < (int)NumElems)
3683 Mask[i] = idx + NumElems;
3684 else
3685 Mask[i] = idx - NumElems;
3686 }
3687}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003688
Craig Topper1a7700a2012-01-19 08:19:12 +00003689/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3690/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3691/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3692/// reverse of what x86 shuffles want.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003693static bool isSHUFPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256,
Craig Topper1a7700a2012-01-19 08:19:12 +00003694 bool Commuted = false) {
Craig Topper5a529e42013-01-18 06:44:29 +00003695 if (!HasFp256 && VT.is256BitVector())
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003696 return false;
3697
Craig Topper1a7700a2012-01-19 08:19:12 +00003698 unsigned NumElems = VT.getVectorNumElements();
3699 unsigned NumLanes = VT.getSizeInBits()/128;
3700 unsigned NumLaneElems = NumElems/NumLanes;
3701
3702 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003703 return false;
3704
3705 // VSHUFPSY divides the resulting vector into 4 chunks.
3706 // The sources are also splitted into 4 chunks, and each destination
3707 // chunk must come from a different source chunk.
3708 //
3709 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3710 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3711 //
3712 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3713 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3714 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003715 // VSHUFPDY divides the resulting vector into 4 chunks.
3716 // The sources are also splitted into 4 chunks, and each destination
3717 // chunk must come from a different source chunk.
3718 //
3719 // SRC1 => X3 X2 X1 X0
3720 // SRC2 => Y3 Y2 Y1 Y0
3721 //
3722 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3723 //
Craig Topper1a7700a2012-01-19 08:19:12 +00003724 unsigned HalfLaneElems = NumLaneElems/2;
3725 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3726 for (unsigned i = 0; i != NumLaneElems; ++i) {
3727 int Idx = Mask[i+l];
3728 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3729 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3730 return false;
3731 // For VSHUFPSY, the mask of the second half must be the same as the
3732 // first but with the appropriate offsets. This works in the same way as
3733 // VPERMILPS works with masks.
3734 if (NumElems != 8 || l == 0 || Mask[i] < 0)
3735 continue;
3736 if (!isUndefOrEqual(Idx, Mask[i]+l))
3737 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 Topperdd637ae2012-02-19 05:41:45 +00003746static bool isMOVHLPSMask(ArrayRef<int> Mask, EVT 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 Topperdd637ae2012-02-19 05:41:45 +00003765static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, EVT 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 Topperdd637ae2012-02-19 05:41:45 +00003782static bool isMOVLPMask(ArrayRef<int> Mask, EVT 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 Topperdd637ae2012-02-19 05:41:45 +00003804static bool isMOVLHPSMask(ArrayRef<int> Mask, EVT 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 Topper657a99c2013-01-19 23:36:09 +00003830 MVT VT = SVOp->getValueType(0).getSimpleVT();
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.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003873static bool isUNPCKLMask(ArrayRef<int> Mask, EVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003874 bool HasInt256, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003875 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003876
3877 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3878 "Unsupported vector type for unpckh");
3879
Craig Topper5a529e42013-01-18 06:44:29 +00003880 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003881 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003882 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003883
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003884 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3885 // independently on 128-bit lanes.
3886 unsigned NumLanes = VT.getSizeInBits()/128;
3887 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003888
Craig Topper59235472013-08-06 07:23:12 +00003889 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3890 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3891 int BitI = Mask[l+i];
3892 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00003893 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003894 return false;
David Greenea20244d2011-03-02 17:23:43 +00003895 if (V2IsSplat) {
3896 if (!isUndefOrEqual(BitI1, NumElts))
3897 return false;
3898 } else {
3899 if (!isUndefOrEqual(BitI1, j + NumElts))
3900 return false;
3901 }
Evan Cheng39623da2006-04-20 08:58:49 +00003902 }
Evan Cheng0038e592006-03-28 00:39:58 +00003903 }
David Greenea20244d2011-03-02 17:23:43 +00003904
Evan Cheng0038e592006-03-28 00:39:58 +00003905 return true;
3906}
3907
Evan Cheng4fcb9222006-03-28 02:43:26 +00003908/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3909/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003910static bool isUNPCKHMask(ArrayRef<int> Mask, EVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003911 bool HasInt256, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003912 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003913
3914 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3915 "Unsupported vector type for unpckh");
3916
Craig Topper5a529e42013-01-18 06:44:29 +00003917 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003918 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003919 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003920
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003921 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3922 // independently on 128-bit lanes.
3923 unsigned NumLanes = VT.getSizeInBits()/128;
3924 unsigned NumLaneElts = NumElts/NumLanes;
3925
Craig Topper59235472013-08-06 07:23:12 +00003926 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3927 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3928 int BitI = Mask[l+i];
3929 int BitI1 = Mask[l+i+1];
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003930 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003931 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003932 if (V2IsSplat) {
3933 if (isUndefOrEqual(BitI1, NumElts))
3934 return false;
3935 } else {
3936 if (!isUndefOrEqual(BitI1, j+NumElts))
3937 return false;
3938 }
Evan Cheng39623da2006-04-20 08:58:49 +00003939 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003940 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003941 return true;
3942}
3943
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003944/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3945/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3946/// <0, 0, 1, 1>
Craig Topper5a529e42013-01-18 06:44:29 +00003947static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003948 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003949 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003950
3951 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3952 "Unsupported vector type for unpckh");
3953
Craig Topper5a529e42013-01-18 06:44:29 +00003954 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003955 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003956 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003957
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003958 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3959 // FIXME: Need a better way to get rid of this, there's no latency difference
3960 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3961 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003962 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003963 return false;
3964
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003965 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3966 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00003967 unsigned NumLanes = VT.getSizeInBits()/128;
3968 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003969
Craig Topper59235472013-08-06 07:23:12 +00003970 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3971 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3972 int BitI = Mask[l+i];
3973 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00003974
3975 if (!isUndefOrEqual(BitI, j))
3976 return false;
3977 if (!isUndefOrEqual(BitI1, j))
3978 return false;
3979 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003980 }
David Greenea20244d2011-03-02 17:23:43 +00003981
Rafael Espindola15684b22009-04-24 12:40:33 +00003982 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003983}
3984
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003985/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3986/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3987/// <2, 2, 3, 3>
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003988static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003989 unsigned NumElts = VT.getVectorNumElements();
3990
3991 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3992 "Unsupported vector type for unpckh");
3993
Craig Topper5a529e42013-01-18 06:44:29 +00003994 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003995 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003996 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003997
Craig Topper94438ba2011-12-16 08:06:31 +00003998 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3999 // independently on 128-bit lanes.
4000 unsigned NumLanes = VT.getSizeInBits()/128;
4001 unsigned NumLaneElts = NumElts/NumLanes;
4002
Craig Topper59235472013-08-06 07:23:12 +00004003 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4004 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4005 int BitI = Mask[l+i];
4006 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004007 if (!isUndefOrEqual(BitI, j))
4008 return false;
4009 if (!isUndefOrEqual(BitI1, j))
4010 return false;
4011 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004012 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004013 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004014}
4015
Evan Cheng017dcc62006-04-21 01:05:10 +00004016/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4017/// specifies a shuffle of elements that is suitable for input to MOVSS,
4018/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004019static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004020 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004021 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004022 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004023 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004024
Craig Topperc612d792012-01-02 09:17:37 +00004025 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004026
Nate Begeman9008ca62009-04-27 18:41:29 +00004027 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004028 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004029
Craig Topperc612d792012-01-02 09:17:37 +00004030 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004031 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004032 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004033
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004034 return true;
4035}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004036
Craig Topper70b883b2011-11-28 10:14:51 +00004037/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004038/// as permutations between 128-bit chunks or halves. As an example: this
4039/// shuffle bellow:
4040/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4041/// The first half comes from the second half of V1 and the second half from the
4042/// the second half of V2.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004043static bool isVPERM2X128Mask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
4044 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004045 return false;
4046
4047 // The shuffle result is divided into half A and half B. In total the two
4048 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4049 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004050 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004051 bool MatchA = false, MatchB = false;
4052
4053 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004054 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004055 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4056 MatchA = true;
4057 break;
4058 }
4059 }
4060
4061 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004062 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004063 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4064 MatchB = true;
4065 break;
4066 }
4067 }
4068
4069 return MatchA && MatchB;
4070}
4071
Craig Topper70b883b2011-11-28 10:14:51 +00004072/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4073/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004074static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Toppercfcab212013-01-19 08:27:45 +00004075 MVT VT = SVOp->getValueType(0).getSimpleVT();
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004076
Craig Topperc612d792012-01-02 09:17:37 +00004077 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004078
Craig Topperc612d792012-01-02 09:17:37 +00004079 unsigned FstHalf = 0, SndHalf = 0;
4080 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004081 if (SVOp->getMaskElt(i) > 0) {
4082 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4083 break;
4084 }
4085 }
Craig Topperc612d792012-01-02 09:17:37 +00004086 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004087 if (SVOp->getMaskElt(i) > 0) {
4088 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4089 break;
4090 }
4091 }
4092
4093 return (FstHalf | (SndHalf << 4));
4094}
4095
Craig Topper70b883b2011-11-28 10:14:51 +00004096/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004097/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4098/// Note that VPERMIL mask matching is different depending whether theunderlying
4099/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4100/// to the same elements of the low, but to the higher half of the source.
4101/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004102/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004103static bool isVPERMILPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
4104 if (!HasFp256)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004105 return false;
4106
Craig Topperc612d792012-01-02 09:17:37 +00004107 unsigned NumElts = VT.getVectorNumElements();
Craig Topper70b883b2011-11-28 10:14:51 +00004108 // Only match 256-bit with 32/64-bit types
Craig Topper5a529e42013-01-18 06:44:29 +00004109 if (!VT.is256BitVector() || (NumElts != 4 && NumElts != 8))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004110 return false;
4111
Craig Topperc612d792012-01-02 09:17:37 +00004112 unsigned NumLanes = VT.getSizeInBits()/128;
4113 unsigned LaneSize = NumElts/NumLanes;
Craig Topper1a7700a2012-01-19 08:19:12 +00004114 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004115 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004116 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004117 return false;
Craig Topper1a7700a2012-01-19 08:19:12 +00004118 if (NumElts != 8 || l == 0)
Craig Topper70b883b2011-11-28 10:14:51 +00004119 continue;
4120 // VPERMILPS handling
4121 if (Mask[i] < 0)
4122 continue;
Craig Topper1a7700a2012-01-19 08:19:12 +00004123 if (!isUndefOrEqual(Mask[i+l], Mask[i]+l))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004124 return false;
4125 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004126 }
4127
4128 return true;
4129}
4130
Craig Topper5aaffa82012-02-19 02:53:47 +00004131/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004132/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004133/// element of vector 2 and the other elements to come from vector 1 in order.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004134static bool isCommutedMOVLMask(ArrayRef<int> Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004135 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004136 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004137 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004138
4139 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004140 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004141 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004142
Nate Begeman9008ca62009-04-27 18:41:29 +00004143 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004144 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004145
Craig Topperc612d792012-01-02 09:17:37 +00004146 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004147 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4148 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4149 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004150 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004151
Evan Cheng39623da2006-04-20 08:58:49 +00004152 return true;
4153}
4154
Evan Chengd9539472006-04-14 21:59:03 +00004155/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4156/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004157/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Topperdd637ae2012-02-19 05:41:45 +00004158static bool isMOVSHDUPMask(ArrayRef<int> Mask, EVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004159 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004160 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004161 return false;
4162
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004163 unsigned NumElems = VT.getVectorNumElements();
4164
Craig Topper5a529e42013-01-18 06:44:29 +00004165 if ((VT.is128BitVector() && NumElems != 4) ||
4166 (VT.is256BitVector() && NumElems != 8))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004167 return false;
4168
4169 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004170 for (unsigned i = 0; i != NumElems; i += 2)
4171 if (!isUndefOrEqual(Mask[i], i+1) ||
4172 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004173 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004174
4175 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004176}
4177
4178/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4179/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004180/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Topperdd637ae2012-02-19 05:41:45 +00004181static bool isMOVSLDUPMask(ArrayRef<int> Mask, EVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004182 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004183 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004184 return false;
4185
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004186 unsigned NumElems = VT.getVectorNumElements();
4187
Craig Topper5a529e42013-01-18 06:44:29 +00004188 if ((VT.is128BitVector() && NumElems != 4) ||
4189 (VT.is256BitVector() && NumElems != 8))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004190 return false;
4191
4192 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004193 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004194 if (!isUndefOrEqual(Mask[i], i) ||
4195 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004196 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004197
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004198 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004199}
4200
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004201/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4202/// specifies a shuffle of elements that is suitable for input to 256-bit
4203/// version of MOVDDUP.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004204static bool isMOVDDUPYMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
4205 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004206 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004207
Craig Topper7a9a28b2012-08-12 02:23:29 +00004208 unsigned NumElts = VT.getVectorNumElements();
4209 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004210 return false;
4211
Craig Topperc612d792012-01-02 09:17:37 +00004212 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004213 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004214 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004215 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004216 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004217 return false;
4218 return true;
4219}
4220
Evan Cheng0b457f02008-09-25 20:50:48 +00004221/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004222/// specifies a shuffle of elements that is suitable for input to 128-bit
4223/// version of MOVDDUP.
Craig Topperdd637ae2012-02-19 05:41:45 +00004224static bool isMOVDDUPMask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004225 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004226 return false;
4227
Craig Topperc612d792012-01-02 09:17:37 +00004228 unsigned e = VT.getVectorNumElements() / 2;
4229 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004230 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004231 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004232 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004233 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004234 return false;
4235 return true;
4236}
4237
Elena Demikhovsky83952512013-07-31 11:35:14 +00004238/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004239/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004240/// suitable for instruction that extract 128 or 256 bit vectors
4241static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4242 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004243 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4244 return false;
4245
Elena Demikhovsky83952512013-07-31 11:35:14 +00004246 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004247 uint64_t Index =
4248 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4249
Craig Topper5141d972013-01-18 08:41:28 +00004250 MVT VT = N->getValueType(0).getSimpleVT();
4251 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004252 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004253
4254 return Result;
4255}
4256
Elena Demikhovsky83952512013-07-31 11:35:14 +00004257/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004258/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004259/// insertion of 128 or 256-bit subvectors
4260static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4261 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004262 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4263 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004264 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004265 uint64_t Index =
4266 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4267
Craig Topper5141d972013-01-18 08:41:28 +00004268 MVT VT = N->getValueType(0).getSimpleVT();
4269 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004270 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004271
4272 return Result;
4273}
4274
Elena Demikhovsky83952512013-07-31 11:35:14 +00004275bool X86::isVINSERT128Index(SDNode *N) {
4276 return isVINSERTIndex(N, 128);
4277}
4278
4279bool X86::isVINSERT256Index(SDNode *N) {
4280 return isVINSERTIndex(N, 256);
4281}
4282
4283bool X86::isVEXTRACT128Index(SDNode *N) {
4284 return isVEXTRACTIndex(N, 128);
4285}
4286
4287bool X86::isVEXTRACT256Index(SDNode *N) {
4288 return isVEXTRACTIndex(N, 256);
4289}
4290
Evan Cheng63d33002006-03-22 08:01:21 +00004291/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004292/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004293/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004294static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004295 MVT VT = N->getValueType(0).getSimpleVT();
Nate Begeman9008ca62009-04-27 18:41:29 +00004296
Craig Topper1a7700a2012-01-19 08:19:12 +00004297 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4298 "Unsupported vector type for PSHUF/SHUFP");
4299
4300 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4301 // independently on 128-bit lanes.
4302 unsigned NumElts = VT.getVectorNumElements();
4303 unsigned NumLanes = VT.getSizeInBits()/128;
4304 unsigned NumLaneElts = NumElts/NumLanes;
4305
4306 assert((NumLaneElts == 2 || NumLaneElts == 4) &&
4307 "Only supports 2 or 4 elements per lane");
4308
4309 unsigned Shift = (NumLaneElts == 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004310 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004311 for (unsigned i = 0; i != NumElts; ++i) {
4312 int Elt = N->getMaskElt(i);
4313 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004314 Elt &= NumLaneElts - 1;
4315 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004316 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004317 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004318
Evan Cheng63d33002006-03-22 08:01:21 +00004319 return Mask;
4320}
4321
Evan Cheng506d3df2006-03-29 23:07:14 +00004322/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004323/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004324static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004325 MVT VT = N->getValueType(0).getSimpleVT();
Craig Topper6b28d352012-05-03 07:12:59 +00004326
4327 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4328 "Unsupported vector type for PSHUFHW");
4329
4330 unsigned NumElts = VT.getVectorNumElements();
4331
Evan Cheng506d3df2006-03-29 23:07:14 +00004332 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004333 for (unsigned l = 0; l != NumElts; l += 8) {
4334 // 8 nodes per lane, but we only care about the last 4.
4335 for (unsigned i = 0; i < 4; ++i) {
4336 int Elt = N->getMaskElt(l+i+4);
4337 if (Elt < 0) continue;
4338 Elt &= 0x3; // only 2-bits.
4339 Mask |= Elt << (i * 2);
4340 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004341 }
Craig Topper6b28d352012-05-03 07:12:59 +00004342
Evan Cheng506d3df2006-03-29 23:07:14 +00004343 return Mask;
4344}
4345
4346/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004347/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004348static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004349 MVT VT = N->getValueType(0).getSimpleVT();
Craig Topper6b28d352012-05-03 07:12:59 +00004350
4351 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4352 "Unsupported vector type for PSHUFHW");
4353
4354 unsigned NumElts = VT.getVectorNumElements();
4355
Evan Cheng506d3df2006-03-29 23:07:14 +00004356 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004357 for (unsigned l = 0; l != NumElts; l += 8) {
4358 // 8 nodes per lane, but we only care about the first 4.
4359 for (unsigned i = 0; i < 4; ++i) {
4360 int Elt = N->getMaskElt(l+i);
4361 if (Elt < 0) continue;
4362 Elt &= 0x3; // only 2-bits
4363 Mask |= Elt << (i * 2);
4364 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004365 }
Craig Topper6b28d352012-05-03 07:12:59 +00004366
Evan Cheng506d3df2006-03-29 23:07:14 +00004367 return Mask;
4368}
4369
Nate Begemana09008b2009-10-19 02:17:23 +00004370/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4371/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004372static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Toppercfcab212013-01-19 08:27:45 +00004373 MVT VT = SVOp->getValueType(0).getSimpleVT();
Craig Topperd93e4c32011-12-11 19:12:35 +00004374 unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004375
Craig Topper0e2037b2012-01-20 05:53:00 +00004376 unsigned NumElts = VT.getVectorNumElements();
4377 unsigned NumLanes = VT.getSizeInBits()/128;
4378 unsigned NumLaneElts = NumElts/NumLanes;
4379
4380 int Val = 0;
4381 unsigned i;
4382 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004383 Val = SVOp->getMaskElt(i);
4384 if (Val >= 0)
4385 break;
4386 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004387 if (Val >= (int)NumElts)
4388 Val -= NumElts - NumLaneElts;
4389
Eli Friedman63f8dde2011-07-25 21:36:45 +00004390 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004391 return (Val - i) * EltSize;
4392}
4393
Elena Demikhovsky83952512013-07-31 11:35:14 +00004394static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4395 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004396 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004397 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004398
4399 uint64_t Index =
4400 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4401
Craig Toppercfcab212013-01-19 08:27:45 +00004402 MVT VecVT = N->getOperand(0).getValueType().getSimpleVT();
4403 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004404
Elena Demikhovsky83952512013-07-31 11:35:14 +00004405 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004406 return Index / NumElemsPerChunk;
4407}
4408
Elena Demikhovsky83952512013-07-31 11:35:14 +00004409static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4410 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004411 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004412 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004413
4414 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004415 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004416
Craig Toppercfcab212013-01-19 08:27:45 +00004417 MVT VecVT = N->getValueType(0).getSimpleVT();
4418 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004419
Elena Demikhovsky83952512013-07-31 11:35:14 +00004420 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004421 return Index / NumElemsPerChunk;
4422}
4423
Elena Demikhovsky83952512013-07-31 11:35:14 +00004424/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4425/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4426/// and VINSERTI128 instructions.
4427unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4428 return getExtractVEXTRACTImmediate(N, 128);
4429}
4430
4431/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4432/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4433/// and VINSERTI64x4 instructions.
4434unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4435 return getExtractVEXTRACTImmediate(N, 256);
4436}
4437
4438/// getInsertVINSERT128Immediate - Return the appropriate immediate
4439/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4440/// and VINSERTI128 instructions.
4441unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4442 return getInsertVINSERTImmediate(N, 128);
4443}
4444
4445/// getInsertVINSERT256Immediate - Return the appropriate immediate
4446/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4447/// and VINSERTI64x4 instructions.
4448unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4449 return getInsertVINSERTImmediate(N, 256);
4450}
4451
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004452/// getShuffleCLImmediate - Return the appropriate immediate to shuffle
4453/// the specified VECTOR_SHUFFLE mask with VPERMQ and VPERMPD instructions.
4454/// Handles 256-bit.
4455static unsigned getShuffleCLImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004456 MVT VT = N->getValueType(0).getSimpleVT();
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004457
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004458 unsigned NumElts = VT.getVectorNumElements();
4459
Craig Topper095c5282012-04-15 23:48:57 +00004460 assert((VT.is256BitVector() && NumElts == 4) &&
4461 "Unsupported vector type for VPERMQ/VPERMPD");
4462
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004463 unsigned Mask = 0;
4464 for (unsigned i = 0; i != NumElts; ++i) {
4465 int Elt = N->getMaskElt(i);
Craig Topper095c5282012-04-15 23:48:57 +00004466 if (Elt < 0)
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004467 continue;
4468 Mask |= Elt << (i*2);
4469 }
4470
4471 return Mask;
4472}
Evan Cheng37b73872009-07-30 08:33:02 +00004473/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4474/// constant +0.0.
4475bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004476 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4477 return CN->isNullValue();
4478 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4479 return CFP->getValueAPF().isPosZero();
4480 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004481}
4482
Nate Begeman9008ca62009-04-27 18:41:29 +00004483/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4484/// their permute mask.
4485static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4486 SelectionDAG &DAG) {
Craig Topper657a99c2013-01-19 23:36:09 +00004487 MVT VT = SVOp->getValueType(0).getSimpleVT();
Nate Begeman5a5ca152009-04-29 05:20:52 +00004488 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004489 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004490
Nate Begeman5a5ca152009-04-29 05:20:52 +00004491 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004492 int Idx = SVOp->getMaskElt(i);
4493 if (Idx >= 0) {
4494 if (Idx < (int)NumElems)
4495 Idx += NumElems;
4496 else
4497 Idx -= NumElems;
4498 }
4499 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004500 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004501 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004502 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004503}
4504
Evan Cheng533a0aa2006-04-19 20:35:22 +00004505/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4506/// match movhlps. The lower half elements should come from upper half of
4507/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004508/// half of V2 (and in order).
Craig Topperdd637ae2012-02-19 05:41:45 +00004509static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004510 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004511 return false;
4512 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004513 return false;
4514 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004515 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004516 return false;
4517 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004518 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004519 return false;
4520 return true;
4521}
4522
Evan Cheng5ced1d82006-04-06 23:23:56 +00004523/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004524/// is promoted to a vector. It also returns the LoadSDNode by reference if
4525/// required.
4526static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004527 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4528 return false;
4529 N = N->getOperand(0).getNode();
4530 if (!ISD::isNON_EXTLoad(N))
4531 return false;
4532 if (LD)
4533 *LD = cast<LoadSDNode>(N);
4534 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004535}
4536
Dan Gohman65fd6562011-11-03 21:49:52 +00004537// Test whether the given value is a vector value which will be legalized
4538// into a load.
4539static bool WillBeConstantPoolLoad(SDNode *N) {
4540 if (N->getOpcode() != ISD::BUILD_VECTOR)
4541 return false;
4542
4543 // Check for any non-constant elements.
4544 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4545 switch (N->getOperand(i).getNode()->getOpcode()) {
4546 case ISD::UNDEF:
4547 case ISD::ConstantFP:
4548 case ISD::Constant:
4549 break;
4550 default:
4551 return false;
4552 }
4553
4554 // Vectors of all-zeros and all-ones are materialized with special
4555 // instructions rather than being loaded.
4556 return !ISD::isBuildVectorAllZeros(N) &&
4557 !ISD::isBuildVectorAllOnes(N);
4558}
4559
Evan Cheng533a0aa2006-04-19 20:35:22 +00004560/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4561/// match movlp{s|d}. The lower half elements should come from lower half of
4562/// V1 (and in order), and the upper half elements should come from the upper
4563/// half of V2 (and in order). And since V1 will become the source of the
4564/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004565static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Topperdd637ae2012-02-19 05:41:45 +00004566 ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004567 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004568 return false;
4569
Evan Cheng466685d2006-10-09 20:57:25 +00004570 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004571 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004572 // Is V2 is a vector load, don't do this transformation. We will try to use
4573 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004574 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004575 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004576
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004577 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004578
Evan Cheng533a0aa2006-04-19 20:35:22 +00004579 if (NumElems != 2 && NumElems != 4)
4580 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004581 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004582 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004583 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004584 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004585 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004586 return false;
4587 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004588}
4589
Evan Cheng39623da2006-04-20 08:58:49 +00004590/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4591/// all the same.
4592static bool isSplatVector(SDNode *N) {
4593 if (N->getOpcode() != ISD::BUILD_VECTOR)
4594 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004595
Dan Gohman475871a2008-07-27 21:46:04 +00004596 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004597 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4598 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004599 return false;
4600 return true;
4601}
4602
Evan Cheng213d2cf2007-05-17 18:45:50 +00004603/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004604/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004605/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004606static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004607 SDValue V1 = N->getOperand(0);
4608 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004609 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4610 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004611 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004612 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004613 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004614 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4615 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004616 if (Opc != ISD::BUILD_VECTOR ||
4617 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004618 return false;
4619 } else if (Idx >= 0) {
4620 unsigned Opc = V1.getOpcode();
4621 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4622 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004623 if (Opc != ISD::BUILD_VECTOR ||
4624 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004625 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004626 }
4627 }
4628 return true;
4629}
4630
4631/// getZeroVector - Returns a vector of specified type with all zero elements.
4632///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004633static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004634 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004635 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004636
Dale Johannesen0488fb62010-09-30 23:57:10 +00004637 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004638 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004639 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004640 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004641 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004642 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4643 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4644 } else { // SSE1
4645 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4646 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4647 }
Craig Topper5a529e42013-01-18 06:44:29 +00004648 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004649 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004650 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4651 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004652 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4653 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004654 } else {
4655 // 256-bit logic and arithmetic instructions in AVX are all
4656 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4657 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4658 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004659 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4660 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004661 }
Craig Topper9d352402012-04-23 07:24:41 +00004662 } else
4663 llvm_unreachable("Unexpected vector type");
4664
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004665 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004666}
4667
Chris Lattner8a594482007-11-25 00:24:49 +00004668/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004669/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4670/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4671/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004672static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004673 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004674 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004675
Owen Anderson825b72b2009-08-11 20:47:22 +00004676 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004677 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004678 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004679 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004680 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004681 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4682 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004683 } else { // AVX
4684 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004685 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004686 }
Craig Topper5a529e42013-01-18 06:44:29 +00004687 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004688 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004689 } else
4690 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004691
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004692 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004693}
4694
Evan Cheng39623da2006-04-20 08:58:49 +00004695/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4696/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004697static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004698 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004699 if (Mask[i] > (int)NumElems) {
4700 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004701 }
Evan Cheng39623da2006-04-20 08:58:49 +00004702 }
Evan Cheng39623da2006-04-20 08:58:49 +00004703}
4704
Evan Cheng017dcc62006-04-21 01:05:10 +00004705/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4706/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004707static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004708 SDValue V2) {
4709 unsigned NumElems = VT.getVectorNumElements();
4710 SmallVector<int, 8> Mask;
4711 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004712 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004713 Mask.push_back(i);
4714 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004715}
4716
Nate Begeman9008ca62009-04-27 18:41:29 +00004717/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004718static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004719 SDValue V2) {
4720 unsigned NumElems = VT.getVectorNumElements();
4721 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004722 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004723 Mask.push_back(i);
4724 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004725 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004726 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004727}
4728
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004729/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004730static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004731 SDValue V2) {
4732 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004733 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004734 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004735 Mask.push_back(i + Half);
4736 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004737 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004738 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004739}
4740
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004741// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004742// a generic shuffle instruction because the target has no such instructions.
4743// Generate shuffles which repeat i16 and i8 several times until they can be
4744// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004745static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004746 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004747 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004748 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004749
Nate Begeman9008ca62009-04-27 18:41:29 +00004750 while (NumElems > 4) {
4751 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004752 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004753 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004754 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004755 EltNo -= NumElems/2;
4756 }
4757 NumElems >>= 1;
4758 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004759 return V;
4760}
Eric Christopherfd179292009-08-27 18:07:15 +00004761
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004762/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4763static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4764 EVT VT = V.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004765 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004766
Craig Topper5a529e42013-01-18 06:44:29 +00004767 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004768 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004769 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004770 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4771 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004772 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004773 // To use VPERMILPS to splat scalars, the second half of indicies must
4774 // refer to the higher part, which is a duplication of the lower one,
4775 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004776 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4777 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004778
4779 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4780 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4781 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004782 } else
4783 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004784
4785 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4786}
4787
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004788/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004789static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4790 EVT SrcVT = SV->getValueType(0);
4791 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004792 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004793
4794 int EltNo = SV->getSplatIndex();
4795 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004796 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004797
Craig Topper5a529e42013-01-18 06:44:29 +00004798 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4799 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004800
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004801 // Extract the 128-bit part containing the splat element and update
4802 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004803 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004804 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4805 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004806 EltNo -= NumElems/2;
4807 }
4808
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004809 // All i16 and i8 vector types can't be used directly by a generic shuffle
4810 // instruction because the target has no such instruction. Generate shuffles
4811 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004812 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004813 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004814 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004815 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004816
4817 // Recreate the 256-bit vector and place the same 128-bit vector
4818 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004819 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004820 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004821 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004822 }
4823
4824 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004825}
4826
Evan Chengba05f722006-04-21 23:03:30 +00004827/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004828/// vector of zero or undef vector. This produces a shuffle where the low
4829/// element of V2 is swizzled into the zero/undef vector, landing at element
4830/// 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 +00004831static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004832 bool IsZero,
4833 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004834 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004835 EVT VT = V2.getValueType();
Craig Topper12216172012-01-13 08:12:35 +00004836 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004837 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004838 unsigned NumElems = VT.getVectorNumElements();
4839 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004840 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004841 // If this is the insertion idx, put the low elt of V2 here.
4842 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004843 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004844}
4845
Craig Toppera1ffc682012-03-20 06:42:26 +00004846/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4847/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004848/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004849static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004850 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004851 unsigned NumElems = VT.getVectorNumElements();
4852 SDValue ImmN;
4853
Craig Topper89f4e662012-03-20 07:17:59 +00004854 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004855 switch(N->getOpcode()) {
4856 case X86ISD::SHUFP:
4857 ImmN = N->getOperand(N->getNumOperands()-1);
4858 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4859 break;
4860 case X86ISD::UNPCKH:
4861 DecodeUNPCKHMask(VT, Mask);
4862 break;
4863 case X86ISD::UNPCKL:
4864 DecodeUNPCKLMask(VT, Mask);
4865 break;
4866 case X86ISD::MOVHLPS:
4867 DecodeMOVHLPSMask(NumElems, Mask);
4868 break;
4869 case X86ISD::MOVLHPS:
4870 DecodeMOVLHPSMask(NumElems, Mask);
4871 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004872 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004873 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004874 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004875 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004876 case X86ISD::PSHUFD:
4877 case X86ISD::VPERMILP:
4878 ImmN = N->getOperand(N->getNumOperands()-1);
4879 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004880 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004881 break;
4882 case X86ISD::PSHUFHW:
4883 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004884 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004885 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004886 break;
4887 case X86ISD::PSHUFLW:
4888 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004889 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004890 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004891 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004892 case X86ISD::VPERMI:
4893 ImmN = N->getOperand(N->getNumOperands()-1);
4894 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4895 IsUnary = true;
4896 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004897 case X86ISD::MOVSS:
4898 case X86ISD::MOVSD: {
4899 // The index 0 always comes from the first element of the second source,
4900 // this is why MOVSS and MOVSD are used in the first place. The other
4901 // elements come from the other positions of the first source vector
4902 Mask.push_back(NumElems);
4903 for (unsigned i = 1; i != NumElems; ++i) {
4904 Mask.push_back(i);
4905 }
4906 break;
4907 }
4908 case X86ISD::VPERM2X128:
4909 ImmN = N->getOperand(N->getNumOperands()-1);
4910 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004911 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004912 break;
4913 case X86ISD::MOVDDUP:
4914 case X86ISD::MOVLHPD:
4915 case X86ISD::MOVLPD:
4916 case X86ISD::MOVLPS:
4917 case X86ISD::MOVSHDUP:
4918 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004919 // Not yet implemented
4920 return false;
4921 default: llvm_unreachable("unknown target shuffle node");
4922 }
4923
4924 return true;
4925}
4926
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004927/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4928/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004929static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004930 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004931 if (Depth == 6)
4932 return SDValue(); // Limit search depth.
4933
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004934 SDValue V = SDValue(N, 0);
4935 EVT VT = V.getValueType();
4936 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004937
4938 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4939 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00004940 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004941
Craig Topper3d092db2012-03-21 02:14:01 +00004942 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004943 return DAG.getUNDEF(VT.getVectorElementType());
4944
Craig Topperd156dc12012-02-06 07:17:51 +00004945 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00004946 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4947 : SV->getOperand(1);
4948 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004949 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004950
4951 // Recurse into target specific vector shuffles to find scalars.
4952 if (isTargetShuffle(Opcode)) {
Craig Topperd978c542012-05-06 19:46:21 +00004953 MVT ShufVT = V.getValueType().getSimpleVT();
4954 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00004955 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00004956 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004957
Craig Topperd978c542012-05-06 19:46:21 +00004958 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00004959 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004960
Craig Topper3d092db2012-03-21 02:14:01 +00004961 int Elt = ShuffleMask[Index];
4962 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00004963 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004964
Craig Topper3d092db2012-03-21 02:14:01 +00004965 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00004966 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00004967 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004968 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004969 }
4970
4971 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004972 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004973 V = V.getOperand(0);
4974 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004975 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004976
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004977 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004978 return SDValue();
4979 }
4980
4981 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4982 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00004983 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004984
4985 if (V.getOpcode() == ISD::BUILD_VECTOR)
4986 return V.getOperand(Index);
4987
4988 return SDValue();
4989}
4990
4991/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4992/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004993/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00004994/// We count undefs as zeros until PreferredNum is reached.
4995static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
4996 unsigned NumElems, bool ZerosFromLeft,
4997 SelectionDAG &DAG,
4998 unsigned PreferredNum = -1U) {
4999 unsigned NumZeros = 0;
5000 for (unsigned i = 0; i != NumElems; ++i) {
5001 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005002 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005003 if (!Elt.getNode())
5004 break;
5005
5006 if (X86::isZeroNode(Elt))
5007 ++NumZeros;
5008 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5009 NumZeros = std::min(NumZeros + 1, PreferredNum);
5010 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005011 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005012 }
5013
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005014 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005015}
5016
Craig Topper3d092db2012-03-21 02:14:01 +00005017/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5018/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005019/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5020static
Craig Topper3d092db2012-03-21 02:14:01 +00005021bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5022 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5023 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005024 bool SeenV1 = false;
5025 bool SeenV2 = false;
5026
Craig Topper3d092db2012-03-21 02:14:01 +00005027 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005028 int Idx = SVOp->getMaskElt(i);
5029 // Ignore undef indicies
5030 if (Idx < 0)
5031 continue;
5032
Craig Topper3d092db2012-03-21 02:14:01 +00005033 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005034 SeenV1 = true;
5035 else
5036 SeenV2 = true;
5037
5038 // Only accept consecutive elements from the same vector
5039 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5040 return false;
5041 }
5042
5043 OpNum = SeenV1 ? 0 : 1;
5044 return true;
5045}
5046
5047/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5048/// logical left shift of a vector.
5049static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5050 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5051 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005052 unsigned NumZeros = getNumOfConsecutiveZeros(
5053 SVOp, NumElems, false /* check zeros from right */, DAG,
5054 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005055 unsigned OpSrc;
5056
5057 if (!NumZeros)
5058 return false;
5059
5060 // Considering the elements in the mask that are not consecutive zeros,
5061 // check if they consecutively come from only one of the source vectors.
5062 //
5063 // V1 = {X, A, B, C} 0
5064 // \ \ \ /
5065 // vector_shuffle V1, V2 <1, 2, 3, X>
5066 //
5067 if (!isShuffleMaskConsecutive(SVOp,
5068 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005069 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005070 NumZeros, // Where to start looking in the src vector
5071 NumElems, // Number of elements in vector
5072 OpSrc)) // Which source operand ?
5073 return false;
5074
5075 isLeft = false;
5076 ShAmt = NumZeros;
5077 ShVal = SVOp->getOperand(OpSrc);
5078 return true;
5079}
5080
5081/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5082/// logical left shift of a vector.
5083static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5084 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5085 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005086 unsigned NumZeros = getNumOfConsecutiveZeros(
5087 SVOp, NumElems, true /* check zeros from left */, DAG,
5088 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005089 unsigned OpSrc;
5090
5091 if (!NumZeros)
5092 return false;
5093
5094 // Considering the elements in the mask that are not consecutive zeros,
5095 // check if they consecutively come from only one of the source vectors.
5096 //
5097 // 0 { A, B, X, X } = V2
5098 // / \ / /
5099 // vector_shuffle V1, V2 <X, X, 4, 5>
5100 //
5101 if (!isShuffleMaskConsecutive(SVOp,
5102 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005103 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005104 0, // Where to start looking in the src vector
5105 NumElems, // Number of elements in vector
5106 OpSrc)) // Which source operand ?
5107 return false;
5108
5109 isLeft = true;
5110 ShAmt = NumZeros;
5111 ShVal = SVOp->getOperand(OpSrc);
5112 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005113}
5114
5115/// isVectorShift - Returns true if the shuffle can be implemented as a
5116/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005117static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005118 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005119 // Although the logic below support any bitwidth size, there are no
5120 // shift instructions which handle more than 128-bit vectors.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005121 if (!SVOp->getValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005122 return false;
5123
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005124 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5125 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5126 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005127
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005128 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005129}
5130
Evan Chengc78d3b42006-04-24 18:01:45 +00005131/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5132///
Dan Gohman475871a2008-07-27 21:46:04 +00005133static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005134 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005135 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005136 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005137 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005138 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005139 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005140
Andrew Trickac6d9be2013-05-25 02:42:55 +00005141 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005142 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005143 bool First = true;
5144 for (unsigned i = 0; i < 16; ++i) {
5145 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5146 if (ThisIsNonZero && First) {
5147 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005148 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005149 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005150 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005151 First = false;
5152 }
5153
5154 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005155 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005156 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5157 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005158 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005159 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005160 }
5161 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005162 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5163 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5164 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005165 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005166 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005167 } else
5168 ThisElt = LastElt;
5169
Gabor Greifba36cb52008-08-28 21:40:38 +00005170 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005171 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005172 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005173 }
5174 }
5175
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005176 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005177}
5178
Bill Wendlinga348c562007-03-22 18:42:45 +00005179/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005180///
Dan Gohman475871a2008-07-27 21:46:04 +00005181static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005182 unsigned NumNonZero, unsigned NumZero,
5183 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005184 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005185 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005186 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005187 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005188
Andrew Trickac6d9be2013-05-25 02:42:55 +00005189 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005190 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005191 bool First = true;
5192 for (unsigned i = 0; i < 8; ++i) {
5193 bool isNonZero = (NonZeros & (1 << i)) != 0;
5194 if (isNonZero) {
5195 if (First) {
5196 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005197 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005198 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005199 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005200 First = false;
5201 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005202 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005203 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005204 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005205 }
5206 }
5207
5208 return V;
5209}
5210
Evan Chengf26ffe92008-05-29 08:22:04 +00005211/// getVShift - Return a vector logical shift node.
5212///
Owen Andersone50ed302009-08-10 22:56:29 +00005213static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005214 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005215 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005216 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005217 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005218 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005219 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5220 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005221 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005222 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005223 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005224}
5225
Dan Gohman475871a2008-07-27 21:46:04 +00005226SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00005227X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, SDLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00005228 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005229
Evan Chengc3630942009-12-09 21:00:30 +00005230 // Check if the scalar load can be widened into a vector load. And if
5231 // the address is "base + cst" see if the cst can be "absorbed" into
5232 // the shuffle mask.
5233 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5234 SDValue Ptr = LD->getBasePtr();
5235 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5236 return SDValue();
5237 EVT PVT = LD->getValueType(0);
5238 if (PVT != MVT::i32 && PVT != MVT::f32)
5239 return SDValue();
5240
5241 int FI = -1;
5242 int64_t Offset = 0;
5243 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5244 FI = FINode->getIndex();
5245 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005246 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005247 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5248 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5249 Offset = Ptr.getConstantOperandVal(1);
5250 Ptr = Ptr.getOperand(0);
5251 } else {
5252 return SDValue();
5253 }
5254
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005255 // FIXME: 256-bit vector instructions don't require a strict alignment,
5256 // improve this code to support it better.
5257 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005258 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005259 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005260 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005261 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005262 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005263 // Can't change the alignment. FIXME: It's possible to compute
5264 // the exact stack offset and reference FI + adjust offset instead.
5265 // If someone *really* cares about this. That's the way to implement it.
5266 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005267 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005268 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005269 }
5270 }
5271
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005272 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005273 // Ptr + (Offset & ~15).
5274 if (Offset < 0)
5275 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005276 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005277 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005278 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005279 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005280 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005281 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5282
5283 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005284 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005285
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005286 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5287 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005288 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005289 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005290
Craig Topperb19982c2013-08-07 08:16:07 +00005291 SmallVector<int, 8> Mask(NumElems, EltNo);
Craig Toppercc3000632012-01-30 07:50:31 +00005292 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005293 }
5294
5295 return SDValue();
5296}
5297
Michael J. Spencerec38de22010-10-10 22:04:20 +00005298/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5299/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005300/// load which has the same value as a build_vector whose operands are 'elts'.
5301///
5302/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005303///
Nate Begeman1449f292010-03-24 22:19:06 +00005304/// FIXME: we'd also like to handle the case where the last elements are zero
5305/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5306/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005307static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005308 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005309 EVT EltVT = VT.getVectorElementType();
5310 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005311
Nate Begemanfdea31a2010-03-24 20:49:50 +00005312 LoadSDNode *LDBase = NULL;
5313 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005314
Nate Begeman1449f292010-03-24 22:19:06 +00005315 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005316 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005317 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005318 for (unsigned i = 0; i < NumElems; ++i) {
5319 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005320
Nate Begemanfdea31a2010-03-24 20:49:50 +00005321 if (!Elt.getNode() ||
5322 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5323 return SDValue();
5324 if (!LDBase) {
5325 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5326 return SDValue();
5327 LDBase = cast<LoadSDNode>(Elt.getNode());
5328 LastLoadedElt = i;
5329 continue;
5330 }
5331 if (Elt.getOpcode() == ISD::UNDEF)
5332 continue;
5333
5334 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5335 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5336 return SDValue();
5337 LastLoadedElt = i;
5338 }
Nate Begeman1449f292010-03-24 22:19:06 +00005339
5340 // If we have found an entire vector of loads and undefs, then return a large
5341 // load of the entire vector width starting at the base pointer. If we found
5342 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005343 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005344 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005345 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005346 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5347 LDBase->getPointerInfo(),
5348 LDBase->isVolatile(), LDBase->isNonTemporal(),
5349 LDBase->isInvariant(), 0);
5350 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5351 LDBase->getPointerInfo(),
5352 LDBase->isVolatile(), LDBase->isNonTemporal(),
5353 LDBase->isInvariant(), LDBase->getAlignment());
5354
5355 if (LDBase->hasAnyUseOfValue(1)) {
5356 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5357 SDValue(LDBase, 1),
5358 SDValue(NewLd.getNode(), 1));
5359 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5360 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5361 SDValue(NewLd.getNode(), 1));
5362 }
5363
5364 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005365 }
5366 if (NumElems == 4 && LastLoadedElt == 1 &&
5367 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005368 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5369 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005370 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005371 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5372 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005373 LDBase->getPointerInfo(),
5374 LDBase->getAlignment(),
5375 false/*isVolatile*/, true/*ReadMem*/,
5376 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005377
5378 // Make sure the newly-created LOAD is in the same position as LDBase in
5379 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5380 // update uses of LDBase's output chain to use the TokenFactor.
5381 if (LDBase->hasAnyUseOfValue(1)) {
5382 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5383 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5384 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5385 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5386 SDValue(ResNode.getNode(), 1));
5387 }
5388
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005389 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005390 }
5391 return SDValue();
5392}
5393
Nadav Rotem9d68b062012-04-08 12:54:54 +00005394/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5395/// to generate a splat value for the following cases:
5396/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005397/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005398/// a scalar load, or a constant.
5399/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005400/// or SDValue() otherwise.
Nadav Rotem154819d2012-04-09 07:45:58 +00005401SDValue
Craig Topper55b24052012-09-11 06:15:32 +00005402X86TargetLowering::LowerVectorBroadcast(SDValue Op, SelectionDAG &DAG) const {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005403 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005404 return SDValue();
5405
Craig Topper45e1c752013-01-20 00:38:18 +00005406 MVT VT = Op.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005407 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005408
Craig Topper5da8a802012-05-04 05:49:51 +00005409 assert((VT.is128BitVector() || VT.is256BitVector()) &&
5410 "Unsupported vector type for broadcast.");
5411
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005412 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005413 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005414
Nadav Rotem9d68b062012-04-08 12:54:54 +00005415 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005416 default:
5417 // Unknown pattern found.
5418 return SDValue();
5419
5420 case ISD::BUILD_VECTOR: {
5421 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005422 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005423 return SDValue();
5424
Nadav Rotem9d68b062012-04-08 12:54:54 +00005425 Ld = Op.getOperand(0);
5426 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5427 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005428
5429 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005430 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005431 // Constants may have multiple users.
5432 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005433 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005434 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005435 }
5436
5437 case ISD::VECTOR_SHUFFLE: {
5438 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5439
5440 // Shuffles must have a splat mask where the first element is
5441 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005442 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005443 return SDValue();
5444
5445 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005446 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005447 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5448
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005449 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005450 return SDValue();
5451
5452 // Use the register form of the broadcast instruction available on AVX2.
5453 if (VT.is256BitVector())
5454 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5455 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5456 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005457
5458 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005459 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005460 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005461
5462 // The scalar_to_vector node and the suspected
5463 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005464 // Constants may have multiple users.
5465 if (!ConstSplatVal && (!Sc.hasOneUse() || !Ld.hasOneUse()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005466 return SDValue();
5467 break;
5468 }
5469 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005470
Craig Topper7a9a28b2012-08-12 02:23:29 +00005471 bool Is256 = VT.is256BitVector();
Nadav Rotem9d68b062012-04-08 12:54:54 +00005472
5473 // Handle the broadcasting a single constant scalar from the constant pool
5474 // into a vector. On Sandybridge it is still better to load a constant vector
5475 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005476 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005477 EVT CVT = Ld.getValueType();
5478 assert(!CVT.isVector() && "Must not broadcast a vector type");
5479 unsigned ScalarSize = CVT.getSizeInBits();
5480
Craig Topper5da8a802012-05-04 05:49:51 +00005481 if (ScalarSize == 32 || (Is256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005482 const Constant *C = 0;
5483 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5484 C = CI->getConstantIntValue();
5485 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5486 C = CF->getConstantFPValue();
5487
5488 assert(C && "Invalid constant type");
5489
Nadav Rotem154819d2012-04-09 07:45:58 +00005490 SDValue CP = DAG.getConstantPool(C, getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005491 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005492 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005493 MachinePointerInfo::getConstantPool(),
5494 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005495
Nadav Rotem9d68b062012-04-08 12:54:54 +00005496 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5497 }
5498 }
5499
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005500 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005501 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5502
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005503 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005504 if (!IsLoad && Subtarget->hasInt256() &&
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005505 (ScalarSize == 32 || (Is256 && ScalarSize == 64)))
5506 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5507
5508 // The scalar source must be a normal load.
5509 if (!IsLoad)
5510 return SDValue();
5511
Craig Topper5da8a802012-05-04 05:49:51 +00005512 if (ScalarSize == 32 || (Is256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005513 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005514
Craig Toppera9376332012-01-10 08:23:59 +00005515 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005516 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005517 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005518 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005519 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005520 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005521
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005522 // Unsupported broadcast.
5523 return SDValue();
5524}
5525
Evan Chengc3630942009-12-09 21:00:30 +00005526SDValue
Michael Liaofacace82012-10-19 17:15:18 +00005527X86TargetLowering::buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) const {
5528 EVT VT = Op.getValueType();
5529
5530 // Skip if insert_vec_elt is not supported.
5531 if (!isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5532 return SDValue();
5533
Andrew Trickac6d9be2013-05-25 02:42:55 +00005534 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005535 unsigned NumElems = Op.getNumOperands();
5536
5537 SDValue VecIn1;
5538 SDValue VecIn2;
5539 SmallVector<unsigned, 4> InsertIndices;
5540 SmallVector<int, 8> Mask(NumElems, -1);
5541
5542 for (unsigned i = 0; i != NumElems; ++i) {
5543 unsigned Opc = Op.getOperand(i).getOpcode();
5544
5545 if (Opc == ISD::UNDEF)
5546 continue;
5547
5548 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5549 // Quit if more than 1 elements need inserting.
5550 if (InsertIndices.size() > 1)
5551 return SDValue();
5552
5553 InsertIndices.push_back(i);
5554 continue;
5555 }
5556
5557 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5558 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5559
5560 // Quit if extracted from vector of different type.
5561 if (ExtractedFromVec.getValueType() != VT)
5562 return SDValue();
5563
5564 // Quit if non-constant index.
5565 if (!isa<ConstantSDNode>(ExtIdx))
5566 return SDValue();
5567
5568 if (VecIn1.getNode() == 0)
5569 VecIn1 = ExtractedFromVec;
5570 else if (VecIn1 != ExtractedFromVec) {
5571 if (VecIn2.getNode() == 0)
5572 VecIn2 = ExtractedFromVec;
5573 else if (VecIn2 != ExtractedFromVec)
5574 // Quit if more than 2 vectors to shuffle
5575 return SDValue();
5576 }
5577
5578 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5579
5580 if (ExtractedFromVec == VecIn1)
5581 Mask[i] = Idx;
5582 else if (ExtractedFromVec == VecIn2)
5583 Mask[i] = Idx + NumElems;
5584 }
5585
5586 if (VecIn1.getNode() == 0)
5587 return SDValue();
5588
5589 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5590 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5591 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5592 unsigned Idx = InsertIndices[i];
5593 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5594 DAG.getIntPtrConstant(Idx));
5595 }
5596
5597 return NV;
5598}
5599
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005600// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5601SDValue
5602X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5603
5604 EVT VT = Op.getValueType();
5605 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5606 "Unexpected type in LowerBUILD_VECTORvXi1!");
5607
5608 SDLoc dl(Op);
5609 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5610 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5611 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5612 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5613 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5614 Ops, VT.getVectorNumElements());
5615 }
5616
5617 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5618 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5619 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5620 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5621 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5622 Ops, VT.getVectorNumElements());
5623 }
5624
5625 bool AllContants = true;
5626 uint64_t Immediate = 0;
5627 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5628 SDValue In = Op.getOperand(idx);
5629 if (In.getOpcode() == ISD::UNDEF)
5630 continue;
5631 if (!isa<ConstantSDNode>(In)) {
5632 AllContants = false;
5633 break;
5634 }
5635 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005636 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005637 }
5638
5639 if (AllContants) {
5640 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5641 DAG.getConstant(Immediate, MVT::i16));
5642 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5643 DAG.getIntPtrConstant(0));
5644 }
5645
5646 if (!isSplatVector(Op.getNode()))
5647 llvm_unreachable("Unsupported predicate operation");
5648
5649 SDValue In = Op.getOperand(0);
5650 SDValue EFLAGS, X86CC;
5651 if (In.getOpcode() == ISD::SETCC) {
5652 SDValue Op0 = In.getOperand(0);
5653 SDValue Op1 = In.getOperand(1);
5654 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5655 bool isFP = Op1.getValueType().isFloatingPoint();
5656 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5657
5658 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5659
5660 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5661 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5662 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5663 } else if (In.getOpcode() == X86ISD::SETCC) {
5664 X86CC = In.getOperand(0);
5665 EFLAGS = In.getOperand(1);
5666 } else {
5667 // The algorithm:
5668 // Bit1 = In & 0x1
5669 // if (Bit1 != 0)
5670 // ZF = 0
5671 // else
5672 // ZF = 1
5673 // if (ZF == 0)
5674 // res = allOnes ### CMOVNE -1, %res
5675 // else
5676 // res = allZero
5677 MVT InVT = In.getValueType().getSimpleVT();
5678 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5679 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5680 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5681 }
5682
5683 if (VT == MVT::v16i1) {
5684 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5685 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5686 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5687 Cst0, Cst1, X86CC, EFLAGS);
5688 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5689 }
5690
5691 if (VT == MVT::v8i1) {
5692 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5693 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5694 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5695 Cst0, Cst1, X86CC, EFLAGS);
5696 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5697 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5698 }
5699 llvm_unreachable("Unsupported predicate operation");
5700}
5701
Michael Liaofacace82012-10-19 17:15:18 +00005702SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005703X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005704 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005705
Craig Topper45e1c752013-01-20 00:38:18 +00005706 MVT VT = Op.getValueType().getSimpleVT();
5707 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005708 unsigned NumElems = Op.getNumOperands();
5709
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005710 // Generate vectors for predicate vectors.
5711 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5712 return LowerBUILD_VECTORvXi1(Op, DAG);
5713
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005714 // Vectors containing all zeros can be matched by pxor and xorps later
5715 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5716 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5717 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Craig Topper07a27622012-01-22 03:07:48 +00005718 if (VT == MVT::v4i32 || VT == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005719 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005720
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005721 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005722 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005723
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005724 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005725 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5726 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005727 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005728 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005729 return Op;
5730
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005731 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005732 }
5733
Nadav Rotem154819d2012-04-09 07:45:58 +00005734 SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005735 if (Broadcast.getNode())
5736 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005737
Owen Andersone50ed302009-08-10 22:56:29 +00005738 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005739
Evan Cheng0db9fe62006-04-25 20:13:52 +00005740 unsigned NumZero = 0;
5741 unsigned NumNonZero = 0;
5742 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005743 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005744 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005745 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005746 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005747 if (Elt.getOpcode() == ISD::UNDEF)
5748 continue;
5749 Values.insert(Elt);
5750 if (Elt.getOpcode() != ISD::Constant &&
5751 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005752 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005753 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005754 NumZero++;
5755 else {
5756 NonZeros |= (1 << i);
5757 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005758 }
5759 }
5760
Chris Lattner97a2a562010-08-26 05:24:29 +00005761 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5762 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005763 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005764
Chris Lattner67f453a2008-03-09 05:42:06 +00005765 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005766 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005767 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005768 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005769
Chris Lattner62098042008-03-09 01:05:04 +00005770 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5771 // the value are obviously zero, truncate the value to i32 and do the
5772 // insertion that way. Only do this if the value is non-constant or if the
5773 // value is a constant being inserted into element 0. It is cheaper to do
5774 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005775 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005776 (!IsAllConstants || Idx == 0)) {
5777 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005778 // Handle SSE only.
5779 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5780 EVT VecVT = MVT::v4i32;
5781 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005782
Chris Lattner62098042008-03-09 01:05:04 +00005783 // Truncate the value (which may itself be a constant) to i32, and
5784 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005785 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005786 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005787 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005788
Chris Lattner62098042008-03-09 01:05:04 +00005789 // Now we have our 32-bit value zero extended in the low element of
5790 // a vector. If Idx != 0, swizzle it into place.
5791 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005792 SmallVector<int, 4> Mask;
5793 Mask.push_back(Idx);
5794 for (unsigned i = 1; i != VecElts; ++i)
5795 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005796 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005797 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005798 }
Craig Topper07a27622012-01-22 03:07:48 +00005799 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005800 }
5801 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005802
Chris Lattner19f79692008-03-08 22:59:52 +00005803 // If we have a constant or non-constant insertion into the low element of
5804 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5805 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005806 // depending on what the source datatype is.
5807 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005808 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005809 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005810
5811 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005812 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005813 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005814 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005815 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5816 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005817 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005818 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005819 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5820 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005821 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005822 }
5823
5824 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005825 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005826 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005827 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005828 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005829 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005830 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005831 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005832 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005833 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005834 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005835 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005836 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005837
5838 // Is it a vector logical left shift?
5839 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005840 X86::isZeroNode(Op.getOperand(0)) &&
5841 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005842 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005843 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005844 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005845 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005846 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005847 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005848
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005849 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005850 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005851
Chris Lattner19f79692008-03-08 22:59:52 +00005852 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5853 // is a non-constant being inserted into an element other than the low one,
5854 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5855 // movd/movss) to move this into the low element, then shuffle it into
5856 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005857 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005858 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Evan Cheng0db9fe62006-04-25 20:13:52 +00005860 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005861 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005862 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005863 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005864 MaskVec.push_back(i == Idx ? 0 : 1);
5865 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005866 }
5867 }
5868
Chris Lattner67f453a2008-03-09 05:42:06 +00005869 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005870 if (Values.size() == 1) {
5871 if (EVTBits == 32) {
5872 // Instead of a shuffle like this:
5873 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5874 // Check if it's possible to issue this instead.
5875 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005876 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005877 SDValue Item = Op.getOperand(Idx);
5878 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5879 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5880 }
Dan Gohman475871a2008-07-27 21:46:04 +00005881 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005883
Dan Gohmana3941172007-07-24 22:55:08 +00005884 // A vector full of immediates; various special cases are already
5885 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005886 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005887 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005888
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005889 // For AVX-length vectors, build the individual 128-bit pieces and use
5890 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005891 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005892 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005893 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005894 V.push_back(Op.getOperand(i));
5895
5896 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5897
5898 // Build both the lower and upper subvector.
5899 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5900 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5901 NumElems/2);
5902
5903 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005904 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005905 }
5906
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005907 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005908 if (EVTBits == 64) {
5909 if (NumNonZero == 1) {
5910 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005911 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005912 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005913 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005914 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005915 }
Dan Gohman475871a2008-07-27 21:46:04 +00005916 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005917 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005918
5919 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005920 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005921 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005922 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005923 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005924 }
5925
Bill Wendling826f36f2007-03-28 00:57:11 +00005926 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005927 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005928 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005929 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005930 }
5931
5932 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00005933 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005934 if (NumElems == 4 && NumZero > 0) {
5935 for (unsigned i = 0; i < 4; ++i) {
5936 bool isZero = !(NonZeros & (1 << i));
5937 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005938 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005939 else
Dale Johannesenace16102009-02-03 19:33:06 +00005940 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005941 }
5942
5943 for (unsigned i = 0; i < 2; ++i) {
5944 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5945 default: break;
5946 case 0:
5947 V[i] = V[i*2]; // Must be a zero vector.
5948 break;
5949 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005950 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005951 break;
5952 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005953 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005954 break;
5955 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005956 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005957 break;
5958 }
5959 }
5960
Benjamin Kramer9c683542012-01-30 15:16:21 +00005961 bool Reverse1 = (NonZeros & 0x3) == 2;
5962 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5963 int MaskVec[] = {
5964 Reverse1 ? 1 : 0,
5965 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00005966 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
5967 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00005968 };
Nate Begeman9008ca62009-04-27 18:41:29 +00005969 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005970 }
5971
Craig Topper7a9a28b2012-08-12 02:23:29 +00005972 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005973 // Check for a build vector of consecutive loads.
5974 for (unsigned i = 0; i < NumElems; ++i)
5975 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005976
Nate Begemanfdea31a2010-03-24 20:49:50 +00005977 // Check for elements which are consecutive loads.
5978 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5979 if (LD.getNode())
5980 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005981
Michael Liaofacace82012-10-19 17:15:18 +00005982 // Check for a build vector from mostly shuffle plus few inserting.
5983 SDValue Sh = buildFromShuffleMostly(Op, DAG);
5984 if (Sh.getNode())
5985 return Sh;
5986
Michael J. Spencerec38de22010-10-10 22:04:20 +00005987 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00005988 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005989 SDValue Result;
5990 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5991 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5992 else
5993 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005994
Chris Lattner24faf612010-08-28 17:59:08 +00005995 for (unsigned i = 1; i < NumElems; ++i) {
5996 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5997 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005998 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005999 }
6000 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006001 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006002
Chris Lattner6e80e442010-08-28 17:15:43 +00006003 // Otherwise, expand into a number of unpckl*, start by extending each of
6004 // our (non-undef) elements to the full vector width with the element in the
6005 // bottom slot of the vector (which generates no code for SSE).
6006 for (unsigned i = 0; i < NumElems; ++i) {
6007 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6008 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6009 else
6010 V[i] = DAG.getUNDEF(VT);
6011 }
6012
6013 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006014 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6015 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6016 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006017 unsigned EltStride = NumElems >> 1;
6018 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006019 for (unsigned i = 0; i < EltStride; ++i) {
6020 // If V[i+EltStride] is undef and this is the first round of mixing,
6021 // then it is safe to just drop this shuffle: V[i] is already in the
6022 // right place, the one element (since it's the first round) being
6023 // inserted as undef can be dropped. This isn't safe for successive
6024 // rounds because they will permute elements within both vectors.
6025 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6026 EltStride == NumElems/2)
6027 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006028
Chris Lattner6e80e442010-08-28 17:15:43 +00006029 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006030 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006031 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006032 }
6033 return V[0];
6034 }
Dan Gohman475871a2008-07-27 21:46:04 +00006035 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006036}
6037
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006038// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6039// to create 256-bit vectors from two other 128-bit ones.
6040static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006041 SDLoc dl(Op);
Craig Topper45e1c752013-01-20 00:38:18 +00006042 MVT ResVT = Op.getValueType().getSimpleVT();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006043
Elena Demikhovsky83952512013-07-31 11:35:14 +00006044 assert((ResVT.is256BitVector() ||
6045 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006046
6047 SDValue V1 = Op.getOperand(0);
6048 SDValue V2 = Op.getOperand(1);
6049 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006050 if(ResVT.is256BitVector())
6051 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006052
Elena Demikhovsky83952512013-07-31 11:35:14 +00006053 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006054}
6055
Craig Topper55b24052012-09-11 06:15:32 +00006056static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006057 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006058
Elena Demikhovsky83952512013-07-31 11:35:14 +00006059 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006060 // from two other 128-bit ones.
6061 return LowerAVXCONCAT_VECTORS(Op, DAG);
6062}
6063
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006064// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006065static SDValue
6066LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6067 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006068 SDValue V1 = SVOp->getOperand(0);
6069 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006070 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006071 MVT VT = SVOp->getValueType(0).getSimpleVT();
6072 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006073 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006074
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006075 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6076 return SDValue();
6077 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006078 return SDValue();
6079
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006080 // Check the mask for BLEND and build the value.
6081 unsigned MaskValue = 0;
6082 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006083 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006084 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006085
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006086 // Blend for v16i16 should be symetric for the both lanes.
6087 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006088
Craig Topper9b33ef72013-01-21 06:57:59 +00006089 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006090 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006091 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006092
Craig Topper04f74a12013-01-21 07:25:16 +00006093 if ((EltIdx < 0 || EltIdx == (int)i) &&
6094 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006095 continue;
6096
Craig Topper9b33ef72013-01-21 06:57:59 +00006097 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006098 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006099 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6100 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006101 else
Craig Topper1842ba02012-04-23 06:38:28 +00006102 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006103 }
6104
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006105 // Convert i32 vectors to floating point if it is not AVX2.
6106 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006107 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006108 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006109 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6110 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006111 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6112 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6113 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006114
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006115 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6116 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006117 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006118}
6119
Nate Begemanb9a47b82009-02-23 08:49:38 +00006120// v8i16 shuffles - Prefer shuffles in the following order:
6121// 1. [all] pshuflw, pshufhw, optional move
6122// 2. [ssse3] 1 x pshufb
6123// 3. [ssse3] 2 x pshufb + 1 x por
6124// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006125static SDValue
6126LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6127 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006128 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006129 SDValue V1 = SVOp->getOperand(0);
6130 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006131 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006132 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006133
Nate Begemanb9a47b82009-02-23 08:49:38 +00006134 // Determine if more than 1 of the words in each of the low and high quadwords
6135 // of the result come from the same quadword of one of the two inputs. Undef
6136 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006137 unsigned LoQuad[] = { 0, 0, 0, 0 };
6138 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006139 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006140 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006141 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006142 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006143 MaskVals.push_back(EltIdx);
6144 if (EltIdx < 0) {
6145 ++Quad[0];
6146 ++Quad[1];
6147 ++Quad[2];
6148 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006149 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006150 }
6151 ++Quad[EltIdx / 4];
6152 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006153 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006154
Nate Begemanb9a47b82009-02-23 08:49:38 +00006155 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006156 unsigned MaxQuad = 1;
6157 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006158 if (LoQuad[i] > MaxQuad) {
6159 BestLoQuad = i;
6160 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006161 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006162 }
6163
Nate Begemanb9a47b82009-02-23 08:49:38 +00006164 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006165 MaxQuad = 1;
6166 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006167 if (HiQuad[i] > MaxQuad) {
6168 BestHiQuad = i;
6169 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006170 }
6171 }
6172
Nate Begemanb9a47b82009-02-23 08:49:38 +00006173 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006174 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006175 // single pshufb instruction is necessary. If There are more than 2 input
6176 // quads, disable the next transformation since it does not help SSSE3.
6177 bool V1Used = InputQuads[0] || InputQuads[1];
6178 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006179 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006180 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006181 BestLoQuad = InputQuads[0] ? 0 : 1;
6182 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006183 }
6184 if (InputQuads.count() > 2) {
6185 BestLoQuad = -1;
6186 BestHiQuad = -1;
6187 }
6188 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006189
Nate Begemanb9a47b82009-02-23 08:49:38 +00006190 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6191 // the shuffle mask. If a quad is scored as -1, that means that it contains
6192 // words from all 4 input quadwords.
6193 SDValue NewV;
6194 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006195 int MaskV[] = {
6196 BestLoQuad < 0 ? 0 : BestLoQuad,
6197 BestHiQuad < 0 ? 1 : BestHiQuad
6198 };
Eric Christopherfd179292009-08-27 18:07:15 +00006199 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006200 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6201 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6202 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006203
Nate Begemanb9a47b82009-02-23 08:49:38 +00006204 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6205 // source words for the shuffle, to aid later transformations.
6206 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006207 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006208 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006209 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006210 if (idx != (int)i)
6211 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006212 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006213 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006214 AllWordsInNewV = false;
6215 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006216 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006217
Nate Begemanb9a47b82009-02-23 08:49:38 +00006218 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6219 if (AllWordsInNewV) {
6220 for (int i = 0; i != 8; ++i) {
6221 int idx = MaskVals[i];
6222 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006223 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006224 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006225 if ((idx != i) && idx < 4)
6226 pshufhw = false;
6227 if ((idx != i) && idx > 3)
6228 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006229 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006230 V1 = NewV;
6231 V2Used = false;
6232 BestLoQuad = 0;
6233 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006234 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006235
Nate Begemanb9a47b82009-02-23 08:49:38 +00006236 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6237 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006238 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006239 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6240 unsigned TargetMask = 0;
6241 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006242 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006243 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6244 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6245 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006246 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006247 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006248 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006249 }
Eric Christopherfd179292009-08-27 18:07:15 +00006250
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006251 // Promote splats to a larger type which usually leads to more efficient code.
6252 // FIXME: Is this true if pshufb is available?
6253 if (SVOp->isSplat())
6254 return PromoteSplat(SVOp, DAG);
6255
Nate Begemanb9a47b82009-02-23 08:49:38 +00006256 // If we have SSSE3, and all words of the result are from 1 input vector,
6257 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6258 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006259 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006260 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006261
Nate Begemanb9a47b82009-02-23 08:49:38 +00006262 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006263 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006264 // mask, and elements that come from V1 in the V2 mask, so that the two
6265 // results can be OR'd together.
6266 bool TwoInputs = V1Used && V2Used;
6267 for (unsigned i = 0; i != 8; ++i) {
6268 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006269 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6270 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006271 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006272 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006273 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006274 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006275 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006276 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006277 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006278 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006279 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006280
Nate Begemanb9a47b82009-02-23 08:49:38 +00006281 // Calculate the shuffle mask for the second input, shuffle it, and
6282 // OR it with the first shuffled input.
6283 pshufbMask.clear();
6284 for (unsigned i = 0; i != 8; ++i) {
6285 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006286 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6287 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6288 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6289 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006290 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006291 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006292 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006293 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006294 MVT::v16i8, &pshufbMask[0], 16));
6295 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006296 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006297 }
6298
6299 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6300 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006301 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006302 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006303 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006304 for (int i = 0; i != 4; ++i) {
6305 int idx = MaskVals[i];
6306 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006307 InOrder.set(i);
6308 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006309 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006310 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006311 }
6312 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006313 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006314 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006315
Craig Topperdd637ae2012-02-19 05:41:45 +00006316 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6317 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006318 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006319 NewV.getOperand(0),
6320 getShufflePSHUFLWImmediate(SVOp), DAG);
6321 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006322 }
Eric Christopherfd179292009-08-27 18:07:15 +00006323
Nate Begemanb9a47b82009-02-23 08:49:38 +00006324 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6325 // and update MaskVals with the new element order.
6326 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006327 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006328 for (unsigned i = 4; i != 8; ++i) {
6329 int idx = MaskVals[i];
6330 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006331 InOrder.set(i);
6332 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006333 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006334 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006335 }
6336 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006337 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006338 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006339
Craig Topperdd637ae2012-02-19 05:41:45 +00006340 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6341 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006342 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006343 NewV.getOperand(0),
6344 getShufflePSHUFHWImmediate(SVOp), DAG);
6345 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006346 }
Eric Christopherfd179292009-08-27 18:07:15 +00006347
Nate Begemanb9a47b82009-02-23 08:49:38 +00006348 // In case BestHi & BestLo were both -1, which means each quadword has a word
6349 // from each of the four input quadwords, calculate the InOrder bitvector now
6350 // before falling through to the insert/extract cleanup.
6351 if (BestLoQuad == -1 && BestHiQuad == -1) {
6352 NewV = V1;
6353 for (int i = 0; i != 8; ++i)
6354 if (MaskVals[i] < 0 || MaskVals[i] == i)
6355 InOrder.set(i);
6356 }
Eric Christopherfd179292009-08-27 18:07:15 +00006357
Nate Begemanb9a47b82009-02-23 08:49:38 +00006358 // The other elements are put in the right place using pextrw and pinsrw.
6359 for (unsigned i = 0; i != 8; ++i) {
6360 if (InOrder[i])
6361 continue;
6362 int EltIdx = MaskVals[i];
6363 if (EltIdx < 0)
6364 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006365 SDValue ExtOp = (EltIdx < 8) ?
6366 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6367 DAG.getIntPtrConstant(EltIdx)) :
6368 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006369 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006370 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006371 DAG.getIntPtrConstant(i));
6372 }
6373 return NewV;
6374}
6375
6376// v16i8 shuffles - Prefer shuffles in the following order:
6377// 1. [ssse3] 1 x pshufb
6378// 2. [ssse3] 2 x pshufb + 1 x por
6379// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
6380static
Nate Begeman9008ca62009-04-27 18:41:29 +00006381SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00006382 SelectionDAG &DAG,
6383 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006384 SDValue V1 = SVOp->getOperand(0);
6385 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006386 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006387 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006388
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006389 // Promote splats to a larger type which usually leads to more efficient code.
6390 // FIXME: Is this true if pshufb is available?
6391 if (SVOp->isSplat())
6392 return PromoteSplat(SVOp, DAG);
6393
Nate Begemanb9a47b82009-02-23 08:49:38 +00006394 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006395 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006396 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006397
Nate Begemanb9a47b82009-02-23 08:49:38 +00006398 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topperd0a31172012-01-10 06:37:29 +00006399 if (TLI.getSubtarget()->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006400 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006401
Nate Begemanb9a47b82009-02-23 08:49:38 +00006402 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006403 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006404 //
6405 // Otherwise, we have elements from both input vectors, and must zero out
6406 // elements that come from V2 in the first mask, and V1 in the second mask
6407 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006408 for (unsigned i = 0; i != 16; ++i) {
6409 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006410 if (EltIdx < 0 || EltIdx >= 16)
6411 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006412 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006413 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006414 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006415 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006416 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006417
6418 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6419 // the 2nd operand if it's undefined or zero.
6420 if (V2.getOpcode() == ISD::UNDEF ||
6421 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006422 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006423
Nate Begemanb9a47b82009-02-23 08:49:38 +00006424 // Calculate the shuffle mask for the second input, shuffle it, and
6425 // OR it with the first shuffled input.
6426 pshufbMask.clear();
6427 for (unsigned i = 0; i != 16; ++i) {
6428 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006429 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006430 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006431 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006432 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006433 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006434 MVT::v16i8, &pshufbMask[0], 16));
6435 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006436 }
Eric Christopherfd179292009-08-27 18:07:15 +00006437
Nate Begemanb9a47b82009-02-23 08:49:38 +00006438 // No SSSE3 - Calculate in place words and then fix all out of place words
6439 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6440 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006441 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6442 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006443 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006444 for (int i = 0; i != 8; ++i) {
6445 int Elt0 = MaskVals[i*2];
6446 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006447
Nate Begemanb9a47b82009-02-23 08:49:38 +00006448 // This word of the result is all undef, skip it.
6449 if (Elt0 < 0 && Elt1 < 0)
6450 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006451
Nate Begemanb9a47b82009-02-23 08:49:38 +00006452 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006453 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006454 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006455
Nate Begemanb9a47b82009-02-23 08:49:38 +00006456 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6457 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6458 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006459
6460 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6461 // using a single extract together, load it and store it.
6462 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006463 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006464 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006465 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006466 DAG.getIntPtrConstant(i));
6467 continue;
6468 }
6469
Nate Begemanb9a47b82009-02-23 08:49:38 +00006470 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006471 // source byte is not also odd, shift the extracted word left 8 bits
6472 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006473 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006474 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006475 DAG.getIntPtrConstant(Elt1 / 2));
6476 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006477 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006478 DAG.getConstant(8,
6479 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006480 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006481 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6482 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006483 }
6484 // If Elt0 is defined, extract it from the appropriate source. If the
6485 // source byte is not also even, shift the extracted word right 8 bits. If
6486 // Elt1 was also defined, OR the extracted values together before
6487 // inserting them in the result.
6488 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006489 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006490 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6491 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006492 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006493 DAG.getConstant(8,
6494 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006495 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006496 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6497 DAG.getConstant(0x00FF, MVT::i16));
6498 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006499 : InsElt0;
6500 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006501 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006502 DAG.getIntPtrConstant(i));
6503 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006504 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006505}
6506
Elena Demikhovsky41789462012-09-06 12:42:01 +00006507// v32i8 shuffles - Translate to VPSHUFB if possible.
6508static
6509SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006510 const X86Subtarget *Subtarget,
6511 SelectionDAG &DAG) {
Craig Topper657a99c2013-01-19 23:36:09 +00006512 MVT VT = SVOp->getValueType(0).getSimpleVT();
Elena Demikhovsky41789462012-09-06 12:42:01 +00006513 SDValue V1 = SVOp->getOperand(0);
6514 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006515 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006516 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006517
6518 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006519 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6520 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006521
Michael Liao471b9172012-10-03 23:43:52 +00006522 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006523 // (1) one of input vector is undefined or zeroinitializer.
6524 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6525 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006526 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006527 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006528 return SDValue();
6529
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006530 if (V1IsAllZero && !V2IsAllZero) {
6531 CommuteVectorShuffleMask(MaskVals, 32);
6532 V1 = V2;
6533 }
6534 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006535 for (unsigned i = 0; i != 32; i++) {
6536 int EltIdx = MaskVals[i];
6537 if (EltIdx < 0 || EltIdx >= 32)
6538 EltIdx = 0x80;
6539 else {
6540 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6541 // Cross lane is not allowed.
6542 return SDValue();
6543 EltIdx &= 0xf;
6544 }
6545 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6546 }
6547 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6548 DAG.getNode(ISD::BUILD_VECTOR, dl,
6549 MVT::v32i8, &pshufbMask[0], 32));
6550}
6551
Evan Cheng7a831ce2007-12-15 03:00:47 +00006552/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006553/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006554/// done when every pair / quad of shuffle mask elements point to elements in
6555/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006556/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006557static
Nate Begeman9008ca62009-04-27 18:41:29 +00006558SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006559 SelectionDAG &DAG) {
Craig Topper11ac1f82012-05-04 04:08:44 +00006560 MVT VT = SVOp->getValueType(0).getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00006561 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006562 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006563 MVT NewVT;
6564 unsigned Scale;
6565 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006566 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006567 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6568 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6569 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6570 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6571 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6572 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006573 }
6574
Nate Begeman9008ca62009-04-27 18:41:29 +00006575 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006576 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006577 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006578 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006579 int EltIdx = SVOp->getMaskElt(i+j);
6580 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006581 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006582 if (StartIdx < 0)
6583 StartIdx = (EltIdx / Scale);
6584 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006585 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006586 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006587 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006588 }
6589
Craig Topper11ac1f82012-05-04 04:08:44 +00006590 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6591 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006592 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006593}
6594
Evan Chengd880b972008-05-09 21:53:03 +00006595/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006596///
Craig Topperf84b7502013-01-20 00:50:58 +00006597static SDValue getVZextMovL(MVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006598 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006599 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006600 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006601 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006602 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006603 LD = dyn_cast<LoadSDNode>(SrcOp);
6604 if (!LD) {
6605 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6606 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006607 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006608 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006609 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006610 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006611 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006612 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006613 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006614 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006615 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6616 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6617 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006618 SrcOp.getOperand(0)
6619 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006620 }
6621 }
6622 }
6623
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006624 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006625 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006626 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006627 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006628}
6629
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006630/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6631/// which could not be matched by any known target speficic shuffle
6632static SDValue
6633LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006634
6635 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6636 if (NewOp.getNode())
6637 return NewOp;
6638
Craig Topper657a99c2013-01-19 23:36:09 +00006639 MVT VT = SVOp->getValueType(0).getSimpleVT();
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006640
Craig Topper8f35c132012-01-20 09:29:03 +00006641 unsigned NumElems = VT.getVectorNumElements();
6642 unsigned NumLaneElems = NumElems / 2;
6643
Andrew Trickac6d9be2013-05-25 02:42:55 +00006644 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006645 MVT EltVT = VT.getVectorElementType();
6646 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006647 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006648
Craig Topper9a2b6e12012-04-06 07:45:23 +00006649 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006650 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006651 // Build a shuffle mask for the output, discovering on the fly which
6652 // input vectors to use as shuffle operands (recorded in InputUsed).
6653 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006654 // out with UseBuildVector set.
6655 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006656 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006657 unsigned LaneStart = l * NumLaneElems;
6658 for (unsigned i = 0; i != NumLaneElems; ++i) {
6659 // The mask element. This indexes into the input.
6660 int Idx = SVOp->getMaskElt(i+LaneStart);
6661 if (Idx < 0) {
6662 // the mask element does not index into any input vector.
6663 Mask.push_back(-1);
6664 continue;
6665 }
Craig Topper8f35c132012-01-20 09:29:03 +00006666
Craig Topper9a2b6e12012-04-06 07:45:23 +00006667 // The input vector this mask element indexes into.
6668 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006669
Craig Topper9a2b6e12012-04-06 07:45:23 +00006670 // Turn the index into an offset from the start of the input vector.
6671 Idx -= Input * NumLaneElems;
6672
6673 // Find or create a shuffle vector operand to hold this input.
6674 unsigned OpNo;
6675 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6676 if (InputUsed[OpNo] == Input)
6677 // This input vector is already an operand.
6678 break;
6679 if (InputUsed[OpNo] < 0) {
6680 // Create a new operand for this input vector.
6681 InputUsed[OpNo] = Input;
6682 break;
6683 }
6684 }
6685
6686 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006687 // More than two input vectors used! Give up on trying to create a
6688 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6689 UseBuildVector = true;
6690 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006691 }
6692
6693 // Add the mask index for the new shuffle vector.
6694 Mask.push_back(Idx + OpNo * NumLaneElems);
6695 }
6696
Craig Topper8ae97ba2012-05-21 06:40:16 +00006697 if (UseBuildVector) {
6698 SmallVector<SDValue, 16> SVOps;
6699 for (unsigned i = 0; i != NumLaneElems; ++i) {
6700 // The mask element. This indexes into the input.
6701 int Idx = SVOp->getMaskElt(i+LaneStart);
6702 if (Idx < 0) {
6703 SVOps.push_back(DAG.getUNDEF(EltVT));
6704 continue;
6705 }
6706
6707 // The input vector this mask element indexes into.
6708 int Input = Idx / NumElems;
6709
6710 // Turn the index into an offset from the start of the input vector.
6711 Idx -= Input * NumElems;
6712
6713 // Extract the vector element by hand.
6714 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6715 SVOp->getOperand(Input),
6716 DAG.getIntPtrConstant(Idx)));
6717 }
6718
6719 // Construct the output using a BUILD_VECTOR.
6720 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6721 SVOps.size());
6722 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006723 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006724 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006725 } else {
6726 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006727 (InputUsed[0] % 2) * NumLaneElems,
6728 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006729 // If only one input was used, use an undefined vector for the other.
6730 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6731 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006732 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006733 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006734 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006735 }
6736
6737 Mask.clear();
6738 }
Craig Topper8f35c132012-01-20 09:29:03 +00006739
6740 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006741 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006742}
6743
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006744/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6745/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006746static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006747LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006748 SDValue V1 = SVOp->getOperand(0);
6749 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006750 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006751 MVT VT = SVOp->getValueType(0).getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00006752
Craig Topper7a9a28b2012-08-12 02:23:29 +00006753 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006754
Benjamin Kramer9c683542012-01-30 15:16:21 +00006755 std::pair<int, int> Locs[4];
6756 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006757 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006758
Evan Chengace3c172008-07-22 21:13:36 +00006759 unsigned NumHi = 0;
6760 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006761 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006762 int Idx = PermMask[i];
6763 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006764 Locs[i] = std::make_pair(-1, -1);
6765 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006766 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6767 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006768 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006769 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006770 NumLo++;
6771 } else {
6772 Locs[i] = std::make_pair(1, NumHi);
6773 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006774 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006775 NumHi++;
6776 }
6777 }
6778 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006779
Evan Chengace3c172008-07-22 21:13:36 +00006780 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006781 // If no more than two elements come from either vector. This can be
6782 // implemented with two shuffles. First shuffle gather the elements.
6783 // The second shuffle, which takes the first shuffle as both of its
6784 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006785 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006786
Benjamin Kramer9c683542012-01-30 15:16:21 +00006787 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006788
Benjamin Kramer9c683542012-01-30 15:16:21 +00006789 for (unsigned i = 0; i != 4; ++i)
6790 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006791 unsigned Idx = (i < 2) ? 0 : 4;
6792 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006793 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006794 }
Evan Chengace3c172008-07-22 21:13:36 +00006795
Nate Begeman9008ca62009-04-27 18:41:29 +00006796 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006797 }
6798
6799 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006800 // Otherwise, we must have three elements from one vector, call it X, and
6801 // one element from the other, call it Y. First, use a shufps to build an
6802 // intermediate vector with the one element from Y and the element from X
6803 // that will be in the same half in the final destination (the indexes don't
6804 // matter). Then, use a shufps to build the final vector, taking the half
6805 // containing the element from Y from the intermediate, and the other half
6806 // from X.
6807 if (NumHi == 3) {
6808 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006809 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006810 std::swap(V1, V2);
6811 }
6812
6813 // Find the element from V2.
6814 unsigned HiIndex;
6815 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006816 int Val = PermMask[HiIndex];
6817 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006818 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006819 if (Val >= 4)
6820 break;
6821 }
6822
Nate Begeman9008ca62009-04-27 18:41:29 +00006823 Mask1[0] = PermMask[HiIndex];
6824 Mask1[1] = -1;
6825 Mask1[2] = PermMask[HiIndex^1];
6826 Mask1[3] = -1;
6827 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006828
6829 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006830 Mask1[0] = PermMask[0];
6831 Mask1[1] = PermMask[1];
6832 Mask1[2] = HiIndex & 1 ? 6 : 4;
6833 Mask1[3] = HiIndex & 1 ? 4 : 6;
6834 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006835 }
Craig Topper69947b92012-04-23 06:57:04 +00006836
6837 Mask1[0] = HiIndex & 1 ? 2 : 0;
6838 Mask1[1] = HiIndex & 1 ? 0 : 2;
6839 Mask1[2] = PermMask[2];
6840 Mask1[3] = PermMask[3];
6841 if (Mask1[2] >= 0)
6842 Mask1[2] += 4;
6843 if (Mask1[3] >= 0)
6844 Mask1[3] += 4;
6845 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006846 }
6847
6848 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006849 int LoMask[] = { -1, -1, -1, -1 };
6850 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006851
Benjamin Kramer9c683542012-01-30 15:16:21 +00006852 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006853 unsigned MaskIdx = 0;
6854 unsigned LoIdx = 0;
6855 unsigned HiIdx = 2;
6856 for (unsigned i = 0; i != 4; ++i) {
6857 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006858 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006859 MaskIdx = 1;
6860 LoIdx = 0;
6861 HiIdx = 2;
6862 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006863 int Idx = PermMask[i];
6864 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006865 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006866 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006867 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006868 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006869 LoIdx++;
6870 } else {
6871 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006872 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006873 HiIdx++;
6874 }
6875 }
6876
Nate Begeman9008ca62009-04-27 18:41:29 +00006877 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6878 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006879 int MaskOps[] = { -1, -1, -1, -1 };
6880 for (unsigned i = 0; i != 4; ++i)
6881 if (Locs[i].first != -1)
6882 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006883 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006884}
6885
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006886static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006887 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006888 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006889
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006890 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6891 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006892 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6893 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6894 // BUILD_VECTOR (load), undef
6895 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006896
6897 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006898}
6899
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006900static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006901SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Evan Cheng835580f2010-10-07 20:50:20 +00006902 EVT VT = Op.getValueType();
6903
6904 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006905 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6906 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006907 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6908 V1, DAG));
6909}
6910
6911static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006912SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006913 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006914 SDValue V1 = Op.getOperand(0);
6915 SDValue V2 = Op.getOperand(1);
6916 EVT VT = Op.getValueType();
6917
6918 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6919
Craig Topper1accb7e2012-01-10 06:54:16 +00006920 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006921 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6922
Evan Cheng0899f5c2011-08-31 02:05:24 +00006923 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6924 return DAG.getNode(ISD::BITCAST, dl, VT,
6925 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6926 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6927 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006928}
6929
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006930static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006931SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006932 SDValue V1 = Op.getOperand(0);
6933 SDValue V2 = Op.getOperand(1);
6934 EVT VT = Op.getValueType();
6935
6936 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6937 "unsupported shuffle type");
6938
6939 if (V2.getOpcode() == ISD::UNDEF)
6940 V2 = V1;
6941
6942 // v4i32 or v4f32
6943 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6944}
6945
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006946static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006947SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006948 SDValue V1 = Op.getOperand(0);
6949 SDValue V2 = Op.getOperand(1);
6950 EVT VT = Op.getValueType();
6951 unsigned NumElems = VT.getVectorNumElements();
6952
6953 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6954 // operand of these instructions is only memory, so check if there's a
6955 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6956 // same masks.
6957 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006958
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006959 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006960 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006961 CanFoldLoad = true;
6962
6963 // When V1 is a load, it can be folded later into a store in isel, example:
6964 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6965 // turns into:
6966 // (MOVLPSmr addr:$src1, VR128:$src2)
6967 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00006968 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006969 CanFoldLoad = true;
6970
Dan Gohman65fd6562011-11-03 21:49:52 +00006971 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006972 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00006973 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006974 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6975
6976 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00006977 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00006978 if (SVOp->getMaskElt(1) != -1)
6979 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006980 }
6981
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006982 // movl and movlp will both match v2i64, but v2i64 is never matched by
6983 // movl earlier because we make it strict to avoid messing with the movlp load
6984 // folding logic (see the code above getMOVLP call). Match it here then,
6985 // this is horrible, but will stay like this until we move all shuffle
6986 // matching to x86 specific nodes. Note that for the 1st condition all
6987 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00006988 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00006989 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6990 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00006991 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006992 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006993 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006994 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006995
6996 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6997
6998 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00006999 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007000 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007001}
7002
Michael Liaod9d09602012-10-23 17:34:00 +00007003// Reduce a vector shuffle to zext.
7004SDValue
Craig Topper00a312c2013-01-19 23:14:09 +00007005X86TargetLowering::LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
Michael Liaod9d09602012-10-23 17:34:00 +00007006 // PMOVZX is only available from SSE41.
7007 if (!Subtarget->hasSSE41())
7008 return SDValue();
7009
7010 EVT VT = Op.getValueType();
7011
7012 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007013 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007014 return SDValue();
7015
7016 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007017 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007018 SDValue V1 = Op.getOperand(0);
7019 SDValue V2 = Op.getOperand(1);
7020 unsigned NumElems = VT.getVectorNumElements();
7021
7022 // Extending is an unary operation and the element type of the source vector
7023 // won't be equal to or larger than i64.
7024 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7025 VT.getVectorElementType() == MVT::i64)
7026 return SDValue();
7027
7028 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7029 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007030 while ((1U << Shift) < NumElems) {
7031 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007032 break;
7033 Shift += 1;
7034 // The maximal ratio is 8, i.e. from i8 to i64.
7035 if (Shift > 3)
7036 return SDValue();
7037 }
7038
7039 // Check the shuffle mask.
7040 unsigned Mask = (1U << Shift) - 1;
7041 for (unsigned i = 0; i != NumElems; ++i) {
7042 int EltIdx = SVOp->getMaskElt(i);
7043 if ((i & Mask) != 0 && EltIdx != -1)
7044 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007045 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007046 return SDValue();
7047 }
7048
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007049 LLVMContext *Context = DAG.getContext();
Michael Liaod9d09602012-10-23 17:34:00 +00007050 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007051 EVT NeVT = EVT::getIntegerVT(*Context, NBits);
7052 EVT NVT = EVT::getVectorVT(*Context, NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007053
7054 if (!isTypeLegal(NVT))
7055 return SDValue();
7056
7057 // Simplify the operand as it's prepared to be fed into shuffle.
7058 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7059 if (V1.getOpcode() == ISD::BITCAST &&
7060 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7061 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7062 V1.getOperand(0)
7063 .getOperand(0).getValueType().getSizeInBits() == SignificantBits) {
7064 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7065 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007066 ConstantSDNode *CIdx =
7067 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007068 // If it's foldable, i.e. normal load with single use, we will let code
7069 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007070 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007071 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7072 if (V.getValueSizeInBits() > V1.getValueSizeInBits()) {
7073 // The "ext_vec_elt" node is wider than the result node.
7074 // In this case we should extract subvector from V.
7075 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7076 unsigned Ratio = V.getValueSizeInBits() / V1.getValueSizeInBits();
7077 EVT FullVT = V.getValueType();
Matt Arsenault225ed702013-05-18 00:21:46 +00007078 EVT SubVecVT = EVT::getVectorVT(*Context,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007079 FullVT.getVectorElementType(),
7080 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007081 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007082 DAG.getIntPtrConstant(0));
7083 }
Michael Liaod9d09602012-10-23 17:34:00 +00007084 V1 = DAG.getNode(ISD::BITCAST, DL, V1.getValueType(), V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007085 }
Michael Liaod9d09602012-10-23 17:34:00 +00007086 }
7087
7088 return DAG.getNode(ISD::BITCAST, DL, VT,
7089 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7090}
7091
Nadav Rotem154819d2012-04-09 07:45:58 +00007092SDValue
7093X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007094 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper657a99c2013-01-19 23:36:09 +00007095 MVT VT = Op.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007096 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007097 SDValue V1 = Op.getOperand(0);
7098 SDValue V2 = Op.getOperand(1);
7099
7100 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007101 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007102
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007103 // Handle splat operations
7104 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007105 // Use vbroadcast whenever the splat comes from a foldable load
Nadav Rotem154819d2012-04-09 07:45:58 +00007106 SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007107 if (Broadcast.getNode())
7108 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007109 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007110
Michael Liaod9d09602012-10-23 17:34:00 +00007111 // Check integer expanding shuffles.
Craig Topper00a312c2013-01-19 23:14:09 +00007112 SDValue NewOp = LowerVectorIntExtend(Op, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007113 if (NewOp.getNode())
7114 return NewOp;
7115
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007116 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7117 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007118 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7119 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007120 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007121 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007122 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007123 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007124 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007125 // FIXME: Figure out a cleaner way to do this.
7126 // Try to make use of movq to zero out the top part.
7127 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007128 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007129 if (NewOp.getNode()) {
Craig Topper657a99c2013-01-19 23:36:09 +00007130 MVT NewVT = NewOp.getValueType().getSimpleVT();
Craig Topper5aaffa82012-02-19 02:53:47 +00007131 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7132 NewVT, true, false))
7133 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007134 DAG, Subtarget, dl);
7135 }
7136 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007137 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007138 if (NewOp.getNode()) {
Craig Topper657a99c2013-01-19 23:36:09 +00007139 MVT NewVT = NewOp.getValueType().getSimpleVT();
Craig Topper5aaffa82012-02-19 02:53:47 +00007140 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7141 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7142 DAG, Subtarget, dl);
7143 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007144 }
7145 }
7146 return SDValue();
7147}
7148
Dan Gohman475871a2008-07-27 21:46:04 +00007149SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007150X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007151 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007152 SDValue V1 = Op.getOperand(0);
7153 SDValue V2 = Op.getOperand(1);
Craig Topper657a99c2013-01-19 23:36:09 +00007154 MVT VT = Op.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007155 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007156 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007157 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007158 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007159 bool V1IsSplat = false;
7160 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007161 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007162 bool HasFp256 = Subtarget->hasFp256();
7163 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007164 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007165 bool OptForSize = MF.getFunction()->getAttributes().
7166 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007167
Craig Topper3426a3e2011-11-14 06:46:21 +00007168 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007169
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007170 if (V1IsUndef && V2IsUndef)
7171 return DAG.getUNDEF(VT);
7172
7173 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007174
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007175 // Vector shuffle lowering takes 3 steps:
7176 //
7177 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7178 // narrowing and commutation of operands should be handled.
7179 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7180 // shuffle nodes.
7181 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7182 // so the shuffle can be broken into other shuffles and the legalizer can
7183 // try the lowering again.
7184 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007185 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007186 // be matched during isel, all of them must be converted to a target specific
7187 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007188
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007189 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7190 // narrowing and commutation of operands should be handled. The actual code
7191 // doesn't include all of those, work in progress...
Nadav Rotem154819d2012-04-09 07:45:58 +00007192 SDValue NewOp = NormalizeVectorShuffle(Op, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007193 if (NewOp.getNode())
7194 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007195
Craig Topper5aaffa82012-02-19 02:53:47 +00007196 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7197
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007198 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7199 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007200 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007201 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007202 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007203 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007204
Craig Topperdd637ae2012-02-19 05:41:45 +00007205 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007206 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007207 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007208
Craig Topperdd637ae2012-02-19 05:41:45 +00007209 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007210 return getMOVHighToLow(Op, dl, DAG);
7211
7212 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007213 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007214 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007215 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007216
Craig Topper5aaffa82012-02-19 02:53:47 +00007217 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007218 // The actual implementation will match the mask in the if above and then
7219 // during isel it can match several different instructions, not only pshufd
7220 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007221 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7222 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007223
Craig Topper5aaffa82012-02-19 02:53:47 +00007224 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007225
Craig Topper1accb7e2012-01-10 06:54:16 +00007226 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007227 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7228
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007229 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7230 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7231 DAG);
7232
Craig Topperb3982da2011-12-31 23:50:21 +00007233 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007234 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007235 }
Eric Christopherfd179292009-08-27 18:07:15 +00007236
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007237 if (isPALIGNRMask(M, VT, Subtarget))
7238 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7239 getShufflePALIGNRImmediate(SVOp),
7240 DAG);
7241
Evan Chengf26ffe92008-05-29 08:22:04 +00007242 // Check if this can be converted into a logical shift.
7243 bool isLeft = false;
7244 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007245 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007246 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007247 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007248 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007249 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007250 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007251 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007252 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007253 }
Eric Christopherfd179292009-08-27 18:07:15 +00007254
Craig Topper5aaffa82012-02-19 02:53:47 +00007255 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007256 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007257 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007258 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007259 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007260 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7261
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007262 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007263 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7264 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007265 }
Eric Christopherfd179292009-08-27 18:07:15 +00007266
Nate Begeman9008ca62009-04-27 18:41:29 +00007267 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007268 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007269 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007270
Craig Topperdd637ae2012-02-19 05:41:45 +00007271 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007272 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007273
Craig Topperdd637ae2012-02-19 05:41:45 +00007274 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007275 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007276
Craig Topperdd637ae2012-02-19 05:41:45 +00007277 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007278 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007279
Craig Topperdd637ae2012-02-19 05:41:45 +00007280 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007281 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007282
Craig Topperdd637ae2012-02-19 05:41:45 +00007283 if (ShouldXformToMOVHLPS(M, VT) ||
7284 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007285 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007286
Evan Chengf26ffe92008-05-29 08:22:04 +00007287 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007288 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007289 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007290 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007291 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007292 }
Eric Christopherfd179292009-08-27 18:07:15 +00007293
Evan Cheng9eca5e82006-10-25 21:49:50 +00007294 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007295 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7296 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007297 V1IsSplat = isSplatVector(V1.getNode());
7298 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007299
Chris Lattner8a594482007-11-25 00:24:49 +00007300 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007301 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7302 CommuteVectorShuffleMask(M, NumElems);
7303 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007304 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007305 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007306 }
7307
Craig Topperbeabc6c2011-12-05 06:56:46 +00007308 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007309 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007310 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007311 return V1;
7312 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7313 // the instruction selector will not match, so get a canonical MOVL with
7314 // swapped operands to undo the commute.
7315 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007316 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007317
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007318 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007319 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007320
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007321 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007322 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007323
Evan Cheng9bbbb982006-10-25 20:48:19 +00007324 if (V2IsSplat) {
7325 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007326 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007327 // new vector_shuffle with the corrected mask.p
7328 SmallVector<int, 8> NewMask(M.begin(), M.end());
7329 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007330 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007331 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007332 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007333 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007334 }
7335
Evan Cheng9eca5e82006-10-25 21:49:50 +00007336 if (Commuted) {
7337 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007338 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007339 CommuteVectorShuffleMask(M, NumElems);
7340 std::swap(V1, V2);
7341 std::swap(V1IsSplat, V2IsSplat);
7342 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007343
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007344 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007345 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007346
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007347 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007348 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007349 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007350
Nate Begeman9008ca62009-04-27 18:41:29 +00007351 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007352 if (!V2IsUndef && (isSHUFPMask(M, VT, HasFp256, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007353 return CommuteVectorShuffle(SVOp, DAG);
7354
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007355 // The checks below are all present in isShuffleMaskLegal, but they are
7356 // inlined here right now to enable us to directly emit target specific
7357 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007358
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007359 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7360 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007361 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007362 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007363 }
7364
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007365 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007366 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007367 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007368 DAG);
7369
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007370 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007371 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007372 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007373 DAG);
7374
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007375 if (isSHUFPMask(M, VT, HasFp256))
Craig Topperb3982da2011-12-31 23:50:21 +00007376 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007377 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007378
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007379 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007380 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007381 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007382 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007383
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007384 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007385 // Generate target specific nodes for 128 or 256-bit shuffles only
7386 // supported in the AVX instruction set.
7387 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007388
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007389 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007390 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007391 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7392
Craig Topper70b883b2011-11-28 10:14:51 +00007393 // Handle VPERMILPS/D* permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007394 if (isVPERMILPMask(M, VT, HasFp256)) {
7395 if (HasInt256 && VT == MVT::v8i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007396 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007397 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007398 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007399 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007400 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007401
Craig Topper70b883b2011-11-28 10:14:51 +00007402 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007403 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007404 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007405 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007406
Craig Topper1842ba02012-04-23 06:38:28 +00007407 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007408 if (BlendOp.getNode())
7409 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007410
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007411 if (V2IsUndef && HasInt256 && (VT == MVT::v8i32 || VT == MVT::v8f32)) {
Craig Topper095c5282012-04-15 23:48:57 +00007412 SmallVector<SDValue, 8> permclMask;
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007413 for (unsigned i = 0; i != 8; ++i) {
Craig Topper095c5282012-04-15 23:48:57 +00007414 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MVT::i32));
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007415 }
Craig Topper92040742012-04-16 06:43:40 +00007416 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32,
7417 &permclMask[0], 8);
7418 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
Craig Topper8325c112012-04-16 00:41:45 +00007419 return DAG.getNode(X86ISD::VPERMV, dl, VT,
Craig Topper92040742012-04-16 06:43:40 +00007420 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007421 }
Craig Topper095c5282012-04-15 23:48:57 +00007422
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007423 if (V2IsUndef && HasInt256 && (VT == MVT::v4i64 || VT == MVT::v4f64))
Craig Topper8325c112012-04-16 00:41:45 +00007424 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1,
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007425 getShuffleCLImmediate(SVOp), DAG);
7426
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007427 //===--------------------------------------------------------------------===//
7428 // Since no target specific shuffle was selected for this generic one,
7429 // lower it into other known shuffles. FIXME: this isn't true yet, but
7430 // this is the plan.
7431 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007432
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007433 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7434 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007435 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007436 if (NewOp.getNode())
7437 return NewOp;
7438 }
7439
7440 if (VT == MVT::v16i8) {
7441 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
7442 if (NewOp.getNode())
7443 return NewOp;
7444 }
7445
Elena Demikhovsky41789462012-09-06 12:42:01 +00007446 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007447 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007448 if (NewOp.getNode())
7449 return NewOp;
7450 }
7451
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007452 // Handle all 128-bit wide vectors with 4 elements, and match them with
7453 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007454 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007455 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7456
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007457 // Handle general 256-bit shuffles
7458 if (VT.is256BitVector())
7459 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7460
Dan Gohman475871a2008-07-27 21:46:04 +00007461 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007462}
7463
Craig Topperf84b7502013-01-20 00:50:58 +00007464static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper45e1c752013-01-20 00:38:18 +00007465 MVT VT = Op.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007466 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007467
Craig Topper45e1c752013-01-20 00:38:18 +00007468 if (!Op.getOperand(0).getValueType().getSimpleVT().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007469 return SDValue();
7470
Duncan Sands83ec4b62008-06-06 12:08:01 +00007471 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007472 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007473 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007474 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007475 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007476 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007477 }
7478
7479 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007480 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7481 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7482 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007483 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7484 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007485 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007486 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007487 Op.getOperand(0)),
7488 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007489 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007490 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007491 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007492 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007493 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007494 }
7495
7496 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007497 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7498 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007499 // result has a single use which is a store or a bitcast to i32. And in
7500 // the case of a store, it's not worth it if the index is a constant 0,
7501 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007502 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007503 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007504 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007505 if ((User->getOpcode() != ISD::STORE ||
7506 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7507 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007508 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007509 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007510 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007511 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007512 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007513 Op.getOperand(0)),
7514 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007515 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007516 }
7517
7518 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007519 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007520 if (isa<ConstantSDNode>(Op.getOperand(1)))
7521 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007522 }
Dan Gohman475871a2008-07-27 21:46:04 +00007523 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007524}
7525
Dan Gohman475871a2008-07-27 21:46:04 +00007526SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007527X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7528 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007529 SDLoc dl(Op);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007530 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00007531 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007532
David Greene74a579d2011-02-10 16:57:36 +00007533 SDValue Vec = Op.getOperand(0);
Craig Topper45e1c752013-01-20 00:38:18 +00007534 MVT VecVT = Vec.getValueType().getSimpleVT();
David Greene74a579d2011-02-10 16:57:36 +00007535
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007536 // If this is a 256-bit vector result, first extract the 128-bit vector and
7537 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007538 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007539 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00007540 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7541
7542 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007543 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Elena Demikhovsky83952512013-07-31 11:35:14 +00007544 EVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007545
Elena Demikhovsky83952512013-07-31 11:35:14 +00007546 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7547
7548 //if (IdxVal >= NumElems/2)
7549 // IdxVal -= NumElems/2;
7550 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007551 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007552 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007553 }
7554
Craig Topper7a9a28b2012-08-12 02:23:29 +00007555 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007556
Craig Topperd0a31172012-01-10 06:37:29 +00007557 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007558 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007559 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007560 return Res;
7561 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007562
Craig Topper45e1c752013-01-20 00:38:18 +00007563 MVT VT = Op.getValueType().getSimpleVT();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007564 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007565 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007566 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007567 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007568 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007569 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7570 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007571 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007572 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007573 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007574 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007575 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007576 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007577 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007578 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007579 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007580 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007581 }
7582
7583 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007584 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007585 if (Idx == 0)
7586 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007587
Evan Cheng0db9fe62006-04-25 20:13:52 +00007588 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007589 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper45e1c752013-01-20 00:38:18 +00007590 MVT VVT = Op.getOperand(0).getValueType().getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00007591 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007592 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007593 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007594 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007595 }
7596
7597 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007598 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7599 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7600 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007601 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007602 if (Idx == 0)
7603 return Op;
7604
7605 // UNPCKHPD the element to the lowest double word, then movsd.
7606 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7607 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007608 int Mask[2] = { 1, -1 };
Craig Topper45e1c752013-01-20 00:38:18 +00007609 MVT VVT = Op.getOperand(0).getValueType().getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00007610 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007611 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007612 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007613 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007614 }
7615
Dan Gohman475871a2008-07-27 21:46:04 +00007616 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007617}
7618
Craig Topperf84b7502013-01-20 00:50:58 +00007619static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper45e1c752013-01-20 00:38:18 +00007620 MVT VT = Op.getValueType().getSimpleVT();
7621 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007622 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007623
Dan Gohman475871a2008-07-27 21:46:04 +00007624 SDValue N0 = Op.getOperand(0);
7625 SDValue N1 = Op.getOperand(1);
7626 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007627
Craig Topper7a9a28b2012-08-12 02:23:29 +00007628 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007629 return SDValue();
7630
Dan Gohman8a55ce42009-09-23 21:02:20 +00007631 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007632 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007633 unsigned Opc;
7634 if (VT == MVT::v8i16)
7635 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007636 else if (VT == MVT::v16i8)
7637 Opc = X86ISD::PINSRB;
7638 else
7639 Opc = X86ISD::PINSRB;
7640
Nate Begeman14d12ca2008-02-11 04:19:36 +00007641 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7642 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007643 if (N1.getValueType() != MVT::i32)
7644 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7645 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007646 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007647 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007648 }
7649
7650 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007651 // Bits [7:6] of the constant are the source select. This will always be
7652 // zero here. The DAG Combiner may combine an extract_elt index into these
7653 // bits. For example (insert (extract, 3), 2) could be matched by putting
7654 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007655 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007656 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007657 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007658 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007659 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007660 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007661 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007662 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007663 }
7664
7665 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007666 // PINSR* works with constant index.
7667 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007668 }
Dan Gohman475871a2008-07-27 21:46:04 +00007669 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007670}
7671
Dan Gohman475871a2008-07-27 21:46:04 +00007672SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007673X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper45e1c752013-01-20 00:38:18 +00007674 MVT VT = Op.getValueType().getSimpleVT();
7675 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007676
Andrew Trickac6d9be2013-05-25 02:42:55 +00007677 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007678 SDValue N0 = Op.getOperand(0);
7679 SDValue N1 = Op.getOperand(1);
7680 SDValue N2 = Op.getOperand(2);
7681
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007682 // If this is a 256-bit vector result, first extract the 128-bit vector,
7683 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007684 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007685 if (!isa<ConstantSDNode>(N2))
7686 return SDValue();
7687
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007688 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007689 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007690 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007691
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007692 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007693 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7694 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7695
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007696 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007697 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007698
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007699 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007700 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007701 }
7702
Craig Topperd0a31172012-01-10 06:37:29 +00007703 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007704 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7705
Dan Gohman8a55ce42009-09-23 21:02:20 +00007706 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007707 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007708
Dan Gohman8a55ce42009-09-23 21:02:20 +00007709 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007710 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7711 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007712 if (N1.getValueType() != MVT::i32)
7713 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7714 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007715 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007716 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007717 }
Dan Gohman475871a2008-07-27 21:46:04 +00007718 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719}
7720
Craig Topper55b24052012-09-11 06:15:32 +00007721static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007722 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007723 SDLoc dl(Op);
Craig Topper45e1c752013-01-20 00:38:18 +00007724 MVT OpVT = Op.getValueType().getSimpleVT();
David Greene2fcdfb42011-02-10 23:11:29 +00007725
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007726 // If this is a 256-bit vector result, first insert into a 128-bit
7727 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007728 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007729 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007730 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007731 EVT VT128 = EVT::getVectorVT(*Context,
7732 OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007733 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007734
7735 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7736
7737 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007738 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007739 }
7740
Craig Topperd77d2fe2012-04-29 20:22:05 +00007741 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007742 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007743 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007744
Owen Anderson825b72b2009-08-11 20:47:22 +00007745 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007746 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007747 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007748 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007749}
7750
David Greene91585092011-01-26 15:38:49 +00007751// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7752// a simple subregister reference or explicit instructions to grab
7753// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007754static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7755 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007756 SDLoc dl(Op);
7757 SDValue In = Op.getOperand(0);
7758 SDValue Idx = Op.getOperand(1);
7759 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7760 EVT ResVT = Op.getValueType();
7761 EVT InVT = In.getValueType();
David Greenea5f26012011-02-07 19:36:54 +00007762
Elena Demikhovsky83952512013-07-31 11:35:14 +00007763 if (Subtarget->hasFp256()) {
7764 if (ResVT.is128BitVector() &&
7765 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007766 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007767 return Extract128BitVector(In, IdxVal, DAG, dl);
7768 }
7769 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7770 isa<ConstantSDNode>(Idx)) {
7771 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007772 }
David Greene91585092011-01-26 15:38:49 +00007773 }
7774 return SDValue();
7775}
7776
David Greenecfe33c42011-01-26 19:13:22 +00007777// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7778// simple superregister reference or explicit instructions to insert
7779// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007780static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7781 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007782 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007783 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007784 SDValue Vec = Op.getNode()->getOperand(0);
7785 SDValue SubVec = Op.getNode()->getOperand(1);
7786 SDValue Idx = Op.getNode()->getOperand(2);
7787
Elena Demikhovsky83952512013-07-31 11:35:14 +00007788 if ((Op.getNode()->getValueType(0).is256BitVector() ||
7789 Op.getNode()->getValueType(0).is512BitVector()) &&
Craig Topper7a9a28b2012-08-12 02:23:29 +00007790 SubVec.getNode()->getValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007791 isa<ConstantSDNode>(Idx)) {
7792 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7793 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007794 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007795
7796 if (Op.getNode()->getValueType(0).is512BitVector() &&
7797 SubVec.getNode()->getValueType(0).is256BitVector() &&
7798 isa<ConstantSDNode>(Idx)) {
7799 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7800 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7801 }
David Greenecfe33c42011-01-26 19:13:22 +00007802 }
7803 return SDValue();
7804}
7805
Bill Wendling056292f2008-09-16 21:48:12 +00007806// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7807// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7808// one of the above mentioned nodes. It has to be wrapped because otherwise
7809// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7810// be used to form addressing mode. These wrapped nodes will be selected
7811// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007812SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007813X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007814 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007815
Chris Lattner41621a22009-06-26 19:22:52 +00007816 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7817 // global base reg.
7818 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007819 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007820 CodeModel::Model M = getTargetMachine().getCodeModel();
7821
Chris Lattner4f066492009-07-11 20:29:19 +00007822 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007823 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007824 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007825 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007826 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007827 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007828 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007829
Evan Cheng1606e8e2009-03-13 07:51:59 +00007830 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007831 CP->getAlignment(),
7832 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007833 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007834 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007835 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007836 if (OpFlag) {
7837 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007838 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007839 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007840 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007841 }
7842
7843 return Result;
7844}
7845
Dan Gohmand858e902010-04-17 15:26:15 +00007846SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007847 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007848
Chris Lattner18c59872009-06-27 04:16:01 +00007849 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7850 // global base reg.
7851 unsigned char OpFlag = 0;
7852 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007853 CodeModel::Model M = getTargetMachine().getCodeModel();
7854
Chris Lattner4f066492009-07-11 20:29:19 +00007855 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007856 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007857 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007858 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007859 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007860 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007861 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007862
Chris Lattner18c59872009-06-27 04:16:01 +00007863 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7864 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007865 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007866 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007867
Chris Lattner18c59872009-06-27 04:16:01 +00007868 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007869 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007870 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7871 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007872 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007873 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007874
Chris Lattner18c59872009-06-27 04:16:01 +00007875 return Result;
7876}
7877
7878SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007879X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007880 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007881
Chris Lattner18c59872009-06-27 04:16:01 +00007882 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7883 // global base reg.
7884 unsigned char OpFlag = 0;
7885 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007886 CodeModel::Model M = getTargetMachine().getCodeModel();
7887
Chris Lattner4f066492009-07-11 20:29:19 +00007888 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007889 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7890 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7891 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007892 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007893 } else if (Subtarget->isPICStyleGOT()) {
7894 OpFlag = X86II::MO_GOT;
7895 } else if (Subtarget->isPICStyleStubPIC()) {
7896 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7897 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7898 OpFlag = X86II::MO_DARWIN_NONLAZY;
7899 }
Eric Christopherfd179292009-08-27 18:07:15 +00007900
Chris Lattner18c59872009-06-27 04:16:01 +00007901 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007902
Andrew Trickac6d9be2013-05-25 02:42:55 +00007903 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00007904 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007905
Chris Lattner18c59872009-06-27 04:16:01 +00007906 // With PIC, the address is actually $g + Offset.
7907 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007908 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007909 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7910 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007911 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007912 Result);
7913 }
Eric Christopherfd179292009-08-27 18:07:15 +00007914
Eli Friedman586272d2011-08-11 01:48:05 +00007915 // For symbols that require a load from a stub to get the address, emit the
7916 // load.
7917 if (isGlobalStubReference(OpFlag))
7918 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007919 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00007920
Chris Lattner18c59872009-06-27 04:16:01 +00007921 return Result;
7922}
7923
Dan Gohman475871a2008-07-27 21:46:04 +00007924SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007925X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007926 // Create the TargetBlockAddressAddress node.
7927 unsigned char OpFlags =
7928 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007929 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007930 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00007931 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007932 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00007933 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
7934 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00007935
Dan Gohmanf705adb2009-10-30 01:28:02 +00007936 if (Subtarget->isPICStyleRIPRel() &&
7937 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007938 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7939 else
7940 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007941
Dan Gohman29cbade2009-11-20 23:18:13 +00007942 // With PIC, the address is actually $g + Offset.
7943 if (isGlobalRelativeToPICBase(OpFlags)) {
7944 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7945 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7946 Result);
7947 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007948
7949 return Result;
7950}
7951
7952SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00007953X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00007954 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007955 // Create the TargetGlobalAddress node, folding in the constant
7956 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007957 unsigned char OpFlags =
7958 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007959 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007960 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007961 if (OpFlags == X86II::MO_NO_FLAG &&
7962 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007963 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007964 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007965 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007966 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007967 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007968 }
Eric Christopherfd179292009-08-27 18:07:15 +00007969
Chris Lattner4f066492009-07-11 20:29:19 +00007970 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007971 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007972 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7973 else
7974 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007975
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007976 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007977 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007978 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7979 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007980 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007981 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007982
Chris Lattner36c25012009-07-10 07:34:39 +00007983 // For globals that require a load from a stub to get the address, emit the
7984 // load.
7985 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007986 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007987 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007988
Dan Gohman6520e202008-10-18 02:06:02 +00007989 // If there was a non-zero offset that we didn't fold, create an explicit
7990 // addition for it.
7991 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007992 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007993 DAG.getConstant(Offset, getPointerTy()));
7994
Evan Cheng0db9fe62006-04-25 20:13:52 +00007995 return Result;
7996}
7997
Evan Chengda43bcf2008-09-24 00:05:32 +00007998SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007999X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008000 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008001 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008002 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008003}
8004
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008005static SDValue
8006GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008007 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008008 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008009 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008010 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008011 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008012 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008013 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008014 GA->getOffset(),
8015 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008016
8017 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8018 : X86ISD::TLSADDR;
8019
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008020 if (InFlag) {
8021 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008022 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008023 } else {
8024 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008025 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008026 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008027
8028 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008029 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008030
Rafael Espindola15f1b662009-04-24 12:59:40 +00008031 SDValue Flag = Chain.getValue(1);
8032 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008033}
8034
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008035// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008036static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008037LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008038 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008039 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008040 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008041 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008042 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008043 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008044 InFlag = Chain.getValue(1);
8045
Chris Lattnerb903bed2009-06-26 21:20:29 +00008046 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008047}
8048
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008049// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008050static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008051LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008052 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008053 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8054 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008055}
8056
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008057static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8058 SelectionDAG &DAG,
8059 const EVT PtrVT,
8060 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008061 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008062
8063 // Get the start address of the TLS block for this module.
8064 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8065 .getInfo<X86MachineFunctionInfo>();
8066 MFI->incNumLocalDynamicTLSAccesses();
8067
8068 SDValue Base;
8069 if (is64Bit) {
8070 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8071 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8072 } else {
8073 SDValue InFlag;
8074 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008075 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008076 InFlag = Chain.getValue(1);
8077 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8078 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8079 }
8080
8081 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8082 // of Base.
8083
8084 // Build x@dtpoff.
8085 unsigned char OperandFlags = X86II::MO_DTPOFF;
8086 unsigned WrapperKind = X86ISD::Wrapper;
8087 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8088 GA->getValueType(0),
8089 GA->getOffset(), OperandFlags);
8090 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8091
8092 // Add x@dtpoff with the base.
8093 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8094}
8095
Hans Wennborg228756c2012-05-11 10:11:01 +00008096// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008097static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008098 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008099 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008100 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008101
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008102 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8103 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8104 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008105
Michael J. Spencerec38de22010-10-10 22:04:20 +00008106 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008107 DAG.getIntPtrConstant(0),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008108 MachinePointerInfo(Ptr),
8109 false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008110
Chris Lattnerb903bed2009-06-26 21:20:29 +00008111 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008112 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8113 // initialexec.
8114 unsigned WrapperKind = X86ISD::Wrapper;
8115 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008116 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008117 } else if (model == TLSModel::InitialExec) {
8118 if (is64Bit) {
8119 OperandFlags = X86II::MO_GOTTPOFF;
8120 WrapperKind = X86ISD::WrapperRIP;
8121 } else {
8122 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8123 }
Chris Lattner18c59872009-06-27 04:16:01 +00008124 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008125 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008126 }
Eric Christopherfd179292009-08-27 18:07:15 +00008127
Hans Wennborg228756c2012-05-11 10:11:01 +00008128 // emit "addl x@ntpoff,%eax" (local exec)
8129 // or "addl x@indntpoff,%eax" (initial exec)
8130 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Michael J. Spencerec38de22010-10-10 22:04:20 +00008131 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00008132 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008133 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008134 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008135
Hans Wennborg228756c2012-05-11 10:11:01 +00008136 if (model == TLSModel::InitialExec) {
8137 if (isPIC && !is64Bit) {
8138 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008139 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008140 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008141 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008142
8143 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8144 MachinePointerInfo::getGOT(), false, false, false,
8145 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008146 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008147
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008148 // The address of the thread local variable is the add of the thread
8149 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008150 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008151}
8152
Dan Gohman475871a2008-07-27 21:46:04 +00008153SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008154X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008155
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008156 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008157 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008158
Eric Christopher30ef0e52010-06-03 04:07:48 +00008159 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008160 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008161
Eric Christopher30ef0e52010-06-03 04:07:48 +00008162 switch (model) {
8163 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008164 if (Subtarget->is64Bit())
8165 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8166 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008167 case TLSModel::LocalDynamic:
8168 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8169 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008170 case TLSModel::InitialExec:
8171 case TLSModel::LocalExec:
8172 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008173 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008174 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008175 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008176 llvm_unreachable("Unknown TLS model.");
8177 }
8178
8179 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008180 // Darwin only has one model of TLS. Lower to that.
8181 unsigned char OpFlag = 0;
8182 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8183 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008184
Eric Christopher30ef0e52010-06-03 04:07:48 +00008185 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8186 // global base reg.
8187 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8188 !Subtarget->is64Bit();
8189 if (PIC32)
8190 OpFlag = X86II::MO_TLVP_PIC_BASE;
8191 else
8192 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008193 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008194 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008195 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008196 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008197 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008198
Eric Christopher30ef0e52010-06-03 04:07:48 +00008199 // With PIC32, the address is actually $g + Offset.
8200 if (PIC32)
8201 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8202 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008203 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008204 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008205
Eric Christopher30ef0e52010-06-03 04:07:48 +00008206 // Lowering the machine isd will make sure everything is in the right
8207 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008208 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008209 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008210 SDValue Args[] = { Chain, Offset };
8211 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008212
Eric Christopher30ef0e52010-06-03 04:07:48 +00008213 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8214 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8215 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008216
Eric Christopher30ef0e52010-06-03 04:07:48 +00008217 // And our return value (tls address) is in the standard call return value
8218 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008219 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008220 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8221 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008222 }
8223
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008224 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008225 // Just use the implicit TLS architecture
8226 // Need to generate someting similar to:
8227 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8228 // ; from TEB
8229 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8230 // mov rcx, qword [rdx+rcx*8]
8231 // mov eax, .tls$:tlsvar
8232 // [rax+rcx] contains the address
8233 // Windows 64bit: gs:0x58
8234 // Windows 32bit: fs:__tls_array
8235
8236 // If GV is an alias then use the aliasee for determining
8237 // thread-localness.
8238 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8239 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008240 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008241 SDValue Chain = DAG.getEntryNode();
8242
8243 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008244 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8245 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008246 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8247 ? Type::getInt8PtrTy(*DAG.getContext(),
8248 256)
8249 : Type::getInt32PtrTy(*DAG.getContext(),
8250 257));
8251
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008252 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8253 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8254 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8255
8256 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008257 MachinePointerInfo(Ptr),
8258 false, false, false, 0);
8259
8260 // Load the _tls_index variable
8261 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8262 if (Subtarget->is64Bit())
8263 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8264 IDX, MachinePointerInfo(), MVT::i32,
8265 false, false, 0);
8266 else
8267 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8268 false, false, false, 0);
8269
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008270 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008271 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008272 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8273
8274 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8275 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8276 false, false, false, 0);
8277
8278 // Get the offset of start of .tls section
8279 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8280 GA->getValueType(0),
8281 GA->getOffset(), X86II::MO_SECREL);
8282 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8283
8284 // The address of the thread local variable is the add of the thread
8285 // pointer with the offset of the variable.
8286 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008287 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008288
David Blaikie4d6ccb52012-01-20 21:51:11 +00008289 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008290}
8291
Chad Rosierb90d2a92012-01-03 23:19:12 +00008292/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8293/// and take a 2 x i32 value to shift plus a shift amount.
8294SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008295 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008296 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008297 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008298 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008299 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008300 SDValue ShOpLo = Op.getOperand(0);
8301 SDValue ShOpHi = Op.getOperand(1);
8302 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008303 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008304 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008305 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008306
Dan Gohman475871a2008-07-27 21:46:04 +00008307 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008308 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008309 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8310 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008311 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008312 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8313 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008314 }
Evan Chenge3413162006-01-09 18:33:28 +00008315
Owen Anderson825b72b2009-08-11 20:47:22 +00008316 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8317 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008318 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008319 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008320
Dan Gohman475871a2008-07-27 21:46:04 +00008321 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008322 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008323 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8324 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008325
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008326 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008327 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8328 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008329 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008330 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8331 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008332 }
8333
Dan Gohman475871a2008-07-27 21:46:04 +00008334 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008335 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008336}
Evan Chenga3195e82006-01-12 22:54:21 +00008337
Dan Gohmand858e902010-04-17 15:26:15 +00008338SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8339 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008340 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008341
Dale Johannesen0488fb62010-09-30 23:57:10 +00008342 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008343 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008344
Owen Anderson825b72b2009-08-11 20:47:22 +00008345 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008346 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008347
Eli Friedman36df4992009-05-27 00:47:34 +00008348 // These are really Legal; return the operand so the caller accepts it as
8349 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008350 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008351 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008352 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008353 Subtarget->is64Bit()) {
8354 return Op;
8355 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008356
Andrew Trickac6d9be2013-05-25 02:42:55 +00008357 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008358 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008359 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008360 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008361 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008362 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008363 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008364 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008365 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008366 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8367}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008368
Owen Andersone50ed302009-08-10 22:56:29 +00008369SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008370 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008371 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008372 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008373 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008374 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008375 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008376 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008377 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008378 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008379 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008380
Chris Lattner492a43e2010-09-22 01:28:21 +00008381 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008382
Stuart Hastings84be9582011-06-02 15:57:11 +00008383 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8384 MachineMemOperand *MMO;
8385 if (FI) {
8386 int SSFI = FI->getIndex();
8387 MMO =
8388 DAG.getMachineFunction()
8389 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8390 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8391 } else {
8392 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8393 StackSlot = StackSlot.getOperand(1);
8394 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008395 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008396 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8397 X86ISD::FILD, DL,
8398 Tys, Ops, array_lengthof(Ops),
8399 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008400
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008401 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008402 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008403 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008404
8405 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8406 // shouldn't be necessary except that RFP cannot be live across
8407 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008408 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008409 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8410 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008411 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008412 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008413 SDValue Ops[] = {
8414 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8415 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008416 MachineMemOperand *MMO =
8417 DAG.getMachineFunction()
8418 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008419 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008420
Chris Lattner492a43e2010-09-22 01:28:21 +00008421 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8422 Ops, array_lengthof(Ops),
8423 Op.getValueType(), MMO);
8424 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008425 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008426 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008427 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008428
Evan Cheng0db9fe62006-04-25 20:13:52 +00008429 return Result;
8430}
8431
Bill Wendling8b8a6362009-01-17 03:56:04 +00008432// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008433SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8434 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008435 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008436 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008437 movq %rax, %xmm0
8438 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8439 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8440 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008441 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008442 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008443 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008444 addpd %xmm1, %xmm0
8445 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008446 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008447
Andrew Trickac6d9be2013-05-25 02:42:55 +00008448 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008449 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008450
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008451 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008452 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008453 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008454 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008455
Chris Lattner97484792012-01-25 09:56:22 +00008456 SmallVector<Constant*,2> CV1;
8457 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008458 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8459 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008460 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008461 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8462 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008463 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008464 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008465
Bill Wendling397ae212012-01-05 02:13:20 +00008466 // Load the 64-bit value into an XMM register.
8467 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8468 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008469 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008470 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008471 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008472 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8473 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8474 CLod0);
8475
Owen Anderson825b72b2009-08-11 20:47:22 +00008476 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008477 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008478 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008479 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008480 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008481 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008482
Craig Topperd0a31172012-01-10 06:37:29 +00008483 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008484 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8485 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8486 } else {
8487 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8488 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8489 S2F, 0x4E, DAG);
8490 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8491 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8492 Sub);
8493 }
8494
8495 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008496 DAG.getIntPtrConstant(0));
8497}
8498
Bill Wendling8b8a6362009-01-17 03:56:04 +00008499// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008500SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8501 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008502 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008503 // FP constant to bias correct the final result.
8504 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008505 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008506
8507 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008508 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008509 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008510
Eli Friedmanf3704762011-08-29 21:15:46 +00008511 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008512 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008513
Owen Anderson825b72b2009-08-11 20:47:22 +00008514 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008515 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008516 DAG.getIntPtrConstant(0));
8517
8518 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008519 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008520 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008521 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008522 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008523 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008524 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008525 MVT::v2f64, Bias)));
8526 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008527 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008528 DAG.getIntPtrConstant(0));
8529
8530 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008531 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008532
8533 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008534 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008535
Craig Topper69947b92012-04-23 06:57:04 +00008536 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008537 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008538 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008539 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008540 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008541
8542 // Handle final rounding.
8543 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008544}
8545
Michael Liaoa7554632012-10-23 17:36:08 +00008546SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8547 SelectionDAG &DAG) const {
8548 SDValue N0 = Op.getOperand(0);
8549 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008550 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008551
8552 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8553 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8554 "Custom UINT_TO_FP is not supported!");
8555
Craig Topperb99bafe2013-01-21 06:21:54 +00008556 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8557 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008558 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8559 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8560}
8561
Dan Gohmand858e902010-04-17 15:26:15 +00008562SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8563 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008564 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008565 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008566
Michael Liaoa7554632012-10-23 17:36:08 +00008567 if (Op.getValueType().isVector())
8568 return lowerUINT_TO_FP_vec(Op, DAG);
8569
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008570 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008571 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8572 // the optimization here.
8573 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008574 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008575
Owen Andersone50ed302009-08-10 22:56:29 +00008576 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008577 EVT DstVT = Op.getValueType();
8578 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008579 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008580 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008581 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008582 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008583 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008584
8585 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008586 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008587 if (SrcVT == MVT::i32) {
8588 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8589 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8590 getPointerTy(), StackSlot, WordOff);
8591 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008592 StackSlot, MachinePointerInfo(),
8593 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008594 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008595 OffsetSlot, MachinePointerInfo(),
8596 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008597 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8598 return Fild;
8599 }
8600
8601 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8602 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008603 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008604 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008605 // For i64 source, we need to add the appropriate power of 2 if the input
8606 // was negative. This is the same as the optimization in
8607 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8608 // we must be careful to do the computation in x87 extended precision, not
8609 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008610 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8611 MachineMemOperand *MMO =
8612 DAG.getMachineFunction()
8613 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8614 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008615
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008616 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8617 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008618 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8619 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008620
8621 APInt FF(32, 0x5F800000ULL);
8622
8623 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008624 SDValue SignSet = DAG.getSetCC(dl,
8625 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008626 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8627 ISD::SETLT);
8628
8629 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8630 SDValue FudgePtr = DAG.getConstantPool(
8631 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8632 getPointerTy());
8633
8634 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8635 SDValue Zero = DAG.getIntPtrConstant(0);
8636 SDValue Four = DAG.getIntPtrConstant(4);
8637 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8638 Zero, Four);
8639 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8640
8641 // Load the value out, extending it from f32 to f80.
8642 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008643 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008644 FudgePtr, MachinePointerInfo::getConstantPool(),
8645 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008646 // Extend everything to 80 bits to force it to be done on x87.
8647 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8648 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008649}
8650
Craig Topperb99bafe2013-01-21 06:21:54 +00008651std::pair<SDValue,SDValue>
8652X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8653 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008654 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008655
Owen Andersone50ed302009-08-10 22:56:29 +00008656 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008657
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008658 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008659 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8660 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008661 }
8662
Owen Anderson825b72b2009-08-11 20:47:22 +00008663 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8664 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008665 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008666
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008667 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008668 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008669 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008670 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008671 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008672 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008673 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008674 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008675
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008676 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8677 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008678 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008679 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008680 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008681 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008682
Evan Cheng0db9fe62006-04-25 20:13:52 +00008683 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008684 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8685 Opc = X86ISD::WIN_FTOL;
8686 else
8687 switch (DstTy.getSimpleVT().SimpleTy) {
8688 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8689 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8690 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8691 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8692 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008693
Dan Gohman475871a2008-07-27 21:46:04 +00008694 SDValue Chain = DAG.getEntryNode();
8695 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008696 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008697 // FIXME This causes a redundant load/store if the SSE-class value is already
8698 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008699 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008700 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008701 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008702 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008703 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008704 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008705 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008706 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008707 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008708
Chris Lattner492a43e2010-09-22 01:28:21 +00008709 MachineMemOperand *MMO =
8710 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8711 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008712 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8713 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008714 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008715 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008716 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8717 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008718
Chris Lattner07290932010-09-22 01:05:16 +00008719 MachineMemOperand *MMO =
8720 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8721 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008722
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008723 if (Opc != X86ISD::WIN_FTOL) {
8724 // Build the FP_TO_INT*_IN_MEM
8725 SDValue Ops[] = { Chain, Value, StackSlot };
8726 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008727 Ops, array_lengthof(Ops), DstTy,
8728 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008729 return std::make_pair(FIST, StackSlot);
8730 } else {
8731 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8732 DAG.getVTList(MVT::Other, MVT::Glue),
8733 Chain, Value);
8734 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8735 MVT::i32, ftol.getValue(1));
8736 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8737 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008738 SDValue Ops[] = { eax, edx };
8739 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008740 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8741 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008742 return std::make_pair(pair, SDValue());
8743 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008744}
8745
Nadav Rotem0509db22012-12-28 05:45:24 +00008746static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8747 const X86Subtarget *Subtarget) {
Craig Toppera080daf2013-01-20 21:50:27 +00008748 MVT VT = Op->getValueType(0).getSimpleVT();
Nadav Rotem0509db22012-12-28 05:45:24 +00008749 SDValue In = Op->getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008750 MVT InVT = In.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008751 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008752
8753 // Optimize vectors in AVX mode:
8754 //
8755 // v8i16 -> v8i32
8756 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8757 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8758 // Concat upper and lower parts.
8759 //
8760 // v4i32 -> v4i64
8761 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8762 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8763 // Concat upper and lower parts.
8764 //
8765
8766 if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8767 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8768 return SDValue();
8769
8770 if (Subtarget->hasInt256())
8771 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8772
8773 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8774 SDValue Undef = DAG.getUNDEF(InVT);
8775 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8776 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8777 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8778
Craig Toppera080daf2013-01-20 21:50:27 +00008779 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008780 VT.getVectorNumElements()/2);
8781
8782 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8783 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8784
8785 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8786}
8787
8788SDValue X86TargetLowering::LowerANY_EXTEND(SDValue Op,
8789 SelectionDAG &DAG) const {
8790 if (Subtarget->hasFp256()) {
8791 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8792 if (Res.getNode())
8793 return Res;
8794 }
8795
8796 return SDValue();
8797}
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008798SDValue X86TargetLowering::LowerZERO_EXTEND(SDValue Op,
8799 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008800 SDLoc DL(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00008801 MVT VT = Op.getValueType().getSimpleVT();
Michael Liaoa7554632012-10-23 17:36:08 +00008802 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008803 MVT SVT = In.getValueType().getSimpleVT();
Michael Liaoa7554632012-10-23 17:36:08 +00008804
Nadav Rotem0509db22012-12-28 05:45:24 +00008805 if (Subtarget->hasFp256()) {
8806 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8807 if (Res.getNode())
8808 return Res;
8809 }
8810
Michael Liaoa7554632012-10-23 17:36:08 +00008811 if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8812 VT.getVectorNumElements() != SVT.getVectorNumElements())
8813 return SDValue();
8814
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008815 assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
Michael Liaoa7554632012-10-23 17:36:08 +00008816
8817 // AVX2 has better support of integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008818 if (Subtarget->hasInt256())
Michael Liaoa7554632012-10-23 17:36:08 +00008819 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8820
8821 SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8822 static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8823 SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008824 DAG.getVectorShuffle(MVT::v8i16, DL, In,
8825 DAG.getUNDEF(MVT::v8i16),
8826 &Mask[0]));
Michael Liaoa7554632012-10-23 17:36:08 +00008827
8828 return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8829}
8830
Craig Topperd713c0f2013-01-20 21:34:37 +00008831SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008832 SDLoc DL(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00008833 MVT VT = Op.getValueType().getSimpleVT();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008834 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008835 MVT SVT = In.getValueType().getSimpleVT();
Michael Liaobedcbd42012-10-16 18:14:11 +00008836
Nadav Rotem3c22a442012-12-27 07:45:10 +00008837 if ((VT == MVT::v4i32) && (SVT == MVT::v4i64)) {
8838 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8839 if (Subtarget->hasInt256()) {
8840 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8841 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8842 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8843 ShufMask);
8844 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8845 DAG.getIntPtrConstant(0));
8846 }
8847
8848 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8849 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8850 DAG.getIntPtrConstant(0));
8851 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8852 DAG.getIntPtrConstant(2));
8853
8854 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8855 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8856
8857 // The PSHUFD mask:
8858 static const int ShufMask1[] = {0, 2, 0, 0};
8859 SDValue Undef = DAG.getUNDEF(VT);
8860 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
8861 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
8862
8863 // The MOVLHPS mask:
8864 static const int ShufMask2[] = {0, 1, 4, 5};
8865 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
8866 }
8867
8868 if ((VT == MVT::v8i16) && (SVT == MVT::v8i32)) {
8869 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
8870 if (Subtarget->hasInt256()) {
8871 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
8872
8873 SmallVector<SDValue,32> pshufbMask;
8874 for (unsigned i = 0; i < 2; ++i) {
8875 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
8876 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
8877 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
8878 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
8879 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
8880 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
8881 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
8882 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
8883 for (unsigned j = 0; j < 8; ++j)
8884 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
8885 }
8886 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
8887 &pshufbMask[0], 32);
8888 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
8889 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
8890
8891 static const int ShufMask[] = {0, 2, -1, -1};
8892 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
8893 &ShufMask[0]);
8894 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8895 DAG.getIntPtrConstant(0));
8896 return DAG.getNode(ISD::BITCAST, DL, VT, In);
8897 }
8898
8899 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8900 DAG.getIntPtrConstant(0));
8901
8902 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8903 DAG.getIntPtrConstant(4));
8904
8905 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
8906 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
8907
8908 // The PSHUFB mask:
8909 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
8910 -1, -1, -1, -1, -1, -1, -1, -1};
8911
8912 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
8913 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
8914 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
8915
8916 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8917 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8918
8919 // The MOVLHPS Mask:
8920 static const int ShufMask2[] = {0, 1, 4, 5};
8921 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
8922 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
8923 }
8924
8925 // Handle truncation of V256 to V128 using shuffles.
8926 if (!VT.is128BitVector() || !SVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00008927 return SDValue();
8928
Nadav Rotem3c22a442012-12-27 07:45:10 +00008929 assert(VT.getVectorNumElements() != SVT.getVectorNumElements() &&
8930 "Invalid op");
8931 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00008932
8933 unsigned NumElems = VT.getVectorNumElements();
8934 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
8935 NumElems * 2);
8936
Michael Liaobedcbd42012-10-16 18:14:11 +00008937 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
8938 // Prepare truncation shuffle mask
8939 for (unsigned i = 0; i != NumElems; ++i)
8940 MaskVec[i] = i * 2;
8941 SDValue V = DAG.getVectorShuffle(NVT, DL,
8942 DAG.getNode(ISD::BITCAST, DL, NVT, In),
8943 DAG.getUNDEF(NVT), &MaskVec[0]);
8944 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
8945 DAG.getIntPtrConstant(0));
8946}
8947
Dan Gohmand858e902010-04-17 15:26:15 +00008948SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8949 SelectionDAG &DAG) const {
Craig Toppera080daf2013-01-20 21:50:27 +00008950 MVT VT = Op.getValueType().getSimpleVT();
8951 if (VT.isVector()) {
8952 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00008953 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
8954 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00008955 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00008956 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00008957 }
Eli Friedman23ef1052009-06-06 03:57:58 +00008958
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008959 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8960 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00008961 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00008962 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
8963 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00008964
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008965 if (StackSlot.getNode())
8966 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00008967 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008968 FIST, StackSlot, MachinePointerInfo(),
8969 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00008970
8971 // The node is the result.
8972 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00008973}
8974
Dan Gohmand858e902010-04-17 15:26:15 +00008975SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
8976 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008977 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8978 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00008979 SDValue FIST = Vals.first, StackSlot = Vals.second;
8980 assert(FIST.getNode() && "Unexpected failure");
8981
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008982 if (StackSlot.getNode())
8983 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00008984 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008985 FIST, StackSlot, MachinePointerInfo(),
8986 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00008987
8988 // The node is the result.
8989 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00008990}
8991
Craig Topperb84b4232013-01-21 06:13:28 +00008992static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008993 SDLoc DL(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00008994 MVT VT = Op.getValueType().getSimpleVT();
Michael Liao9d796db2012-10-10 16:32:15 +00008995 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008996 MVT SVT = In.getValueType().getSimpleVT();
Michael Liao9d796db2012-10-10 16:32:15 +00008997
8998 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
8999
9000 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9001 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9002 In, DAG.getUNDEF(SVT)));
9003}
9004
Craig Topper43620672012-09-08 07:31:51 +00009005SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009006 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009007 SDLoc dl(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00009008 MVT VT = Op.getValueType().getSimpleVT();
9009 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009010 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9011 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009012 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009013 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009014 }
Craig Topper43620672012-09-08 07:31:51 +00009015 Constant *C;
9016 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009017 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9018 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009019 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009020 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9021 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009022 C = ConstantVector::getSplat(NumElts, C);
9023 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9024 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009025 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009026 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009027 false, false, false, Alignment);
9028 if (VT.isVector()) {
9029 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9030 return DAG.getNode(ISD::BITCAST, dl, VT,
9031 DAG.getNode(ISD::AND, dl, ANDVT,
9032 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9033 Op.getOperand(0)),
9034 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9035 }
Dale Johannesenace16102009-02-03 19:33:06 +00009036 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009037}
9038
Dan Gohmand858e902010-04-17 15:26:15 +00009039SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009040 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009041 SDLoc dl(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00009042 MVT VT = Op.getValueType().getSimpleVT();
9043 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009044 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9045 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009046 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009047 NumElts = VT.getVectorNumElements();
9048 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009049 Constant *C;
9050 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009051 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9052 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009053 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009054 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9055 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009056 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009057 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9058 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009059 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009060 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009061 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009062 if (VT.isVector()) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00009063 MVT XORVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009064 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009065 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009066 DAG.getNode(ISD::BITCAST, dl, XORVT,
9067 Op.getOperand(0)),
9068 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009069 }
Craig Topper69947b92012-04-23 06:57:04 +00009070
9071 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009072}
9073
Dan Gohmand858e902010-04-17 15:26:15 +00009074SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009075 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009076 SDValue Op0 = Op.getOperand(0);
9077 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009078 SDLoc dl(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00009079 MVT VT = Op.getValueType().getSimpleVT();
9080 MVT SrcVT = Op1.getValueType().getSimpleVT();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009081
9082 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009083 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009084 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009085 SrcVT = VT;
9086 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009087 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009088 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009089 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009090 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009091 }
9092
9093 // At this point the operands and the result should have the same
9094 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009095
Evan Cheng68c47cb2007-01-05 07:55:56 +00009096 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009097 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009098 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009099 const fltSemantics &Sem = APFloat::IEEEdouble;
9100 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9101 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009102 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009103 const fltSemantics &Sem = APFloat::IEEEsingle;
9104 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9105 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9106 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9107 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009108 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009109 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009110 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009111 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009112 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009113 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009114 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009115
9116 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009117 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009118 // Op0 is MVT::f32, Op1 is MVT::f64.
9119 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9120 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9121 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009122 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009123 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009124 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009125 }
9126
Evan Cheng73d6cf12007-01-05 21:37:56 +00009127 // Clear first operand sign bit.
9128 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009129 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009130 const fltSemantics &Sem = APFloat::IEEEdouble;
9131 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9132 APInt(64, ~(1ULL << 63)))));
9133 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009134 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009135 const fltSemantics &Sem = APFloat::IEEEsingle;
9136 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9137 APInt(32, ~(1U << 31)))));
9138 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9139 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9140 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009141 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009142 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009143 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009144 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009145 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009146 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009147 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009148
9149 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009150 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009151}
9152
Craig Topper55b24052012-09-11 06:15:32 +00009153static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009154 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009155 SDLoc dl(Op);
Craig Toppera080daf2013-01-20 21:50:27 +00009156 MVT VT = Op.getValueType().getSimpleVT();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009157
9158 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9159 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9160 DAG.getConstant(1, VT));
9161 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9162}
9163
Michael Liaof966e4e2012-09-13 20:24:54 +00009164// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9165//
Craig Topperb99bafe2013-01-21 06:21:54 +00009166SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op,
9167 SelectionDAG &DAG) const {
Michael Liaof966e4e2012-09-13 20:24:54 +00009168 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9169
9170 if (!Subtarget->hasSSE41())
9171 return SDValue();
9172
9173 if (!Op->hasOneUse())
9174 return SDValue();
9175
9176 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009177 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009178
9179 SmallVector<SDValue, 8> Opnds;
9180 DenseMap<SDValue, unsigned> VecInMap;
9181 EVT VT = MVT::Other;
9182
9183 // Recognize a special case where a vector is casted into wide integer to
9184 // test all 0s.
9185 Opnds.push_back(N->getOperand(0));
9186 Opnds.push_back(N->getOperand(1));
9187
9188 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009189 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009190 // BFS traverse all OR'd operands.
9191 if (I->getOpcode() == ISD::OR) {
9192 Opnds.push_back(I->getOperand(0));
9193 Opnds.push_back(I->getOperand(1));
9194 // Re-evaluate the number of nodes to be traversed.
9195 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9196 continue;
9197 }
9198
9199 // Quit if a non-EXTRACT_VECTOR_ELT
9200 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9201 return SDValue();
9202
9203 // Quit if without a constant index.
9204 SDValue Idx = I->getOperand(1);
9205 if (!isa<ConstantSDNode>(Idx))
9206 return SDValue();
9207
9208 SDValue ExtractedFromVec = I->getOperand(0);
9209 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9210 if (M == VecInMap.end()) {
9211 VT = ExtractedFromVec.getValueType();
9212 // Quit if not 128/256-bit vector.
9213 if (!VT.is128BitVector() && !VT.is256BitVector())
9214 return SDValue();
9215 // Quit if not the same type.
9216 if (VecInMap.begin() != VecInMap.end() &&
9217 VT != VecInMap.begin()->first.getValueType())
9218 return SDValue();
9219 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9220 }
9221 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9222 }
9223
9224 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009225 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009226
9227 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9228 SmallVector<SDValue, 8> VecIns;
9229
9230 for (DenseMap<SDValue, unsigned>::const_iterator
9231 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9232 // Quit if not all elements are used.
9233 if (I->second != FullMask)
9234 return SDValue();
9235 VecIns.push_back(I->first);
9236 }
9237
9238 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9239
9240 // Cast all vectors into TestVT for PTEST.
9241 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9242 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9243
9244 // If more than one full vectors are evaluated, OR them first before PTEST.
9245 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9246 // Each iteration will OR 2 nodes and append the result until there is only
9247 // 1 node left, i.e. the final OR'd value of all vectors.
9248 SDValue LHS = VecIns[Slot];
9249 SDValue RHS = VecIns[Slot + 1];
9250 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9251 }
9252
9253 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9254 VecIns.back(), VecIns.back());
9255}
9256
Dan Gohman076aee32009-03-04 19:44:21 +00009257/// Emit nodes that will be selected as "test Op0,Op0", or something
9258/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009259SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009260 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009261 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009262
Dan Gohman31125812009-03-07 01:58:32 +00009263 // CF and OF aren't always set the way we want. Determine which
9264 // of these we need.
9265 bool NeedCF = false;
9266 bool NeedOF = false;
9267 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009268 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009269 case X86::COND_A: case X86::COND_AE:
9270 case X86::COND_B: case X86::COND_BE:
9271 NeedCF = true;
9272 break;
9273 case X86::COND_G: case X86::COND_GE:
9274 case X86::COND_L: case X86::COND_LE:
9275 case X86::COND_O: case X86::COND_NO:
9276 NeedOF = true;
9277 break;
Dan Gohman31125812009-03-07 01:58:32 +00009278 }
9279
Dan Gohman076aee32009-03-04 19:44:21 +00009280 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009281 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9282 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009283 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9284 // Emit a CMP with 0, which is the TEST pattern.
9285 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9286 DAG.getConstant(0, Op.getValueType()));
9287
9288 unsigned Opcode = 0;
9289 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009290
9291 // Truncate operations may prevent the merge of the SETCC instruction
9292 // and the arithmetic intruction before it. Attempt to truncate the operands
9293 // of the arithmetic instruction and use a reduced bit-width instruction.
9294 bool NeedTruncation = false;
9295 SDValue ArithOp = Op;
9296 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9297 SDValue Arith = Op->getOperand(0);
9298 // Both the trunc and the arithmetic op need to have one user each.
9299 if (Arith->hasOneUse())
9300 switch (Arith.getOpcode()) {
9301 default: break;
9302 case ISD::ADD:
9303 case ISD::SUB:
9304 case ISD::AND:
9305 case ISD::OR:
9306 case ISD::XOR: {
9307 NeedTruncation = true;
9308 ArithOp = Arith;
9309 }
9310 }
9311 }
9312
9313 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9314 // which may be the result of a CAST. We use the variable 'Op', which is the
9315 // non-casted variable when we check for possible users.
9316 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009317 case ISD::ADD:
9318 // Due to an isel shortcoming, be conservative if this add is likely to be
9319 // selected as part of a load-modify-store instruction. When the root node
9320 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9321 // uses of other nodes in the match, such as the ADD in this case. This
9322 // leads to the ADD being left around and reselected, with the result being
9323 // two adds in the output. Alas, even if none our users are stores, that
9324 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9325 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9326 // climbing the DAG back to the root, and it doesn't seem to be worth the
9327 // effort.
9328 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009329 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9330 if (UI->getOpcode() != ISD::CopyToReg &&
9331 UI->getOpcode() != ISD::SETCC &&
9332 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009333 goto default_case;
9334
9335 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009336 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009337 // An add of one will be selected as an INC.
9338 if (C->getAPIntValue() == 1) {
9339 Opcode = X86ISD::INC;
9340 NumOperands = 1;
9341 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009342 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009343
9344 // An add of negative one (subtract of one) will be selected as a DEC.
9345 if (C->getAPIntValue().isAllOnesValue()) {
9346 Opcode = X86ISD::DEC;
9347 NumOperands = 1;
9348 break;
9349 }
Dan Gohman076aee32009-03-04 19:44:21 +00009350 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009351
9352 // Otherwise use a regular EFLAGS-setting add.
9353 Opcode = X86ISD::ADD;
9354 NumOperands = 2;
9355 break;
9356 case ISD::AND: {
9357 // If the primary and result isn't used, don't bother using X86ISD::AND,
9358 // because a TEST instruction will be better.
9359 bool NonFlagUse = false;
9360 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9361 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9362 SDNode *User = *UI;
9363 unsigned UOpNo = UI.getOperandNo();
9364 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9365 // Look pass truncate.
9366 UOpNo = User->use_begin().getOperandNo();
9367 User = *User->use_begin();
9368 }
9369
9370 if (User->getOpcode() != ISD::BRCOND &&
9371 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009372 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009373 NonFlagUse = true;
9374 break;
9375 }
Dan Gohman076aee32009-03-04 19:44:21 +00009376 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009377
9378 if (!NonFlagUse)
9379 break;
9380 }
9381 // FALL THROUGH
9382 case ISD::SUB:
9383 case ISD::OR:
9384 case ISD::XOR:
9385 // Due to the ISEL shortcoming noted above, be conservative if this op is
9386 // likely to be selected as part of a load-modify-store instruction.
9387 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9388 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9389 if (UI->getOpcode() == ISD::STORE)
9390 goto default_case;
9391
9392 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009393 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009394 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009395 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009396 case ISD::XOR: Opcode = X86ISD::XOR; break;
9397 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009398 case ISD::OR: {
9399 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9400 SDValue EFLAGS = LowerVectorAllZeroTest(Op, DAG);
9401 if (EFLAGS.getNode())
9402 return EFLAGS;
9403 }
9404 Opcode = X86ISD::OR;
9405 break;
9406 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009407 }
9408
9409 NumOperands = 2;
9410 break;
9411 case X86ISD::ADD:
9412 case X86ISD::SUB:
9413 case X86ISD::INC:
9414 case X86ISD::DEC:
9415 case X86ISD::OR:
9416 case X86ISD::XOR:
9417 case X86ISD::AND:
9418 return SDValue(Op.getNode(), 1);
9419 default:
9420 default_case:
9421 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009422 }
9423
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009424 // If we found that truncation is beneficial, perform the truncation and
9425 // update 'Op'.
9426 if (NeedTruncation) {
9427 EVT VT = Op.getValueType();
9428 SDValue WideVal = Op->getOperand(0);
9429 EVT WideVT = WideVal.getValueType();
9430 unsigned ConvertedOp = 0;
9431 // Use a target machine opcode to prevent further DAGCombine
9432 // optimizations that may separate the arithmetic operations
9433 // from the setcc node.
9434 switch (WideVal.getOpcode()) {
9435 default: break;
9436 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9437 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9438 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9439 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9440 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9441 }
9442
9443 if (ConvertedOp) {
9444 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9445 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9446 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9447 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9448 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9449 }
9450 }
9451 }
9452
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009453 if (Opcode == 0)
9454 // Emit a CMP with 0, which is the TEST pattern.
9455 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9456 DAG.getConstant(0, Op.getValueType()));
9457
9458 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9459 SmallVector<SDValue, 4> Ops;
9460 for (unsigned i = 0; i != NumOperands; ++i)
9461 Ops.push_back(Op.getOperand(i));
9462
9463 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9464 DAG.ReplaceAllUsesWith(Op, New);
9465 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009466}
9467
9468/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9469/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009470SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009471 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009472 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9473 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009474 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009475
Andrew Trickac6d9be2013-05-25 02:42:55 +00009476 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009477 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9478 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9479 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9480 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9481 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9482 Op0, Op1);
9483 return SDValue(Sub.getNode(), 1);
9484 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009485 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009486}
9487
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009488/// Convert a comparison if required by the subtarget.
9489SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9490 SelectionDAG &DAG) const {
9491 // If the subtarget does not support the FUCOMI instruction, floating-point
9492 // comparisons have to be converted.
9493 if (Subtarget->hasCMov() ||
9494 Cmp.getOpcode() != X86ISD::CMP ||
9495 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9496 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9497 return Cmp;
9498
9499 // The instruction selector will select an FUCOM instruction instead of
9500 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9501 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9502 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009503 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009504 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9505 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9506 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9507 DAG.getConstant(8, MVT::i8));
9508 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9509 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9510}
9511
Evan Cheng4e544802012-12-05 00:10:38 +00009512static bool isAllOnes(SDValue V) {
9513 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9514 return C && C->isAllOnesValue();
9515}
9516
Evan Chengd40d03e2010-01-06 19:38:29 +00009517/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9518/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009519SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009520 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009521 SDValue Op0 = And.getOperand(0);
9522 SDValue Op1 = And.getOperand(1);
9523 if (Op0.getOpcode() == ISD::TRUNCATE)
9524 Op0 = Op0.getOperand(0);
9525 if (Op1.getOpcode() == ISD::TRUNCATE)
9526 Op1 = Op1.getOperand(0);
9527
Evan Chengd40d03e2010-01-06 19:38:29 +00009528 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009529 if (Op1.getOpcode() == ISD::SHL)
9530 std::swap(Op0, Op1);
9531 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009532 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9533 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009534 // If we looked past a truncate, check that it's only truncating away
9535 // known zeros.
9536 unsigned BitWidth = Op0.getValueSizeInBits();
9537 unsigned AndBitWidth = And.getValueSizeInBits();
9538 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009539 APInt Zeros, Ones;
9540 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009541 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9542 return SDValue();
9543 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009544 LHS = Op1;
9545 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009546 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009547 } else if (Op1.getOpcode() == ISD::Constant) {
9548 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009549 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009550 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009551
9552 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009553 LHS = AndLHS.getOperand(0);
9554 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009555 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009556
9557 // Use BT if the immediate can't be encoded in a TEST instruction.
9558 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9559 LHS = AndLHS;
9560 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9561 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009562 }
Evan Cheng0488db92007-09-25 01:57:46 +00009563
Evan Chengd40d03e2010-01-06 19:38:29 +00009564 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009565 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009566 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009567 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009568 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009569 // Also promote i16 to i32 for performance / code size reason.
9570 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009571 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009572 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009573
Evan Chengd40d03e2010-01-06 19:38:29 +00009574 // If the operand types disagree, extend the shift amount to match. Since
9575 // BT ignores high bits (like shifts) we can use anyextend.
9576 if (LHS.getValueType() != RHS.getValueType())
9577 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009578
Evan Chengd40d03e2010-01-06 19:38:29 +00009579 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009580 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009581 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9582 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009583 }
9584
Evan Cheng54de3ea2010-01-05 06:52:31 +00009585 return SDValue();
9586}
9587
Benjamin Kramer75311b72013-08-04 12:05:16 +00009588/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9589/// mask CMPs.
9590static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9591 SDValue &Op1) {
9592 unsigned SSECC;
9593 bool Swap = false;
9594
9595 // SSE Condition code mapping:
9596 // 0 - EQ
9597 // 1 - LT
9598 // 2 - LE
9599 // 3 - UNORD
9600 // 4 - NEQ
9601 // 5 - NLT
9602 // 6 - NLE
9603 // 7 - ORD
9604 switch (SetCCOpcode) {
9605 default: llvm_unreachable("Unexpected SETCC condition");
9606 case ISD::SETOEQ:
9607 case ISD::SETEQ: SSECC = 0; break;
9608 case ISD::SETOGT:
9609 case ISD::SETGT: Swap = true; // Fallthrough
9610 case ISD::SETLT:
9611 case ISD::SETOLT: SSECC = 1; break;
9612 case ISD::SETOGE:
9613 case ISD::SETGE: Swap = true; // Fallthrough
9614 case ISD::SETLE:
9615 case ISD::SETOLE: SSECC = 2; break;
9616 case ISD::SETUO: SSECC = 3; break;
9617 case ISD::SETUNE:
9618 case ISD::SETNE: SSECC = 4; break;
9619 case ISD::SETULE: Swap = true; // Fallthrough
9620 case ISD::SETUGE: SSECC = 5; break;
9621 case ISD::SETULT: Swap = true; // Fallthrough
9622 case ISD::SETUGT: SSECC = 6; break;
9623 case ISD::SETO: SSECC = 7; break;
9624 case ISD::SETUEQ:
9625 case ISD::SETONE: SSECC = 8; break;
9626 }
9627 if (Swap)
9628 std::swap(Op0, Op1);
9629
9630 return SSECC;
9631}
9632
Craig Topper89af15e2011-09-18 08:03:58 +00009633// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009634// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009635static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper26827f32013-01-20 09:02:22 +00009636 MVT VT = Op.getValueType().getSimpleVT();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009637
Craig Topper7a9a28b2012-08-12 02:23:29 +00009638 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009639 "Unsupported value type for operation");
9640
Craig Topper66ddd152012-04-27 22:54:43 +00009641 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009642 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009643 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009644
9645 // Extract the LHS vectors
9646 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009647 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9648 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009649
9650 // Extract the RHS vectors
9651 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009652 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9653 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009654
9655 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009656 MVT EltVT = VT.getVectorElementType();
9657 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009658 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9659 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9660 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9661}
9662
Craig Topper26827f32013-01-20 09:02:22 +00009663static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9664 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009665 SDValue Cond;
9666 SDValue Op0 = Op.getOperand(0);
9667 SDValue Op1 = Op.getOperand(1);
9668 SDValue CC = Op.getOperand(2);
Craig Topper26827f32013-01-20 09:02:22 +00009669 MVT VT = Op.getValueType().getSimpleVT();
Nate Begeman30a0de92008-07-17 16:51:19 +00009670 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper26827f32013-01-20 09:02:22 +00009671 bool isFP = Op.getOperand(1).getValueType().getSimpleVT().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009672 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009673
9674 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009675#ifndef NDEBUG
Craig Topper26827f32013-01-20 09:02:22 +00009676 MVT EltVT = Op0.getValueType().getVectorElementType().getSimpleVT();
Craig Topper523908d2012-08-13 02:34:03 +00009677 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9678#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009679
Benjamin Kramer75311b72013-08-04 12:05:16 +00009680 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009681
Nate Begemanfb8ead02008-07-25 19:05:58 +00009682 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009683 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009684 unsigned CC0, CC1;
9685 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009686 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009687 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9688 } else {
9689 assert(SetCCOpcode == ISD::SETONE);
9690 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009691 }
Craig Topper523908d2012-08-13 02:34:03 +00009692
9693 SDValue Cmp0 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9694 DAG.getConstant(CC0, MVT::i8));
9695 SDValue Cmp1 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9696 DAG.getConstant(CC1, MVT::i8));
9697 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009698 }
9699 // Handle all other FP comparisons here.
Craig Topper1906d322012-01-22 23:36:02 +00009700 return DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9701 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009703
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009704 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009705 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009706 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009707
Nate Begeman30a0de92008-07-17 16:51:19 +00009708 // We are handling one of the integer comparisons here. Since SSE only has
9709 // GT and EQ comparisons for integer, swapping operands and multiple
9710 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009711 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009712 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9713
Nate Begeman30a0de92008-07-17 16:51:19 +00009714 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009715 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009716 case ISD::SETNE: Invert = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009717 case ISD::SETEQ: Opc = X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009718 case ISD::SETLT: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009719 case ISD::SETGT: Opc = X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009720 case ISD::SETGE: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009721 case ISD::SETLE: Opc = X86ISD::PCMPGT; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009722 case ISD::SETULT: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009723 case ISD::SETUGT: Opc = X86ISD::PCMPGT; FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009724 case ISD::SETUGE: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009725 case ISD::SETULE: Opc = X86ISD::PCMPGT; FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009726 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009727
9728 // Special case: Use min/max operations for SETULE/SETUGE
9729 MVT VET = VT.getVectorElementType();
9730 bool hasMinMax =
9731 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9732 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9733
9734 if (hasMinMax) {
9735 switch (SetCCOpcode) {
9736 default: break;
9737 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9738 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9739 }
9740
9741 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9742 }
9743
Nate Begeman30a0de92008-07-17 16:51:19 +00009744 if (Swap)
9745 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009746
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009747 // Check that the operation in question is available (most are plain SSE2,
9748 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009749 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009750 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9751 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9752
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009753 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009754 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9755 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9756
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009757 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009758 // bits of the inputs before performing those operations. The lower
9759 // compare is always unsigned.
9760 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009761 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009762 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9763 } else {
9764 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9765 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9766 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9767 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009768 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009769 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9770 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009771
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009772 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9773 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9774 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9775
9776 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009777 static const int MaskHi[] = { 1, 1, 3, 3 };
9778 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009779 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9780 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9781 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9782
9783 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9784 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9785
9786 if (Invert)
9787 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9788
9789 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9790 }
9791
Benjamin Kramer382ed782012-12-25 12:54:19 +00009792 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9793 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +00009794 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +00009795 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
9796
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009797 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +00009798 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9799 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9800
9801 // Do the compare.
9802 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
9803
9804 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +00009805 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +00009806 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
9807 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +00009808
9809 if (Invert)
9810 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9811
9812 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9813 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009814 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009815
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009816 // Since SSE has no unsigned integer comparisons, we need to flip the sign
9817 // bits of the inputs before performing those operations.
9818 if (FlipSigns) {
9819 EVT EltVT = VT.getVectorElementType();
9820 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
9821 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
9822 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
9823 }
9824
Dale Johannesenace16102009-02-03 19:33:06 +00009825 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009826
9827 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00009828 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00009829 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009830
9831 if (MinMax)
9832 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +00009833
Nate Begeman30a0de92008-07-17 16:51:19 +00009834 return Result;
9835}
Evan Cheng0488db92007-09-25 01:57:46 +00009836
Craig Topper26827f32013-01-20 09:02:22 +00009837SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
9838
9839 MVT VT = Op.getValueType().getSimpleVT();
9840
9841 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
9842
9843 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
9844 SDValue Op0 = Op.getOperand(0);
9845 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009846 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +00009847 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
9848
9849 // Optimize to BT if possible.
9850 // Lower (X & (1 << N)) == 0 to BT(X, N).
9851 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
9852 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
9853 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
9854 Op1.getOpcode() == ISD::Constant &&
9855 cast<ConstantSDNode>(Op1)->isNullValue() &&
9856 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9857 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
9858 if (NewSetCC.getNode())
9859 return NewSetCC;
9860 }
9861
9862 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
9863 // these.
9864 if (Op1.getOpcode() == ISD::Constant &&
9865 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
9866 cast<ConstantSDNode>(Op1)->isNullValue()) &&
9867 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9868
9869 // If the input is a setcc, then reuse the input setcc or use a new one with
9870 // the inverted condition.
9871 if (Op0.getOpcode() == X86ISD::SETCC) {
9872 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
9873 bool Invert = (CC == ISD::SETNE) ^
9874 cast<ConstantSDNode>(Op1)->isNullValue();
9875 if (!Invert) return Op0;
9876
9877 CCode = X86::GetOppositeBranchCondition(CCode);
9878 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9879 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
9880 }
9881 }
9882
9883 bool isFP = Op1.getValueType().getSimpleVT().isFloatingPoint();
9884 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
9885 if (X86CC == X86::COND_INVALID)
9886 return SDValue();
9887
9888 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
9889 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
9890 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9891 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
9892}
9893
Evan Cheng370e5342008-12-03 08:38:43 +00009894// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00009895static bool isX86LogicalCmp(SDValue Op) {
9896 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009897 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
9898 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +00009899 return true;
9900 if (Op.getResNo() == 1 &&
9901 (Opc == X86ISD::ADD ||
9902 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00009903 Opc == X86ISD::ADC ||
9904 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00009905 Opc == X86ISD::SMUL ||
9906 Opc == X86ISD::UMUL ||
9907 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00009908 Opc == X86ISD::DEC ||
9909 Opc == X86ISD::OR ||
9910 Opc == X86ISD::XOR ||
9911 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00009912 return true;
9913
Chris Lattner9637d5b2010-12-05 07:49:54 +00009914 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
9915 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009916
Dan Gohman076aee32009-03-04 19:44:21 +00009917 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00009918}
9919
Chris Lattnera2b56002010-12-05 01:23:24 +00009920static bool isZero(SDValue V) {
9921 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9922 return C && C->isNullValue();
9923}
9924
Evan Chengb64dd5f2012-08-07 22:21:00 +00009925static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
9926 if (V.getOpcode() != ISD::TRUNCATE)
9927 return false;
9928
9929 SDValue VOp0 = V.getOperand(0);
9930 unsigned InBits = VOp0.getValueSizeInBits();
9931 unsigned Bits = V.getValueSizeInBits();
9932 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
9933}
9934
Dan Gohmand858e902010-04-17 15:26:15 +00009935SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00009936 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00009937 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00009938 SDValue Op1 = Op.getOperand(1);
9939 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009940 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +00009941 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00009942 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00009943
Benjamin Kramer75311b72013-08-04 12:05:16 +00009944 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
9945 // are available. Otherwise fp cmovs get lowered into a less efficient branch
9946 // sequence later on.
9947 if (Cond.getOpcode() == ISD::SETCC &&
9948 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
9949 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
9950 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
9951 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
9952 int SSECC = translateX86FSETCC(
9953 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
9954
9955 if (SSECC != 8) {
9956 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
9957 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
9958 DAG.getConstant(SSECC, MVT::i8));
9959 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
9960 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
9961 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
9962 }
9963 }
9964
Dan Gohman1a492952009-10-20 16:22:37 +00009965 if (Cond.getOpcode() == ISD::SETCC) {
9966 SDValue NewCond = LowerSETCC(Cond, DAG);
9967 if (NewCond.getNode())
9968 Cond = NewCond;
9969 }
Evan Cheng734503b2006-09-11 02:19:56 +00009970
Chris Lattnera2b56002010-12-05 01:23:24 +00009971 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00009972 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00009973 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00009974 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009975 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00009976 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
9977 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009978 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009979
Chris Lattnera2b56002010-12-05 01:23:24 +00009980 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009981
9982 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00009983 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
9984 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00009985
9986 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +00009987 // Apply further optimizations for special cases
9988 // (select (x != 0), -1, 0) -> neg & sbb
9989 // (select (x == 0), 0, -1) -> neg & sbb
9990 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +00009991 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +00009992 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
9993 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +00009994 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
9995 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +00009996 CmpOp0);
9997 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9998 DAG.getConstant(X86::COND_B, MVT::i8),
9999 SDValue(Neg.getNode(), 1));
10000 return Res;
10001 }
10002
Chris Lattnera2b56002010-12-05 01:23:24 +000010003 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10004 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010005 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010006
Chris Lattner96908b12010-12-05 02:00:51 +000010007 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010008 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10009 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010010
Chris Lattner96908b12010-12-05 02:00:51 +000010011 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10012 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010013
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010014 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010015 if (N2C == 0 || !N2C->isNullValue())
10016 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10017 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010018 }
10019 }
10020
Chris Lattnera2b56002010-12-05 01:23:24 +000010021 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010022 if (Cond.getOpcode() == ISD::AND &&
10023 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10024 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010025 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010026 Cond = Cond.getOperand(0);
10027 }
10028
Evan Cheng3f41d662007-10-08 22:16:29 +000010029 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10030 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010031 unsigned CondOpcode = Cond.getOpcode();
10032 if (CondOpcode == X86ISD::SETCC ||
10033 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010034 CC = Cond.getOperand(0);
10035
Dan Gohman475871a2008-07-27 21:46:04 +000010036 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010037 unsigned Opc = Cmp.getOpcode();
Craig Toppera080daf2013-01-20 21:50:27 +000010038 MVT VT = Op.getValueType().getSimpleVT();
Scott Michelfdc40a02009-02-17 22:15:04 +000010039
Evan Cheng3f41d662007-10-08 22:16:29 +000010040 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010041 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010042 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010043 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010044
Chris Lattnerd1980a52009-03-12 06:52:53 +000010045 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10046 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010047 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010048 addTest = false;
10049 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010050 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10051 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10052 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10053 Cond.getOperand(0).getValueType() != MVT::i8)) {
10054 SDValue LHS = Cond.getOperand(0);
10055 SDValue RHS = Cond.getOperand(1);
10056 unsigned X86Opcode;
10057 unsigned X86Cond;
10058 SDVTList VTs;
10059 switch (CondOpcode) {
10060 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10061 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10062 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10063 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10064 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10065 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10066 default: llvm_unreachable("unexpected overflowing operator");
10067 }
10068 if (CondOpcode == ISD::UMULO)
10069 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10070 MVT::i32);
10071 else
10072 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10073
10074 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10075
10076 if (CondOpcode == ISD::UMULO)
10077 Cond = X86Op.getValue(2);
10078 else
10079 Cond = X86Op.getValue(1);
10080
10081 CC = DAG.getConstant(X86Cond, MVT::i8);
10082 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010083 }
10084
10085 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010086 // Look pass the truncate if the high bits are known zero.
10087 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10088 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010089
10090 // We know the result of AND is compared against zero. Try to match
10091 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010092 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010093 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010094 if (NewSetCC.getNode()) {
10095 CC = NewSetCC.getOperand(0);
10096 Cond = NewSetCC.getOperand(1);
10097 addTest = false;
10098 }
10099 }
10100 }
10101
10102 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010103 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010104 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010105 }
10106
Benjamin Kramere915ff32010-12-22 23:09:28 +000010107 // a < b ? -1 : 0 -> RES = ~setcc_carry
10108 // a < b ? 0 : -1 -> RES = setcc_carry
10109 // a >= b ? -1 : 0 -> RES = setcc_carry
10110 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010111 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010112 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010113 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10114
10115 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10116 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10117 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10118 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10119 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10120 return DAG.getNOT(DL, Res, Res.getValueType());
10121 return Res;
10122 }
10123 }
10124
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010125 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10126 // widen the cmov and push the truncate through. This avoids introducing a new
10127 // branch during isel and doesn't add any extensions.
10128 if (Op.getValueType() == MVT::i8 &&
10129 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10130 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10131 if (T1.getValueType() == T2.getValueType() &&
10132 // Blacklist CopyFromReg to avoid partial register stalls.
10133 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10134 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010135 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010136 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10137 }
10138 }
10139
Evan Cheng0488db92007-09-25 01:57:46 +000010140 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10141 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010142 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010143 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010144 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010145}
10146
Nadav Rotem1a330af2012-12-27 22:47:16 +000010147SDValue X86TargetLowering::LowerSIGN_EXTEND(SDValue Op,
10148 SelectionDAG &DAG) const {
Craig Toppera080daf2013-01-20 21:50:27 +000010149 MVT VT = Op->getValueType(0).getSimpleVT();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010150 SDValue In = Op->getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +000010151 MVT InVT = In.getValueType().getSimpleVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010152 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010153
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010154 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10155 (VT != MVT::v8i32 || InVT != MVT::v8i16))
10156 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010157
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010158 if (Subtarget->hasInt256())
10159 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010160
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010161 // Optimize vectors in AVX mode
10162 // Sign extend v8i16 to v8i32 and
10163 // v4i32 to v4i64
10164 //
10165 // Divide input vector into two parts
10166 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10167 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10168 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010169
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010170 unsigned NumElems = InVT.getVectorNumElements();
10171 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010172
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010173 SmallVector<int,8> ShufMask1(NumElems, -1);
10174 for (unsigned i = 0; i != NumElems/2; ++i)
10175 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010176
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010177 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010178
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010179 SmallVector<int,8> ShufMask2(NumElems, -1);
10180 for (unsigned i = 0; i != NumElems/2; ++i)
10181 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010182
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010183 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010184
Craig Toppera080daf2013-01-20 21:50:27 +000010185 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010186 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010187
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010188 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10189 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010190
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010191 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010192}
10193
Evan Cheng370e5342008-12-03 08:38:43 +000010194// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10195// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10196// from the AND / OR.
10197static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10198 Opc = Op.getOpcode();
10199 if (Opc != ISD::OR && Opc != ISD::AND)
10200 return false;
10201 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10202 Op.getOperand(0).hasOneUse() &&
10203 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10204 Op.getOperand(1).hasOneUse());
10205}
10206
Evan Cheng961d6d42009-02-02 08:19:07 +000010207// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10208// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010209static bool isXor1OfSetCC(SDValue Op) {
10210 if (Op.getOpcode() != ISD::XOR)
10211 return false;
10212 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10213 if (N1C && N1C->getAPIntValue() == 1) {
10214 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10215 Op.getOperand(0).hasOneUse();
10216 }
10217 return false;
10218}
10219
Dan Gohmand858e902010-04-17 15:26:15 +000010220SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010221 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010222 SDValue Chain = Op.getOperand(0);
10223 SDValue Cond = Op.getOperand(1);
10224 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010225 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010226 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010227 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010228
Dan Gohman1a492952009-10-20 16:22:37 +000010229 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010230 // Check for setcc([su]{add,sub,mul}o == 0).
10231 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10232 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10233 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10234 Cond.getOperand(0).getResNo() == 1 &&
10235 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10236 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10237 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10238 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10239 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10240 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10241 Inverted = true;
10242 Cond = Cond.getOperand(0);
10243 } else {
10244 SDValue NewCond = LowerSETCC(Cond, DAG);
10245 if (NewCond.getNode())
10246 Cond = NewCond;
10247 }
Dan Gohman1a492952009-10-20 16:22:37 +000010248 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010249#if 0
10250 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010251 else if (Cond.getOpcode() == X86ISD::ADD ||
10252 Cond.getOpcode() == X86ISD::SUB ||
10253 Cond.getOpcode() == X86ISD::SMUL ||
10254 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010255 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010256#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010257
Evan Chengad9c0a32009-12-15 00:53:42 +000010258 // Look pass (and (setcc_carry (cmp ...)), 1).
10259 if (Cond.getOpcode() == ISD::AND &&
10260 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10261 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010262 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010263 Cond = Cond.getOperand(0);
10264 }
10265
Evan Cheng3f41d662007-10-08 22:16:29 +000010266 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10267 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010268 unsigned CondOpcode = Cond.getOpcode();
10269 if (CondOpcode == X86ISD::SETCC ||
10270 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010271 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010272
Dan Gohman475871a2008-07-27 21:46:04 +000010273 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010274 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010275 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010276 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010277 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010278 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010279 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010280 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010281 default: break;
10282 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010283 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010284 // These can only come from an arithmetic instruction with overflow,
10285 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010286 Cond = Cond.getNode()->getOperand(1);
10287 addTest = false;
10288 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010289 }
Evan Cheng0488db92007-09-25 01:57:46 +000010290 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010291 }
10292 CondOpcode = Cond.getOpcode();
10293 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10294 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10295 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10296 Cond.getOperand(0).getValueType() != MVT::i8)) {
10297 SDValue LHS = Cond.getOperand(0);
10298 SDValue RHS = Cond.getOperand(1);
10299 unsigned X86Opcode;
10300 unsigned X86Cond;
10301 SDVTList VTs;
10302 switch (CondOpcode) {
10303 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10304 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10305 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10306 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10307 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10308 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10309 default: llvm_unreachable("unexpected overflowing operator");
10310 }
10311 if (Inverted)
10312 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10313 if (CondOpcode == ISD::UMULO)
10314 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10315 MVT::i32);
10316 else
10317 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10318
10319 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10320
10321 if (CondOpcode == ISD::UMULO)
10322 Cond = X86Op.getValue(2);
10323 else
10324 Cond = X86Op.getValue(1);
10325
10326 CC = DAG.getConstant(X86Cond, MVT::i8);
10327 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010328 } else {
10329 unsigned CondOpc;
10330 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10331 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010332 if (CondOpc == ISD::OR) {
10333 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10334 // two branches instead of an explicit OR instruction with a
10335 // separate test.
10336 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010337 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010338 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010339 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010340 Chain, Dest, CC, Cmp);
10341 CC = Cond.getOperand(1).getOperand(0);
10342 Cond = Cmp;
10343 addTest = false;
10344 }
10345 } else { // ISD::AND
10346 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10347 // two branches instead of an explicit AND instruction with a
10348 // separate test. However, we only do this if this block doesn't
10349 // have a fall-through edge, because this requires an explicit
10350 // jmp when the condition is false.
10351 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010352 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010353 Op.getNode()->hasOneUse()) {
10354 X86::CondCode CCode =
10355 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10356 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010357 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010358 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010359 // Look for an unconditional branch following this conditional branch.
10360 // We need this because we need to reverse the successors in order
10361 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010362 if (User->getOpcode() == ISD::BR) {
10363 SDValue FalseBB = User->getOperand(1);
10364 SDNode *NewBR =
10365 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010366 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010367 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010368 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010369
Dale Johannesene4d209d2009-02-03 20:21:25 +000010370 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010371 Chain, Dest, CC, Cmp);
10372 X86::CondCode CCode =
10373 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10374 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010375 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010376 Cond = Cmp;
10377 addTest = false;
10378 }
10379 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010380 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010381 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10382 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10383 // It should be transformed during dag combiner except when the condition
10384 // is set by a arithmetics with overflow node.
10385 X86::CondCode CCode =
10386 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10387 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010388 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010389 Cond = Cond.getOperand(0).getOperand(1);
10390 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010391 } else if (Cond.getOpcode() == ISD::SETCC &&
10392 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10393 // For FCMP_OEQ, we can emit
10394 // two branches instead of an explicit AND instruction with a
10395 // separate test. However, we only do this if this block doesn't
10396 // have a fall-through edge, because this requires an explicit
10397 // jmp when the condition is false.
10398 if (Op.getNode()->hasOneUse()) {
10399 SDNode *User = *Op.getNode()->use_begin();
10400 // Look for an unconditional branch following this conditional branch.
10401 // We need this because we need to reverse the successors in order
10402 // to implement FCMP_OEQ.
10403 if (User->getOpcode() == ISD::BR) {
10404 SDValue FalseBB = User->getOperand(1);
10405 SDNode *NewBR =
10406 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10407 assert(NewBR == User);
10408 (void)NewBR;
10409 Dest = FalseBB;
10410
10411 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10412 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010413 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010414 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10415 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10416 Chain, Dest, CC, Cmp);
10417 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10418 Cond = Cmp;
10419 addTest = false;
10420 }
10421 }
10422 } else if (Cond.getOpcode() == ISD::SETCC &&
10423 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10424 // For FCMP_UNE, we can emit
10425 // two branches instead of an explicit AND instruction with a
10426 // separate test. However, we only do this if this block doesn't
10427 // have a fall-through edge, because this requires an explicit
10428 // jmp when the condition is false.
10429 if (Op.getNode()->hasOneUse()) {
10430 SDNode *User = *Op.getNode()->use_begin();
10431 // Look for an unconditional branch following this conditional branch.
10432 // We need this because we need to reverse the successors in order
10433 // to implement FCMP_UNE.
10434 if (User->getOpcode() == ISD::BR) {
10435 SDValue FalseBB = User->getOperand(1);
10436 SDNode *NewBR =
10437 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10438 assert(NewBR == User);
10439 (void)NewBR;
10440
10441 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10442 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010443 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010444 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10445 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10446 Chain, Dest, CC, Cmp);
10447 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10448 Cond = Cmp;
10449 addTest = false;
10450 Dest = FalseBB;
10451 }
10452 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010453 }
Evan Cheng0488db92007-09-25 01:57:46 +000010454 }
10455
10456 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010457 // Look pass the truncate if the high bits are known zero.
10458 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10459 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010460
10461 // We know the result of AND is compared against zero. Try to match
10462 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010463 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010464 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10465 if (NewSetCC.getNode()) {
10466 CC = NewSetCC.getOperand(0);
10467 Cond = NewSetCC.getOperand(1);
10468 addTest = false;
10469 }
10470 }
10471 }
10472
10473 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010474 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010475 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010476 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010477 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010478 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010479 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010480}
10481
Anton Korobeynikove060b532007-04-17 19:34:00 +000010482// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10483// Calls to _alloca is needed to probe the stack when allocating more than 4k
10484// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10485// that the guard pages used by the OS virtual memory manager are allocated in
10486// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010487SDValue
10488X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010489 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010490 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010491 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010492 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010493 "are being used");
10494 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010495 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010496
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010497 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010498 SDValue Chain = Op.getOperand(0);
10499 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010500 // FIXME: Ensure alignment here
10501
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010502 bool Is64Bit = Subtarget->is64Bit();
10503 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010504
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010505 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010506 MachineFunction &MF = DAG.getMachineFunction();
10507 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010508
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010509 if (Is64Bit) {
10510 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010511 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010512 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010513
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010514 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010515 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010516 if (I->hasNestAttr())
10517 report_fatal_error("Cannot use segmented stacks with functions that "
10518 "have nested arguments.");
10519 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010520
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010521 const TargetRegisterClass *AddrRegClass =
10522 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10523 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10524 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10525 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10526 DAG.getRegister(Vreg, SPTy));
10527 SDValue Ops1[2] = { Value, Chain };
10528 return DAG.getMergeValues(Ops1, 2, dl);
10529 } else {
10530 SDValue Flag;
10531 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010532
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010533 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10534 Flag = Chain.getValue(1);
10535 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010536
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010537 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10538 Flag = Chain.getValue(1);
10539
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010540 const X86RegisterInfo *RegInfo =
10541 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoc5c970e2012-10-31 04:14:09 +000010542 Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10543 SPTy).getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010544
10545 SDValue Ops1[2] = { Chain.getValue(0), Chain };
10546 return DAG.getMergeValues(Ops1, 2, dl);
10547 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010548}
10549
Dan Gohmand858e902010-04-17 15:26:15 +000010550SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010551 MachineFunction &MF = DAG.getMachineFunction();
10552 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10553
Dan Gohman69de1932008-02-06 22:27:42 +000010554 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010555 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010556
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010557 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010558 // vastart just stores the address of the VarArgsFrameIndex slot into the
10559 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010560 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10561 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010562 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10563 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010564 }
10565
10566 // __va_list_tag:
10567 // gp_offset (0 - 6 * 8)
10568 // fp_offset (48 - 48 + 8 * 16)
10569 // overflow_arg_area (point to parameters coming in memory).
10570 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010571 SmallVector<SDValue, 8> MemOps;
10572 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010573 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010574 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010575 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10576 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010577 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010578 MemOps.push_back(Store);
10579
10580 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010581 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010582 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010583 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010584 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10585 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010586 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010587 MemOps.push_back(Store);
10588
10589 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010590 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010591 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010592 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10593 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010594 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10595 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010596 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010597 MemOps.push_back(Store);
10598
10599 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010600 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010601 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010602 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10603 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010604 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10605 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010606 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010607 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010608 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010609}
10610
Dan Gohmand858e902010-04-17 15:26:15 +000010611SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010612 assert(Subtarget->is64Bit() &&
10613 "LowerVAARG only handles 64-bit va_arg!");
10614 assert((Subtarget->isTargetLinux() ||
10615 Subtarget->isTargetDarwin()) &&
10616 "Unhandled target in LowerVAARG");
10617 assert(Op.getNode()->getNumOperands() == 4);
10618 SDValue Chain = Op.getOperand(0);
10619 SDValue SrcPtr = Op.getOperand(1);
10620 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10621 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010622 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010623
Dan Gohman320afb82010-10-12 18:00:49 +000010624 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010625 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010626 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010627 uint8_t ArgMode;
10628
10629 // Decide which area this value should be read from.
10630 // TODO: Implement the AMD64 ABI in its entirety. This simple
10631 // selection mechanism works only for the basic types.
10632 if (ArgVT == MVT::f80) {
10633 llvm_unreachable("va_arg for f80 not yet implemented");
10634 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10635 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10636 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10637 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10638 } else {
10639 llvm_unreachable("Unhandled argument type in LowerVAARG");
10640 }
10641
10642 if (ArgMode == 2) {
10643 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010644 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010645 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010646 .getFunction()->getAttributes()
10647 .hasAttribute(AttributeSet::FunctionIndex,
10648 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010649 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010650 }
10651
10652 // Insert VAARG_64 node into the DAG
10653 // VAARG_64 returns two values: Variable Argument Address, Chain
10654 SmallVector<SDValue, 11> InstOps;
10655 InstOps.push_back(Chain);
10656 InstOps.push_back(SrcPtr);
10657 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10658 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10659 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10660 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10661 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10662 VTs, &InstOps[0], InstOps.size(),
10663 MVT::i64,
10664 MachinePointerInfo(SV),
10665 /*Align=*/0,
10666 /*Volatile=*/false,
10667 /*ReadMem=*/true,
10668 /*WriteMem=*/true);
10669 Chain = VAARG.getValue(1);
10670
10671 // Load the next argument and return it
10672 return DAG.getLoad(ArgVT, dl,
10673 Chain,
10674 VAARG,
10675 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010676 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010677}
10678
Craig Topper55b24052012-09-11 06:15:32 +000010679static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10680 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010681 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010682 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010683 SDValue Chain = Op.getOperand(0);
10684 SDValue DstPtr = Op.getOperand(1);
10685 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010686 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10687 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010688 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010689
Chris Lattnere72f2022010-09-21 05:40:29 +000010690 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010691 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010692 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010693 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010694}
10695
Craig Topperff3139f2013-02-19 07:43:59 +000010696// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010697// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010698static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010699 SDValue SrcOp, SDValue ShAmt,
10700 SelectionDAG &DAG) {
10701 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10702
10703 if (isa<ConstantSDNode>(ShAmt)) {
Nadav Rotemd896e242012-07-15 20:27:43 +000010704 // Constant may be a TargetConstant. Use a regular constant.
10705 uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Craig Topper80e46362012-01-23 06:16:53 +000010706 switch (Opc) {
10707 default: llvm_unreachable("Unknown target vector shift node");
10708 case X86ISD::VSHLI:
10709 case X86ISD::VSRLI:
10710 case X86ISD::VSRAI:
Nadav Rotemd896e242012-07-15 20:27:43 +000010711 return DAG.getNode(Opc, dl, VT, SrcOp,
10712 DAG.getConstant(ShiftAmt, MVT::i32));
Craig Topper80e46362012-01-23 06:16:53 +000010713 }
10714 }
10715
10716 // Change opcode to non-immediate version
10717 switch (Opc) {
10718 default: llvm_unreachable("Unknown target vector shift node");
10719 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10720 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10721 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10722 }
10723
10724 // Need to build a vector containing shift amount
10725 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10726 SDValue ShOps[4];
10727 ShOps[0] = ShAmt;
10728 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000010729 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000010730 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000010731
10732 // The return type has to be a 128-bit type with the same element
10733 // type as the input type.
10734 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10735 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10736
10737 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000010738 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10739}
10740
Craig Topper55b24052012-09-11 06:15:32 +000010741static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000010742 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010743 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000010744 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000010745 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000010746 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000010747 case Intrinsic::x86_sse_comieq_ss:
10748 case Intrinsic::x86_sse_comilt_ss:
10749 case Intrinsic::x86_sse_comile_ss:
10750 case Intrinsic::x86_sse_comigt_ss:
10751 case Intrinsic::x86_sse_comige_ss:
10752 case Intrinsic::x86_sse_comineq_ss:
10753 case Intrinsic::x86_sse_ucomieq_ss:
10754 case Intrinsic::x86_sse_ucomilt_ss:
10755 case Intrinsic::x86_sse_ucomile_ss:
10756 case Intrinsic::x86_sse_ucomigt_ss:
10757 case Intrinsic::x86_sse_ucomige_ss:
10758 case Intrinsic::x86_sse_ucomineq_ss:
10759 case Intrinsic::x86_sse2_comieq_sd:
10760 case Intrinsic::x86_sse2_comilt_sd:
10761 case Intrinsic::x86_sse2_comile_sd:
10762 case Intrinsic::x86_sse2_comigt_sd:
10763 case Intrinsic::x86_sse2_comige_sd:
10764 case Intrinsic::x86_sse2_comineq_sd:
10765 case Intrinsic::x86_sse2_ucomieq_sd:
10766 case Intrinsic::x86_sse2_ucomilt_sd:
10767 case Intrinsic::x86_sse2_ucomile_sd:
10768 case Intrinsic::x86_sse2_ucomigt_sd:
10769 case Intrinsic::x86_sse2_ucomige_sd:
10770 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000010771 unsigned Opc;
10772 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000010773 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000010774 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010775 case Intrinsic::x86_sse_comieq_ss:
10776 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010777 Opc = X86ISD::COMI;
10778 CC = ISD::SETEQ;
10779 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000010780 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010781 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010782 Opc = X86ISD::COMI;
10783 CC = ISD::SETLT;
10784 break;
10785 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010786 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010787 Opc = X86ISD::COMI;
10788 CC = ISD::SETLE;
10789 break;
10790 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010791 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010792 Opc = X86ISD::COMI;
10793 CC = ISD::SETGT;
10794 break;
10795 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010796 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010797 Opc = X86ISD::COMI;
10798 CC = ISD::SETGE;
10799 break;
10800 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010801 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010802 Opc = X86ISD::COMI;
10803 CC = ISD::SETNE;
10804 break;
10805 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010806 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010807 Opc = X86ISD::UCOMI;
10808 CC = ISD::SETEQ;
10809 break;
10810 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010811 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010812 Opc = X86ISD::UCOMI;
10813 CC = ISD::SETLT;
10814 break;
10815 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010816 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010817 Opc = X86ISD::UCOMI;
10818 CC = ISD::SETLE;
10819 break;
10820 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010821 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010822 Opc = X86ISD::UCOMI;
10823 CC = ISD::SETGT;
10824 break;
10825 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010826 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010827 Opc = X86ISD::UCOMI;
10828 CC = ISD::SETGE;
10829 break;
10830 case Intrinsic::x86_sse_ucomineq_ss:
10831 case Intrinsic::x86_sse2_ucomineq_sd:
10832 Opc = X86ISD::UCOMI;
10833 CC = ISD::SETNE;
10834 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000010835 }
Evan Cheng734503b2006-09-11 02:19:56 +000010836
Dan Gohman475871a2008-07-27 21:46:04 +000010837 SDValue LHS = Op.getOperand(1);
10838 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000010839 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000010840 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010841 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
10842 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10843 DAG.getConstant(X86CC, MVT::i8), Cond);
10844 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000010845 }
Craig Topper6d688152012-08-14 07:43:25 +000010846
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010847 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000010848 case Intrinsic::x86_sse2_pmulu_dq:
10849 case Intrinsic::x86_avx2_pmulu_dq:
10850 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
10851 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010852
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000010853 // SSE2/AVX2 sub with unsigned saturation intrinsics
10854 case Intrinsic::x86_sse2_psubus_b:
10855 case Intrinsic::x86_sse2_psubus_w:
10856 case Intrinsic::x86_avx2_psubus_b:
10857 case Intrinsic::x86_avx2_psubus_w:
10858 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
10859 Op.getOperand(1), Op.getOperand(2));
10860
Craig Topper6d688152012-08-14 07:43:25 +000010861 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010862 case Intrinsic::x86_sse3_hadd_ps:
10863 case Intrinsic::x86_sse3_hadd_pd:
10864 case Intrinsic::x86_avx_hadd_ps_256:
10865 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010866 case Intrinsic::x86_sse3_hsub_ps:
10867 case Intrinsic::x86_sse3_hsub_pd:
10868 case Intrinsic::x86_avx_hsub_ps_256:
10869 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000010870 case Intrinsic::x86_ssse3_phadd_w_128:
10871 case Intrinsic::x86_ssse3_phadd_d_128:
10872 case Intrinsic::x86_avx2_phadd_w:
10873 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000010874 case Intrinsic::x86_ssse3_phsub_w_128:
10875 case Intrinsic::x86_ssse3_phsub_d_128:
10876 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000010877 case Intrinsic::x86_avx2_phsub_d: {
10878 unsigned Opcode;
10879 switch (IntNo) {
10880 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10881 case Intrinsic::x86_sse3_hadd_ps:
10882 case Intrinsic::x86_sse3_hadd_pd:
10883 case Intrinsic::x86_avx_hadd_ps_256:
10884 case Intrinsic::x86_avx_hadd_pd_256:
10885 Opcode = X86ISD::FHADD;
10886 break;
10887 case Intrinsic::x86_sse3_hsub_ps:
10888 case Intrinsic::x86_sse3_hsub_pd:
10889 case Intrinsic::x86_avx_hsub_ps_256:
10890 case Intrinsic::x86_avx_hsub_pd_256:
10891 Opcode = X86ISD::FHSUB;
10892 break;
10893 case Intrinsic::x86_ssse3_phadd_w_128:
10894 case Intrinsic::x86_ssse3_phadd_d_128:
10895 case Intrinsic::x86_avx2_phadd_w:
10896 case Intrinsic::x86_avx2_phadd_d:
10897 Opcode = X86ISD::HADD;
10898 break;
10899 case Intrinsic::x86_ssse3_phsub_w_128:
10900 case Intrinsic::x86_ssse3_phsub_d_128:
10901 case Intrinsic::x86_avx2_phsub_w:
10902 case Intrinsic::x86_avx2_phsub_d:
10903 Opcode = X86ISD::HSUB;
10904 break;
10905 }
10906 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000010907 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010908 }
10909
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010910 // SSE2/SSE41/AVX2 integer max/min intrinsics.
10911 case Intrinsic::x86_sse2_pmaxu_b:
10912 case Intrinsic::x86_sse41_pmaxuw:
10913 case Intrinsic::x86_sse41_pmaxud:
10914 case Intrinsic::x86_avx2_pmaxu_b:
10915 case Intrinsic::x86_avx2_pmaxu_w:
10916 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010917 case Intrinsic::x86_sse2_pminu_b:
10918 case Intrinsic::x86_sse41_pminuw:
10919 case Intrinsic::x86_sse41_pminud:
10920 case Intrinsic::x86_avx2_pminu_b:
10921 case Intrinsic::x86_avx2_pminu_w:
10922 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010923 case Intrinsic::x86_sse41_pmaxsb:
10924 case Intrinsic::x86_sse2_pmaxs_w:
10925 case Intrinsic::x86_sse41_pmaxsd:
10926 case Intrinsic::x86_avx2_pmaxs_b:
10927 case Intrinsic::x86_avx2_pmaxs_w:
10928 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010929 case Intrinsic::x86_sse41_pminsb:
10930 case Intrinsic::x86_sse2_pmins_w:
10931 case Intrinsic::x86_sse41_pminsd:
10932 case Intrinsic::x86_avx2_pmins_b:
10933 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000010934 case Intrinsic::x86_avx2_pmins_d: {
10935 unsigned Opcode;
10936 switch (IntNo) {
10937 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10938 case Intrinsic::x86_sse2_pmaxu_b:
10939 case Intrinsic::x86_sse41_pmaxuw:
10940 case Intrinsic::x86_sse41_pmaxud:
10941 case Intrinsic::x86_avx2_pmaxu_b:
10942 case Intrinsic::x86_avx2_pmaxu_w:
10943 case Intrinsic::x86_avx2_pmaxu_d:
10944 Opcode = X86ISD::UMAX;
10945 break;
10946 case Intrinsic::x86_sse2_pminu_b:
10947 case Intrinsic::x86_sse41_pminuw:
10948 case Intrinsic::x86_sse41_pminud:
10949 case Intrinsic::x86_avx2_pminu_b:
10950 case Intrinsic::x86_avx2_pminu_w:
10951 case Intrinsic::x86_avx2_pminu_d:
10952 Opcode = X86ISD::UMIN;
10953 break;
10954 case Intrinsic::x86_sse41_pmaxsb:
10955 case Intrinsic::x86_sse2_pmaxs_w:
10956 case Intrinsic::x86_sse41_pmaxsd:
10957 case Intrinsic::x86_avx2_pmaxs_b:
10958 case Intrinsic::x86_avx2_pmaxs_w:
10959 case Intrinsic::x86_avx2_pmaxs_d:
10960 Opcode = X86ISD::SMAX;
10961 break;
10962 case Intrinsic::x86_sse41_pminsb:
10963 case Intrinsic::x86_sse2_pmins_w:
10964 case Intrinsic::x86_sse41_pminsd:
10965 case Intrinsic::x86_avx2_pmins_b:
10966 case Intrinsic::x86_avx2_pmins_w:
10967 case Intrinsic::x86_avx2_pmins_d:
10968 Opcode = X86ISD::SMIN;
10969 break;
10970 }
10971 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010972 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000010973 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010974
Craig Topper6d183e42012-12-29 16:44:25 +000010975 // SSE/SSE2/AVX floating point max/min intrinsics.
10976 case Intrinsic::x86_sse_max_ps:
10977 case Intrinsic::x86_sse2_max_pd:
10978 case Intrinsic::x86_avx_max_ps_256:
10979 case Intrinsic::x86_avx_max_pd_256:
10980 case Intrinsic::x86_sse_min_ps:
10981 case Intrinsic::x86_sse2_min_pd:
10982 case Intrinsic::x86_avx_min_ps_256:
10983 case Intrinsic::x86_avx_min_pd_256: {
10984 unsigned Opcode;
10985 switch (IntNo) {
10986 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10987 case Intrinsic::x86_sse_max_ps:
10988 case Intrinsic::x86_sse2_max_pd:
10989 case Intrinsic::x86_avx_max_ps_256:
10990 case Intrinsic::x86_avx_max_pd_256:
10991 Opcode = X86ISD::FMAX;
10992 break;
10993 case Intrinsic::x86_sse_min_ps:
10994 case Intrinsic::x86_sse2_min_pd:
10995 case Intrinsic::x86_avx_min_ps_256:
10996 case Intrinsic::x86_avx_min_pd_256:
10997 Opcode = X86ISD::FMIN;
10998 break;
10999 }
11000 return DAG.getNode(Opcode, dl, Op.getValueType(),
11001 Op.getOperand(1), Op.getOperand(2));
11002 }
11003
Craig Topper6d688152012-08-14 07:43:25 +000011004 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011005 case Intrinsic::x86_avx2_psllv_d:
11006 case Intrinsic::x86_avx2_psllv_q:
11007 case Intrinsic::x86_avx2_psllv_d_256:
11008 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011009 case Intrinsic::x86_avx2_psrlv_d:
11010 case Intrinsic::x86_avx2_psrlv_q:
11011 case Intrinsic::x86_avx2_psrlv_d_256:
11012 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011013 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011014 case Intrinsic::x86_avx2_psrav_d_256: {
11015 unsigned Opcode;
11016 switch (IntNo) {
11017 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11018 case Intrinsic::x86_avx2_psllv_d:
11019 case Intrinsic::x86_avx2_psllv_q:
11020 case Intrinsic::x86_avx2_psllv_d_256:
11021 case Intrinsic::x86_avx2_psllv_q_256:
11022 Opcode = ISD::SHL;
11023 break;
11024 case Intrinsic::x86_avx2_psrlv_d:
11025 case Intrinsic::x86_avx2_psrlv_q:
11026 case Intrinsic::x86_avx2_psrlv_d_256:
11027 case Intrinsic::x86_avx2_psrlv_q_256:
11028 Opcode = ISD::SRL;
11029 break;
11030 case Intrinsic::x86_avx2_psrav_d:
11031 case Intrinsic::x86_avx2_psrav_d_256:
11032 Opcode = ISD::SRA;
11033 break;
11034 }
11035 return DAG.getNode(Opcode, dl, Op.getValueType(),
11036 Op.getOperand(1), Op.getOperand(2));
11037 }
11038
Craig Topper969ba282012-01-25 06:43:11 +000011039 case Intrinsic::x86_ssse3_pshuf_b_128:
11040 case Intrinsic::x86_avx2_pshuf_b:
11041 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11042 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011043
Craig Topper969ba282012-01-25 06:43:11 +000011044 case Intrinsic::x86_ssse3_psign_b_128:
11045 case Intrinsic::x86_ssse3_psign_w_128:
11046 case Intrinsic::x86_ssse3_psign_d_128:
11047 case Intrinsic::x86_avx2_psign_b:
11048 case Intrinsic::x86_avx2_psign_w:
11049 case Intrinsic::x86_avx2_psign_d:
11050 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11051 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011052
Craig Toppere566cd02012-01-26 07:18:03 +000011053 case Intrinsic::x86_sse41_insertps:
11054 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11055 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011056
Craig Toppere566cd02012-01-26 07:18:03 +000011057 case Intrinsic::x86_avx_vperm2f128_ps_256:
11058 case Intrinsic::x86_avx_vperm2f128_pd_256:
11059 case Intrinsic::x86_avx_vperm2f128_si_256:
11060 case Intrinsic::x86_avx2_vperm2i128:
11061 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11062 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011063
Craig Topperffa6c402012-04-16 07:13:00 +000011064 case Intrinsic::x86_avx2_permd:
11065 case Intrinsic::x86_avx2_permps:
11066 // Operands intentionally swapped. Mask is last operand to intrinsic,
11067 // but second operand for node/intruction.
11068 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11069 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011070
Craig Topper22d8f0d2012-12-29 18:18:20 +000011071 case Intrinsic::x86_sse_sqrt_ps:
11072 case Intrinsic::x86_sse2_sqrt_pd:
11073 case Intrinsic::x86_avx_sqrt_ps_256:
11074 case Intrinsic::x86_avx_sqrt_pd_256:
11075 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11076
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011077 // ptest and testp intrinsics. The intrinsic these come from are designed to
11078 // return an integer value, not just an instruction so lower it to the ptest
11079 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011080 case Intrinsic::x86_sse41_ptestz:
11081 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011082 case Intrinsic::x86_sse41_ptestnzc:
11083 case Intrinsic::x86_avx_ptestz_256:
11084 case Intrinsic::x86_avx_ptestc_256:
11085 case Intrinsic::x86_avx_ptestnzc_256:
11086 case Intrinsic::x86_avx_vtestz_ps:
11087 case Intrinsic::x86_avx_vtestc_ps:
11088 case Intrinsic::x86_avx_vtestnzc_ps:
11089 case Intrinsic::x86_avx_vtestz_pd:
11090 case Intrinsic::x86_avx_vtestc_pd:
11091 case Intrinsic::x86_avx_vtestnzc_pd:
11092 case Intrinsic::x86_avx_vtestz_ps_256:
11093 case Intrinsic::x86_avx_vtestc_ps_256:
11094 case Intrinsic::x86_avx_vtestnzc_ps_256:
11095 case Intrinsic::x86_avx_vtestz_pd_256:
11096 case Intrinsic::x86_avx_vtestc_pd_256:
11097 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11098 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011099 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011100 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011101 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011102 case Intrinsic::x86_avx_vtestz_ps:
11103 case Intrinsic::x86_avx_vtestz_pd:
11104 case Intrinsic::x86_avx_vtestz_ps_256:
11105 case Intrinsic::x86_avx_vtestz_pd_256:
11106 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011107 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011108 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011109 // ZF = 1
11110 X86CC = X86::COND_E;
11111 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011112 case Intrinsic::x86_avx_vtestc_ps:
11113 case Intrinsic::x86_avx_vtestc_pd:
11114 case Intrinsic::x86_avx_vtestc_ps_256:
11115 case Intrinsic::x86_avx_vtestc_pd_256:
11116 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011117 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011118 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011119 // CF = 1
11120 X86CC = X86::COND_B;
11121 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011122 case Intrinsic::x86_avx_vtestnzc_ps:
11123 case Intrinsic::x86_avx_vtestnzc_pd:
11124 case Intrinsic::x86_avx_vtestnzc_ps_256:
11125 case Intrinsic::x86_avx_vtestnzc_pd_256:
11126 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011127 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011128 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011129 // ZF and CF = 0
11130 X86CC = X86::COND_A;
11131 break;
11132 }
Eric Christopherfd179292009-08-27 18:07:15 +000011133
Eric Christopher71c67532009-07-29 00:28:05 +000011134 SDValue LHS = Op.getOperand(1);
11135 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011136 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11137 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011138 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11139 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11140 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011141 }
Evan Cheng5759f972008-05-04 09:15:50 +000011142
Craig Topper80e46362012-01-23 06:16:53 +000011143 // SSE/AVX shift intrinsics
11144 case Intrinsic::x86_sse2_psll_w:
11145 case Intrinsic::x86_sse2_psll_d:
11146 case Intrinsic::x86_sse2_psll_q:
11147 case Intrinsic::x86_avx2_psll_w:
11148 case Intrinsic::x86_avx2_psll_d:
11149 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011150 case Intrinsic::x86_sse2_psrl_w:
11151 case Intrinsic::x86_sse2_psrl_d:
11152 case Intrinsic::x86_sse2_psrl_q:
11153 case Intrinsic::x86_avx2_psrl_w:
11154 case Intrinsic::x86_avx2_psrl_d:
11155 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011156 case Intrinsic::x86_sse2_psra_w:
11157 case Intrinsic::x86_sse2_psra_d:
11158 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011159 case Intrinsic::x86_avx2_psra_d: {
11160 unsigned Opcode;
11161 switch (IntNo) {
11162 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11163 case Intrinsic::x86_sse2_psll_w:
11164 case Intrinsic::x86_sse2_psll_d:
11165 case Intrinsic::x86_sse2_psll_q:
11166 case Intrinsic::x86_avx2_psll_w:
11167 case Intrinsic::x86_avx2_psll_d:
11168 case Intrinsic::x86_avx2_psll_q:
11169 Opcode = X86ISD::VSHL;
11170 break;
11171 case Intrinsic::x86_sse2_psrl_w:
11172 case Intrinsic::x86_sse2_psrl_d:
11173 case Intrinsic::x86_sse2_psrl_q:
11174 case Intrinsic::x86_avx2_psrl_w:
11175 case Intrinsic::x86_avx2_psrl_d:
11176 case Intrinsic::x86_avx2_psrl_q:
11177 Opcode = X86ISD::VSRL;
11178 break;
11179 case Intrinsic::x86_sse2_psra_w:
11180 case Intrinsic::x86_sse2_psra_d:
11181 case Intrinsic::x86_avx2_psra_w:
11182 case Intrinsic::x86_avx2_psra_d:
11183 Opcode = X86ISD::VSRA;
11184 break;
11185 }
11186 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011187 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011188 }
11189
11190 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011191 case Intrinsic::x86_sse2_pslli_w:
11192 case Intrinsic::x86_sse2_pslli_d:
11193 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011194 case Intrinsic::x86_avx2_pslli_w:
11195 case Intrinsic::x86_avx2_pslli_d:
11196 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011197 case Intrinsic::x86_sse2_psrli_w:
11198 case Intrinsic::x86_sse2_psrli_d:
11199 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011200 case Intrinsic::x86_avx2_psrli_w:
11201 case Intrinsic::x86_avx2_psrli_d:
11202 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011203 case Intrinsic::x86_sse2_psrai_w:
11204 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011205 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011206 case Intrinsic::x86_avx2_psrai_d: {
11207 unsigned Opcode;
11208 switch (IntNo) {
11209 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11210 case Intrinsic::x86_sse2_pslli_w:
11211 case Intrinsic::x86_sse2_pslli_d:
11212 case Intrinsic::x86_sse2_pslli_q:
11213 case Intrinsic::x86_avx2_pslli_w:
11214 case Intrinsic::x86_avx2_pslli_d:
11215 case Intrinsic::x86_avx2_pslli_q:
11216 Opcode = X86ISD::VSHLI;
11217 break;
11218 case Intrinsic::x86_sse2_psrli_w:
11219 case Intrinsic::x86_sse2_psrli_d:
11220 case Intrinsic::x86_sse2_psrli_q:
11221 case Intrinsic::x86_avx2_psrli_w:
11222 case Intrinsic::x86_avx2_psrli_d:
11223 case Intrinsic::x86_avx2_psrli_q:
11224 Opcode = X86ISD::VSRLI;
11225 break;
11226 case Intrinsic::x86_sse2_psrai_w:
11227 case Intrinsic::x86_sse2_psrai_d:
11228 case Intrinsic::x86_avx2_psrai_w:
11229 case Intrinsic::x86_avx2_psrai_d:
11230 Opcode = X86ISD::VSRAI;
11231 break;
11232 }
11233 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011234 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011235 }
11236
Craig Topper4feb6472012-08-06 06:22:36 +000011237 case Intrinsic::x86_sse42_pcmpistria128:
11238 case Intrinsic::x86_sse42_pcmpestria128:
11239 case Intrinsic::x86_sse42_pcmpistric128:
11240 case Intrinsic::x86_sse42_pcmpestric128:
11241 case Intrinsic::x86_sse42_pcmpistrio128:
11242 case Intrinsic::x86_sse42_pcmpestrio128:
11243 case Intrinsic::x86_sse42_pcmpistris128:
11244 case Intrinsic::x86_sse42_pcmpestris128:
11245 case Intrinsic::x86_sse42_pcmpistriz128:
11246 case Intrinsic::x86_sse42_pcmpestriz128: {
11247 unsigned Opcode;
11248 unsigned X86CC;
11249 switch (IntNo) {
11250 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11251 case Intrinsic::x86_sse42_pcmpistria128:
11252 Opcode = X86ISD::PCMPISTRI;
11253 X86CC = X86::COND_A;
11254 break;
11255 case Intrinsic::x86_sse42_pcmpestria128:
11256 Opcode = X86ISD::PCMPESTRI;
11257 X86CC = X86::COND_A;
11258 break;
11259 case Intrinsic::x86_sse42_pcmpistric128:
11260 Opcode = X86ISD::PCMPISTRI;
11261 X86CC = X86::COND_B;
11262 break;
11263 case Intrinsic::x86_sse42_pcmpestric128:
11264 Opcode = X86ISD::PCMPESTRI;
11265 X86CC = X86::COND_B;
11266 break;
11267 case Intrinsic::x86_sse42_pcmpistrio128:
11268 Opcode = X86ISD::PCMPISTRI;
11269 X86CC = X86::COND_O;
11270 break;
11271 case Intrinsic::x86_sse42_pcmpestrio128:
11272 Opcode = X86ISD::PCMPESTRI;
11273 X86CC = X86::COND_O;
11274 break;
11275 case Intrinsic::x86_sse42_pcmpistris128:
11276 Opcode = X86ISD::PCMPISTRI;
11277 X86CC = X86::COND_S;
11278 break;
11279 case Intrinsic::x86_sse42_pcmpestris128:
11280 Opcode = X86ISD::PCMPESTRI;
11281 X86CC = X86::COND_S;
11282 break;
11283 case Intrinsic::x86_sse42_pcmpistriz128:
11284 Opcode = X86ISD::PCMPISTRI;
11285 X86CC = X86::COND_E;
11286 break;
11287 case Intrinsic::x86_sse42_pcmpestriz128:
11288 Opcode = X86ISD::PCMPESTRI;
11289 X86CC = X86::COND_E;
11290 break;
11291 }
Craig Topper20b46b02013-08-06 04:12:40 +000011292 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011293 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11294 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11295 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11296 DAG.getConstant(X86CC, MVT::i8),
11297 SDValue(PCMP.getNode(), 1));
11298 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11299 }
Craig Topper6d688152012-08-14 07:43:25 +000011300
Craig Topper4feb6472012-08-06 06:22:36 +000011301 case Intrinsic::x86_sse42_pcmpistri128:
11302 case Intrinsic::x86_sse42_pcmpestri128: {
11303 unsigned Opcode;
11304 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11305 Opcode = X86ISD::PCMPISTRI;
11306 else
11307 Opcode = X86ISD::PCMPESTRI;
11308
Craig Topper20b46b02013-08-06 04:12:40 +000011309 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011310 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11311 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11312 }
Craig Topper0e292372012-08-24 04:03:22 +000011313 case Intrinsic::x86_fma_vfmadd_ps:
11314 case Intrinsic::x86_fma_vfmadd_pd:
11315 case Intrinsic::x86_fma_vfmsub_ps:
11316 case Intrinsic::x86_fma_vfmsub_pd:
11317 case Intrinsic::x86_fma_vfnmadd_ps:
11318 case Intrinsic::x86_fma_vfnmadd_pd:
11319 case Intrinsic::x86_fma_vfnmsub_ps:
11320 case Intrinsic::x86_fma_vfnmsub_pd:
11321 case Intrinsic::x86_fma_vfmaddsub_ps:
11322 case Intrinsic::x86_fma_vfmaddsub_pd:
11323 case Intrinsic::x86_fma_vfmsubadd_ps:
11324 case Intrinsic::x86_fma_vfmsubadd_pd:
11325 case Intrinsic::x86_fma_vfmadd_ps_256:
11326 case Intrinsic::x86_fma_vfmadd_pd_256:
11327 case Intrinsic::x86_fma_vfmsub_ps_256:
11328 case Intrinsic::x86_fma_vfmsub_pd_256:
11329 case Intrinsic::x86_fma_vfnmadd_ps_256:
11330 case Intrinsic::x86_fma_vfnmadd_pd_256:
11331 case Intrinsic::x86_fma_vfnmsub_ps_256:
11332 case Intrinsic::x86_fma_vfnmsub_pd_256:
11333 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11334 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11335 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11336 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011337 unsigned Opc;
11338 switch (IntNo) {
11339 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11340 case Intrinsic::x86_fma_vfmadd_ps:
11341 case Intrinsic::x86_fma_vfmadd_pd:
11342 case Intrinsic::x86_fma_vfmadd_ps_256:
11343 case Intrinsic::x86_fma_vfmadd_pd_256:
11344 Opc = X86ISD::FMADD;
11345 break;
11346 case Intrinsic::x86_fma_vfmsub_ps:
11347 case Intrinsic::x86_fma_vfmsub_pd:
11348 case Intrinsic::x86_fma_vfmsub_ps_256:
11349 case Intrinsic::x86_fma_vfmsub_pd_256:
11350 Opc = X86ISD::FMSUB;
11351 break;
11352 case Intrinsic::x86_fma_vfnmadd_ps:
11353 case Intrinsic::x86_fma_vfnmadd_pd:
11354 case Intrinsic::x86_fma_vfnmadd_ps_256:
11355 case Intrinsic::x86_fma_vfnmadd_pd_256:
11356 Opc = X86ISD::FNMADD;
11357 break;
11358 case Intrinsic::x86_fma_vfnmsub_ps:
11359 case Intrinsic::x86_fma_vfnmsub_pd:
11360 case Intrinsic::x86_fma_vfnmsub_ps_256:
11361 case Intrinsic::x86_fma_vfnmsub_pd_256:
11362 Opc = X86ISD::FNMSUB;
11363 break;
11364 case Intrinsic::x86_fma_vfmaddsub_ps:
11365 case Intrinsic::x86_fma_vfmaddsub_pd:
11366 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11367 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11368 Opc = X86ISD::FMADDSUB;
11369 break;
11370 case Intrinsic::x86_fma_vfmsubadd_ps:
11371 case Intrinsic::x86_fma_vfmsubadd_pd:
11372 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11373 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11374 Opc = X86ISD::FMSUBADD;
11375 break;
11376 }
11377
11378 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11379 Op.getOperand(2), Op.getOperand(3));
11380 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011381 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011382}
Evan Cheng72261582005-12-20 06:22:03 +000011383
Craig Topper55b24052012-09-11 06:15:32 +000011384static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011385 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011386 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11387 switch (IntNo) {
11388 default: return SDValue(); // Don't custom lower most intrinsics.
11389
Michael Liaoc26392a2013-03-28 23:41:26 +000011390 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011391 case Intrinsic::x86_rdrand_16:
11392 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011393 case Intrinsic::x86_rdrand_64:
11394 case Intrinsic::x86_rdseed_16:
11395 case Intrinsic::x86_rdseed_32:
11396 case Intrinsic::x86_rdseed_64: {
11397 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11398 IntNo == Intrinsic::x86_rdseed_32 ||
11399 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11400 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011401 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011402 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011403 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011404
Michael Liaoc26392a2013-03-28 23:41:26 +000011405 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11406 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011407 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11408 DAG.getConstant(1, Op->getValueType(1)),
11409 DAG.getConstant(X86::COND_B, MVT::i32),
11410 SDValue(Result.getNode(), 1) };
11411 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11412 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011413 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011414
11415 // Return { result, isValid, chain }.
11416 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011417 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011418 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011419
11420 // XTEST intrinsics.
11421 case Intrinsic::x86_xtest: {
11422 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11423 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11424 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11425 DAG.getConstant(X86::COND_NE, MVT::i8),
11426 InTrans);
11427 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11428 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11429 Ret, SDValue(InTrans.getNode(), 1));
11430 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011431 }
11432}
11433
Dan Gohmand858e902010-04-17 15:26:15 +000011434SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11435 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011436 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11437 MFI->setReturnAddressIsTaken(true);
11438
Bill Wendling64e87322009-01-16 19:25:27 +000011439 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011440 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011441 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011442
11443 if (Depth > 0) {
11444 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011445 const X86RegisterInfo *RegInfo =
11446 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11447 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011448 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11449 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011450 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011451 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011452 }
11453
11454 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011455 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011456 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011457 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011458}
11459
Dan Gohmand858e902010-04-17 15:26:15 +000011460SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011461 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11462 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011463
Owen Andersone50ed302009-08-10 22:56:29 +000011464 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011465 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011466 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011467 const X86RegisterInfo *RegInfo =
11468 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011469 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11470 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011471 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11472 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011473 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011474 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000011475 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11476 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011477 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000011478 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000011479}
11480
Dan Gohman475871a2008-07-27 21:46:04 +000011481SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000011482 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011483 const X86RegisterInfo *RegInfo =
11484 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011485 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011486}
11487
Dan Gohmand858e902010-04-17 15:26:15 +000011488SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011489 SDValue Chain = Op.getOperand(0);
11490 SDValue Offset = Op.getOperand(1);
11491 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011492 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011493
Michael Liaodb7da202013-05-02 09:18:38 +000011494 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011495 const X86RegisterInfo *RegInfo =
11496 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000011497 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11498 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11499 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11500 "Invalid Frame Register!");
11501 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11502 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011503
Michael Liaodb7da202013-05-02 09:18:38 +000011504 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000011505 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000011506 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000011507 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
11508 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000011509 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011510
Michael Liaodb7da202013-05-02 09:18:38 +000011511 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
11512 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000011513}
11514
Michael Liao6c0e04c2012-10-15 22:39:43 +000011515SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
11516 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011517 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000011518 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
11519 DAG.getVTList(MVT::i32, MVT::Other),
11520 Op.getOperand(0), Op.getOperand(1));
11521}
11522
11523SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
11524 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011525 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000011526 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
11527 Op.getOperand(0), Op.getOperand(1));
11528}
11529
Craig Topper55b24052012-09-11 06:15:32 +000011530static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000011531 return Op.getOperand(0);
11532}
11533
11534SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
11535 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011536 SDValue Root = Op.getOperand(0);
11537 SDValue Trmp = Op.getOperand(1); // trampoline
11538 SDValue FPtr = Op.getOperand(2); // nested function
11539 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000011540 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011541
Dan Gohman69de1932008-02-06 22:27:42 +000011542 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000011543 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000011544
11545 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000011546 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000011547
11548 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000011549 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
11550 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000011551
Michael Liao7abf67a2012-10-04 19:50:43 +000011552 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
11553 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000011554
11555 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
11556
11557 // Load the pointer to the nested function into R11.
11558 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000011559 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000011560 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011561 Addr, MachinePointerInfo(TrmpAddr),
11562 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011563
Owen Anderson825b72b2009-08-11 20:47:22 +000011564 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11565 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011566 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
11567 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000011568 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000011569
11570 // Load the 'nest' parameter value into R10.
11571 // R10 is specified in X86CallingConv.td
11572 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000011573 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11574 DAG.getConstant(10, MVT::i64));
11575 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011576 Addr, MachinePointerInfo(TrmpAddr, 10),
11577 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011578
Owen Anderson825b72b2009-08-11 20:47:22 +000011579 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11580 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011581 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
11582 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000011583 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000011584
11585 // Jump to the nested function.
11586 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000011587 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11588 DAG.getConstant(20, MVT::i64));
11589 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011590 Addr, MachinePointerInfo(TrmpAddr, 20),
11591 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011592
11593 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000011594 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11595 DAG.getConstant(22, MVT::i64));
11596 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011597 MachinePointerInfo(TrmpAddr, 22),
11598 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011599
Duncan Sands4a544a72011-09-06 13:37:06 +000011600 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011601 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000011602 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000011603 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000011604 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000011605 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011606
11607 switch (CC) {
11608 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011609 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000011610 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000011611 case CallingConv::X86_StdCall: {
11612 // Pass 'nest' parameter in ECX.
11613 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000011614 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011615
11616 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000011617 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000011618 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000011619
Chris Lattner58d74912008-03-12 17:45:29 +000011620 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000011621 unsigned InRegCount = 0;
11622 unsigned Idx = 1;
11623
11624 for (FunctionType::param_iterator I = FTy->param_begin(),
11625 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000011626 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000011627 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000011628 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011629
11630 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000011631 report_fatal_error("Nest register in use - reduce number of inreg"
11632 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000011633 }
11634 }
11635 break;
11636 }
11637 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000011638 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000011639 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000011640 // Pass 'nest' parameter in EAX.
11641 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000011642 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011643 break;
11644 }
11645
Dan Gohman475871a2008-07-27 21:46:04 +000011646 SDValue OutChains[4];
11647 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011648
Owen Anderson825b72b2009-08-11 20:47:22 +000011649 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11650 DAG.getConstant(10, MVT::i32));
11651 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011652
Chris Lattnera62fe662010-02-05 19:20:30 +000011653 // This is storing the opcode for MOV32ri.
11654 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000011655 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000011656 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000011657 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011658 Trmp, MachinePointerInfo(TrmpAddr),
11659 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011660
Owen Anderson825b72b2009-08-11 20:47:22 +000011661 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11662 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011663 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
11664 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000011665 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011666
Chris Lattnera62fe662010-02-05 19:20:30 +000011667 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000011668 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11669 DAG.getConstant(5, MVT::i32));
11670 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011671 MachinePointerInfo(TrmpAddr, 5),
11672 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011673
Owen Anderson825b72b2009-08-11 20:47:22 +000011674 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11675 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011676 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
11677 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000011678 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011679
Duncan Sands4a544a72011-09-06 13:37:06 +000011680 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011681 }
11682}
11683
Dan Gohmand858e902010-04-17 15:26:15 +000011684SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
11685 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011686 /*
11687 The rounding mode is in bits 11:10 of FPSR, and has the following
11688 settings:
11689 00 Round to nearest
11690 01 Round to -inf
11691 10 Round to +inf
11692 11 Round to 0
11693
11694 FLT_ROUNDS, on the other hand, expects the following:
11695 -1 Undefined
11696 0 Round to 0
11697 1 Round to nearest
11698 2 Round to +inf
11699 3 Round to -inf
11700
11701 To perform the conversion, we do:
11702 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
11703 */
11704
11705 MachineFunction &MF = DAG.getMachineFunction();
11706 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000011707 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011708 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000011709 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011710 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011711
11712 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000011713 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000011714 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011715
Chris Lattner2156b792010-09-22 01:11:26 +000011716 MachineMemOperand *MMO =
11717 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11718 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000011719
Chris Lattner2156b792010-09-22 01:11:26 +000011720 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
11721 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
11722 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000011723 Ops, array_lengthof(Ops), MVT::i16,
11724 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011725
11726 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000011727 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000011728 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011729
11730 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000011731 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000011732 DAG.getNode(ISD::SRL, DL, MVT::i16,
11733 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000011734 CWD, DAG.getConstant(0x800, MVT::i16)),
11735 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000011736 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000011737 DAG.getNode(ISD::SRL, DL, MVT::i16,
11738 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000011739 CWD, DAG.getConstant(0x400, MVT::i16)),
11740 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011741
Dan Gohman475871a2008-07-27 21:46:04 +000011742 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000011743 DAG.getNode(ISD::AND, DL, MVT::i16,
11744 DAG.getNode(ISD::ADD, DL, MVT::i16,
11745 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000011746 DAG.getConstant(1, MVT::i16)),
11747 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011748
Duncan Sands83ec4b62008-06-06 12:08:01 +000011749 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000011750 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011751}
11752
Craig Topper55b24052012-09-11 06:15:32 +000011753static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011754 EVT VT = Op.getValueType();
11755 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011756 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011757 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011758
11759 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011760 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000011761 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000011762 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000011763 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011764 }
Evan Cheng18efe262007-12-14 02:13:44 +000011765
Evan Cheng152804e2007-12-14 08:30:15 +000011766 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000011767 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011768 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000011769
11770 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011771 SDValue Ops[] = {
11772 Op,
11773 DAG.getConstant(NumBits+NumBits-1, OpVT),
11774 DAG.getConstant(X86::COND_E, MVT::i8),
11775 Op.getValue(1)
11776 };
11777 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000011778
11779 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000011780 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000011781
Owen Anderson825b72b2009-08-11 20:47:22 +000011782 if (VT == MVT::i8)
11783 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011784 return Op;
11785}
11786
Craig Topper55b24052012-09-11 06:15:32 +000011787static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000011788 EVT VT = Op.getValueType();
11789 EVT OpVT = VT;
11790 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011791 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000011792
11793 Op = Op.getOperand(0);
11794 if (VT == MVT::i8) {
11795 // Zero extend to i32 since there is not an i8 bsr.
11796 OpVT = MVT::i32;
11797 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
11798 }
11799
11800 // Issue a bsr (scan bits in reverse).
11801 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
11802 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
11803
11804 // And xor with NumBits-1.
11805 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
11806
11807 if (VT == MVT::i8)
11808 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
11809 return Op;
11810}
11811
Craig Topper55b24052012-09-11 06:15:32 +000011812static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011813 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000011814 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011815 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011816 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000011817
11818 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000011819 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011820 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000011821
11822 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011823 SDValue Ops[] = {
11824 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000011825 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011826 DAG.getConstant(X86::COND_E, MVT::i8),
11827 Op.getValue(1)
11828 };
Chandler Carruth77821022011-12-24 12:12:34 +000011829 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000011830}
11831
Craig Topper13894fa2011-08-24 06:14:18 +000011832// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
11833// ones, and then concatenate the result back.
11834static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011835 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000011836
Craig Topper7a9a28b2012-08-12 02:23:29 +000011837 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011838 "Unsupported value type for operation");
11839
Craig Topper66ddd152012-04-27 22:54:43 +000011840 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011841 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000011842
11843 // Extract the LHS vectors
11844 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000011845 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
11846 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000011847
11848 // Extract the RHS vectors
11849 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000011850 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
11851 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000011852
11853 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11854 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11855
11856 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
11857 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
11858 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
11859}
11860
Craig Topper55b24052012-09-11 06:15:32 +000011861static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000011862 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011863 Op.getValueType().isInteger() &&
11864 "Only handle AVX 256-bit vector integer operation");
11865 return Lower256IntArith(Op, DAG);
11866}
11867
Craig Topper55b24052012-09-11 06:15:32 +000011868static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000011869 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011870 Op.getValueType().isInteger() &&
11871 "Only handle AVX 256-bit vector integer operation");
11872 return Lower256IntArith(Op, DAG);
11873}
11874
Craig Topper55b24052012-09-11 06:15:32 +000011875static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
11876 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011877 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000011878 EVT VT = Op.getValueType();
11879
11880 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011881 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000011882 return Lower256IntArith(Op, DAG);
11883
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000011884 SDValue A = Op.getOperand(0);
11885 SDValue B = Op.getOperand(1);
11886
11887 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
11888 if (VT == MVT::v4i32) {
11889 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
11890 "Should not custom lower when pmuldq is available!");
11891
11892 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000011893 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000011894 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
11895 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
11896
11897 // Multiply the even parts.
11898 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
11899 // Now multiply odd parts.
11900 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
11901
11902 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
11903 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
11904
11905 // Merge the two vectors back together with a shuffle. This expands into 2
11906 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000011907 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000011908 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
11909 }
11910
Craig Topper5b209e82012-02-05 03:14:49 +000011911 assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
11912 "Only know how to lower V2I64/V4I64 multiply");
11913
Craig Topper5b209e82012-02-05 03:14:49 +000011914 // Ahi = psrlqi(a, 32);
11915 // Bhi = psrlqi(b, 32);
11916 //
11917 // AloBlo = pmuludq(a, b);
11918 // AloBhi = pmuludq(a, Bhi);
11919 // AhiBlo = pmuludq(Ahi, b);
11920
11921 // AloBhi = psllqi(AloBhi, 32);
11922 // AhiBlo = psllqi(AhiBlo, 32);
11923 // return AloBlo + AloBhi + AhiBlo;
11924
Craig Topper5b209e82012-02-05 03:14:49 +000011925 SDValue ShAmt = DAG.getConstant(32, MVT::i32);
Craig Topperaaa643c2011-11-09 07:28:55 +000011926
Craig Topper5b209e82012-02-05 03:14:49 +000011927 SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
11928 SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
Craig Topperaaa643c2011-11-09 07:28:55 +000011929
Craig Topper5b209e82012-02-05 03:14:49 +000011930 // Bit cast to 32-bit vectors for MULUDQ
11931 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
11932 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
11933 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
11934 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
11935 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000011936
Craig Topper5b209e82012-02-05 03:14:49 +000011937 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
11938 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
11939 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000011940
Craig Topper5b209e82012-02-05 03:14:49 +000011941 AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
11942 AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
Mon P Wangaf9b9522008-12-18 21:42:19 +000011943
Dale Johannesene4d209d2009-02-03 20:21:25 +000011944 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000011945 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000011946}
11947
Nadav Rotem13f8cf52013-01-09 05:14:33 +000011948SDValue X86TargetLowering::LowerSDIV(SDValue Op, SelectionDAG &DAG) const {
11949 EVT VT = Op.getValueType();
11950 EVT EltTy = VT.getVectorElementType();
11951 unsigned NumElts = VT.getVectorNumElements();
11952 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000011953 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000011954
11955 // Lower sdiv X, pow2-const.
11956 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
11957 if (!C)
11958 return SDValue();
11959
11960 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000011961 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000011962 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000011963 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
11964 HasAnyUndefs) ||
11965 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000011966 return SDValue();
11967
11968 if ((SplatValue != 0) &&
11969 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
11970 unsigned lg2 = SplatValue.countTrailingZeros();
11971 // Splat the sign bit.
11972 SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
11973 SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
11974 // Add (N0 < 0) ? abs2 - 1 : 0;
11975 SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
11976 SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
11977 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
11978 SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
11979 SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
11980
11981 // If we're dividing by a positive value, we're done. Otherwise, we must
11982 // negate the result.
11983 if (SplatValue.isNonNegative())
11984 return SRA;
11985
11986 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
11987 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
11988 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
11989 }
11990 return SDValue();
11991}
11992
Michael Liao4b7ab122013-03-20 02:20:36 +000011993static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
11994 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011995 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011996 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011997 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000011998 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011999
Nadav Rotem43012222011-05-11 08:12:09 +000012000 // Optimize shl/srl/sra with constant shift amount.
12001 if (isSplatVector(Amt.getNode())) {
12002 SDValue SclrAmt = Amt->getOperand(0);
12003 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12004 uint64_t ShiftAmt = C->getZExtValue();
12005
Craig Toppered2e13d2012-01-22 19:15:14 +000012006 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012007 (Subtarget->hasInt256() &&
Craig Toppered2e13d2012-01-22 19:15:14 +000012008 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16))) {
12009 if (Op.getOpcode() == ISD::SHL)
12010 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12011 DAG.getConstant(ShiftAmt, MVT::i32));
12012 if (Op.getOpcode() == ISD::SRL)
12013 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12014 DAG.getConstant(ShiftAmt, MVT::i32));
12015 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12016 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12017 DAG.getConstant(ShiftAmt, MVT::i32));
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012018 }
12019
Craig Toppered2e13d2012-01-22 19:15:14 +000012020 if (VT == MVT::v16i8) {
12021 if (Op.getOpcode() == ISD::SHL) {
12022 // Make a large shift.
12023 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12024 DAG.getConstant(ShiftAmt, MVT::i32));
12025 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12026 // Zero out the rightmost bits.
12027 SmallVector<SDValue, 16> V(16,
12028 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12029 MVT::i8));
12030 return DAG.getNode(ISD::AND, dl, VT, SHL,
12031 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012032 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012033 if (Op.getOpcode() == ISD::SRL) {
12034 // Make a large shift.
12035 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12036 DAG.getConstant(ShiftAmt, MVT::i32));
12037 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12038 // Zero out the leftmost bits.
12039 SmallVector<SDValue, 16> V(16,
12040 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12041 MVT::i8));
12042 return DAG.getNode(ISD::AND, dl, VT, SRL,
12043 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12044 }
12045 if (Op.getOpcode() == ISD::SRA) {
12046 if (ShiftAmt == 7) {
12047 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012048 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012049 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012050 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012051
Craig Toppered2e13d2012-01-22 19:15:14 +000012052 // R s>> a === ((R u>> a) ^ m) - m
12053 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12054 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12055 MVT::i8));
12056 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12057 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12058 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12059 return Res;
12060 }
Craig Topper731dfd02012-04-23 03:42:40 +000012061 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012062 }
Craig Topper46154eb2011-11-11 07:39:23 +000012063
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012064 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012065 if (Op.getOpcode() == ISD::SHL) {
12066 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012067 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12068 DAG.getConstant(ShiftAmt, MVT::i32));
12069 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012070 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012071 SmallVector<SDValue, 32> V(32,
12072 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12073 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012074 return DAG.getNode(ISD::AND, dl, VT, SHL,
12075 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012076 }
Craig Topper0d86d462011-11-20 00:12:05 +000012077 if (Op.getOpcode() == ISD::SRL) {
12078 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000012079 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12080 DAG.getConstant(ShiftAmt, MVT::i32));
12081 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012082 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012083 SmallVector<SDValue, 32> V(32,
12084 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12085 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012086 return DAG.getNode(ISD::AND, dl, VT, SRL,
12087 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12088 }
12089 if (Op.getOpcode() == ISD::SRA) {
12090 if (ShiftAmt == 7) {
12091 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012092 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012093 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012094 }
12095
12096 // R s>> a === ((R u>> a) ^ m) - m
12097 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12098 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12099 MVT::i8));
12100 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12101 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12102 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12103 return Res;
12104 }
Craig Topper731dfd02012-04-23 03:42:40 +000012105 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012106 }
Nadav Rotem43012222011-05-11 08:12:09 +000012107 }
12108 }
12109
Michael Liao42317cc2013-03-20 02:33:21 +000012110 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12111 if (!Subtarget->is64Bit() &&
12112 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12113 Amt.getOpcode() == ISD::BITCAST &&
12114 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12115 Amt = Amt.getOperand(0);
12116 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12117 VT.getVectorNumElements();
12118 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12119 uint64_t ShiftAmt = 0;
12120 for (unsigned i = 0; i != Ratio; ++i) {
12121 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12122 if (C == 0)
12123 return SDValue();
12124 // 6 == Log2(64)
12125 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12126 }
12127 // Check remaining shift amounts.
12128 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12129 uint64_t ShAmt = 0;
12130 for (unsigned j = 0; j != Ratio; ++j) {
12131 ConstantSDNode *C =
12132 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12133 if (C == 0)
12134 return SDValue();
12135 // 6 == Log2(64)
12136 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12137 }
12138 if (ShAmt != ShiftAmt)
12139 return SDValue();
12140 }
12141 switch (Op.getOpcode()) {
12142 default:
12143 llvm_unreachable("Unknown shift opcode!");
12144 case ISD::SHL:
12145 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12146 DAG.getConstant(ShiftAmt, MVT::i32));
12147 case ISD::SRL:
12148 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12149 DAG.getConstant(ShiftAmt, MVT::i32));
12150 case ISD::SRA:
12151 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12152 DAG.getConstant(ShiftAmt, MVT::i32));
12153 }
12154 }
12155
12156 return SDValue();
12157}
12158
12159static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12160 const X86Subtarget* Subtarget) {
12161 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012162 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012163 SDValue R = Op.getOperand(0);
12164 SDValue Amt = Op.getOperand(1);
12165
12166 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12167 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12168 (Subtarget->hasInt256() &&
12169 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12170 VT == MVT::v8i32 || VT == MVT::v16i16))) {
12171 SDValue BaseShAmt;
12172 EVT EltVT = VT.getVectorElementType();
12173
12174 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12175 unsigned NumElts = VT.getVectorNumElements();
12176 unsigned i, j;
12177 for (i = 0; i != NumElts; ++i) {
12178 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12179 continue;
12180 break;
12181 }
12182 for (j = i; j != NumElts; ++j) {
12183 SDValue Arg = Amt.getOperand(j);
12184 if (Arg.getOpcode() == ISD::UNDEF) continue;
12185 if (Arg != Amt.getOperand(i))
12186 break;
12187 }
12188 if (i != NumElts && j == NumElts)
12189 BaseShAmt = Amt.getOperand(i);
12190 } else {
12191 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12192 Amt = Amt.getOperand(0);
12193 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12194 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12195 SDValue InVec = Amt.getOperand(0);
12196 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12197 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12198 unsigned i = 0;
12199 for (; i != NumElts; ++i) {
12200 SDValue Arg = InVec.getOperand(i);
12201 if (Arg.getOpcode() == ISD::UNDEF) continue;
12202 BaseShAmt = Arg;
12203 break;
12204 }
12205 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12206 if (ConstantSDNode *C =
12207 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12208 unsigned SplatIdx =
12209 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12210 if (C->getZExtValue() == SplatIdx)
12211 BaseShAmt = InVec.getOperand(1);
12212 }
12213 }
12214 if (BaseShAmt.getNode() == 0)
12215 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12216 DAG.getIntPtrConstant(0));
12217 }
12218 }
12219
12220 if (BaseShAmt.getNode()) {
12221 if (EltVT.bitsGT(MVT::i32))
12222 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12223 else if (EltVT.bitsLT(MVT::i32))
12224 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12225
12226 switch (Op.getOpcode()) {
12227 default:
12228 llvm_unreachable("Unknown shift opcode!");
12229 case ISD::SHL:
12230 switch (VT.getSimpleVT().SimpleTy) {
12231 default: return SDValue();
12232 case MVT::v2i64:
12233 case MVT::v4i32:
12234 case MVT::v8i16:
12235 case MVT::v4i64:
12236 case MVT::v8i32:
12237 case MVT::v16i16:
12238 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12239 }
12240 case ISD::SRA:
12241 switch (VT.getSimpleVT().SimpleTy) {
12242 default: return SDValue();
12243 case MVT::v4i32:
12244 case MVT::v8i16:
12245 case MVT::v8i32:
12246 case MVT::v16i16:
12247 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12248 }
12249 case ISD::SRL:
12250 switch (VT.getSimpleVT().SimpleTy) {
12251 default: return SDValue();
12252 case MVT::v2i64:
12253 case MVT::v4i32:
12254 case MVT::v8i16:
12255 case MVT::v4i64:
12256 case MVT::v8i32:
12257 case MVT::v16i16:
12258 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12259 }
12260 }
12261 }
12262 }
12263
12264 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12265 if (!Subtarget->is64Bit() &&
12266 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12267 Amt.getOpcode() == ISD::BITCAST &&
12268 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12269 Amt = Amt.getOperand(0);
12270 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12271 VT.getVectorNumElements();
12272 std::vector<SDValue> Vals(Ratio);
12273 for (unsigned i = 0; i != Ratio; ++i)
12274 Vals[i] = Amt.getOperand(i);
12275 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12276 for (unsigned j = 0; j != Ratio; ++j)
12277 if (Vals[j] != Amt.getOperand(i + j))
12278 return SDValue();
12279 }
12280 switch (Op.getOpcode()) {
12281 default:
12282 llvm_unreachable("Unknown shift opcode!");
12283 case ISD::SHL:
12284 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12285 case ISD::SRL:
12286 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12287 case ISD::SRA:
12288 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12289 }
12290 }
12291
Michael Liao4b7ab122013-03-20 02:20:36 +000012292 return SDValue();
12293}
12294
12295SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
12296
12297 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012298 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012299 SDValue R = Op.getOperand(0);
12300 SDValue Amt = Op.getOperand(1);
12301 SDValue V;
12302
12303 if (!Subtarget->hasSSE2())
12304 return SDValue();
12305
12306 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12307 if (V.getNode())
12308 return V;
12309
Michael Liao42317cc2013-03-20 02:33:21 +000012310 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12311 if (V.getNode())
12312 return V;
12313
Michael Liao5c5f1902013-03-20 02:28:20 +000012314 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12315 if (Subtarget->hasInt256()) {
12316 if (Op.getOpcode() == ISD::SRL &&
12317 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12318 VT == MVT::v4i64 || VT == MVT::v8i32))
12319 return Op;
12320 if (Op.getOpcode() == ISD::SHL &&
12321 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12322 VT == MVT::v4i64 || VT == MVT::v8i32))
12323 return Op;
12324 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12325 return Op;
12326 }
12327
Nadav Rotem43012222011-05-11 08:12:09 +000012328 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012329 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012330 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012331
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012332 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012333 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012334 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12335 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12336 }
Nadav Rotem43012222011-05-11 08:12:09 +000012337 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012338 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012339
Nate Begeman51409212010-07-28 00:21:48 +000012340 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012341 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012342 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012343
Lang Hames8b99c1e2011-12-17 01:08:46 +000012344 // Turn 'a' into a mask suitable for VSELECT
12345 SDValue VSelM = DAG.getConstant(0x80, VT);
12346 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012347 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012348
Lang Hames8b99c1e2011-12-17 01:08:46 +000012349 SDValue CM1 = DAG.getConstant(0x0f, VT);
12350 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012351
Lang Hames8b99c1e2011-12-17 01:08:46 +000012352 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12353 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Craig Toppered2e13d2012-01-22 19:15:14 +000012354 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12355 DAG.getConstant(4, MVT::i32), DAG);
12356 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012357 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12358
Nate Begeman51409212010-07-28 00:21:48 +000012359 // a += a
12360 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012361 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012362 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012363
Lang Hames8b99c1e2011-12-17 01:08:46 +000012364 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12365 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Craig Toppered2e13d2012-01-22 19:15:14 +000012366 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12367 DAG.getConstant(2, MVT::i32), DAG);
12368 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012369 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12370
Nate Begeman51409212010-07-28 00:21:48 +000012371 // a += a
12372 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012373 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012374 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012375
Lang Hames8b99c1e2011-12-17 01:08:46 +000012376 // return VSELECT(r, r+r, a);
12377 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012378 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012379 return R;
12380 }
Craig Topper46154eb2011-11-11 07:39:23 +000012381
12382 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012383 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012384 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012385 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12386 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12387
12388 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012389 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12390 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012391
12392 // Recreate the shift amount vectors
12393 SDValue Amt1, Amt2;
12394 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12395 // Constant shift amount
12396 SmallVector<SDValue, 4> Amt1Csts;
12397 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012398 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012399 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012400 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012401 Amt2Csts.push_back(Amt->getOperand(i));
12402
12403 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12404 &Amt1Csts[0], NumElems/2);
12405 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12406 &Amt2Csts[0], NumElems/2);
12407 } else {
12408 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012409 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12410 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012411 }
12412
12413 // Issue new vector shifts for the smaller types
12414 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12415 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12416
12417 // Concatenate the result back
12418 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12419 }
12420
Nate Begeman51409212010-07-28 00:21:48 +000012421 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012422}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012423
Craig Topper55b24052012-09-11 06:15:32 +000012424static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012425 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12426 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012427 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12428 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012429 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012430 SDValue LHS = N->getOperand(0);
12431 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012432 unsigned BaseOp = 0;
12433 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012434 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012435 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012436 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012437 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012438 // A subtract of one will be selected as a INC. Note that INC doesn't
12439 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012440 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12441 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012442 BaseOp = X86ISD::INC;
12443 Cond = X86::COND_O;
12444 break;
12445 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012446 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012447 Cond = X86::COND_O;
12448 break;
12449 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012450 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000012451 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012452 break;
12453 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000012454 // A subtract of one will be selected as a DEC. Note that DEC doesn't
12455 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012456 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12457 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012458 BaseOp = X86ISD::DEC;
12459 Cond = X86::COND_O;
12460 break;
12461 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012462 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000012463 Cond = X86::COND_O;
12464 break;
12465 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012466 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000012467 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000012468 break;
12469 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000012470 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000012471 Cond = X86::COND_O;
12472 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012473 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12474 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12475 MVT::i32);
12476 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012477
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012478 SDValue SetCC =
12479 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12480 DAG.getConstant(X86::COND_O, MVT::i32),
12481 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012482
Dan Gohman6e5fda22011-07-22 18:45:15 +000012483 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012484 }
Bill Wendling74c37652008-12-09 22:08:41 +000012485 }
Bill Wendling3fafd932008-11-26 22:37:40 +000012486
Bill Wendling61edeb52008-12-02 01:06:39 +000012487 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012488 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012489 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000012490
Bill Wendling61edeb52008-12-02 01:06:39 +000012491 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000012492 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
12493 DAG.getConstant(Cond, MVT::i32),
12494 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000012495
Dan Gohman6e5fda22011-07-22 18:45:15 +000012496 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000012497}
12498
Chad Rosier30450e82011-12-22 22:35:21 +000012499SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
12500 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012501 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000012502 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
12503 EVT VT = Op.getValueType();
12504
Craig Toppered2e13d2012-01-22 19:15:14 +000012505 if (!Subtarget->hasSSE2() || !VT.isVector())
12506 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012507
Craig Toppered2e13d2012-01-22 19:15:14 +000012508 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
12509 ExtraVT.getScalarType().getSizeInBits();
12510 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
12511
12512 switch (VT.getSimpleVT().SimpleTy) {
12513 default: return SDValue();
12514 case MVT::v8i32:
12515 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012516 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012517 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012518 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012519 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000012520 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000012521
Craig Toppered2e13d2012-01-22 19:15:14 +000012522 // Extract the LHS vectors
12523 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012524 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12525 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000012526
Craig Toppered2e13d2012-01-22 19:15:14 +000012527 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12528 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000012529
Craig Toppered2e13d2012-01-22 19:15:14 +000012530 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000012531 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000012532 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
12533 ExtraNumElems/2);
12534 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000012535
Craig Toppered2e13d2012-01-22 19:15:14 +000012536 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
12537 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000012538
Dmitri Gribenko2de05722012-09-10 21:26:47 +000012539 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000012540 }
12541 // fall through
12542 case MVT::v4i32:
12543 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000012544 // (sext (vzext x)) -> (vsext x)
12545 SDValue Op0 = Op.getOperand(0);
12546 SDValue Op00 = Op0.getOperand(0);
12547 SDValue Tmp1;
12548 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
12549 if (Op0.getOpcode() == ISD::BITCAST &&
12550 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
12551 Tmp1 = LowerVectorIntExtend(Op00, DAG);
12552 if (Tmp1.getNode()) {
12553 SDValue Tmp1Op0 = Tmp1.getOperand(0);
12554 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
12555 "This optimization is invalid without a VZEXT.");
12556 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
12557 }
12558
12559 // If the above didn't work, then just use Shift-Left + Shift-Right.
12560 Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012561 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012562 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012563 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012564}
12565
Craig Topper55b24052012-09-11 06:15:32 +000012566static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
12567 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012568 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000012569 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
12570 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
12571 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
12572 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
12573
12574 // The only fence that needs an instruction is a sequentially-consistent
12575 // cross-thread fence.
12576 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
12577 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
12578 // no-sse2). There isn't any reason to disable it if the target processor
12579 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000012580 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000012581 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
12582
12583 SDValue Chain = Op.getOperand(0);
12584 SDValue Zero = DAG.getConstant(0, MVT::i32);
12585 SDValue Ops[] = {
12586 DAG.getRegister(X86::ESP, MVT::i32), // Base
12587 DAG.getTargetConstant(1, MVT::i8), // Scale
12588 DAG.getRegister(0, MVT::i32), // Index
12589 DAG.getTargetConstant(0, MVT::i32), // Disp
12590 DAG.getRegister(0, MVT::i32), // Segment.
12591 Zero,
12592 Chain
12593 };
Michael Liao2a8bea72013-04-19 22:22:57 +000012594 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000012595 return SDValue(Res, 0);
12596 }
12597
12598 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
12599 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
12600}
12601
Craig Topper55b24052012-09-11 06:15:32 +000012602static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
12603 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012604 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012605 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000012606 unsigned Reg = 0;
12607 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000012608 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000012609 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000012610 case MVT::i8: Reg = X86::AL; size = 1; break;
12611 case MVT::i16: Reg = X86::AX; size = 2; break;
12612 case MVT::i32: Reg = X86::EAX; size = 4; break;
12613 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000012614 assert(Subtarget->is64Bit() && "Node not type legal!");
12615 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000012616 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000012617 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000012618 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000012619 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000012620 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000012621 Op.getOperand(1),
12622 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000012623 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000012624 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000012625 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000012626 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
12627 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000012628 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000012629 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000012630 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000012631 return cpOut;
12632}
12633
Craig Topper55b24052012-09-11 06:15:32 +000012634static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
12635 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000012636 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000012637 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000012638 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012639 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012640 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000012641 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
12642 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000012643 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000012644 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
12645 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000012646 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000012647 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000012648 rdx.getValue(1)
12649 };
Michael Liao0ee17002013-04-19 04:03:37 +000012650 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012651}
12652
Craig Topper55b24052012-09-11 06:15:32 +000012653SDValue X86TargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen7d07b482010-05-21 00:52:33 +000012654 EVT SrcVT = Op.getOperand(0).getValueType();
12655 EVT DstVT = Op.getValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000012656 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000012657 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000012658 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000012659 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012660 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000012661 // i64 <=> MMX conversions are Legal.
12662 if (SrcVT==MVT::i64 && DstVT.isVector())
12663 return Op;
12664 if (DstVT==MVT::i64 && SrcVT.isVector())
12665 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000012666 // MMX <=> MMX conversions are Legal.
12667 if (SrcVT.isVector() && DstVT.isVector())
12668 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000012669 // All other conversions need to be expanded.
12670 return SDValue();
12671}
Chris Lattner5b856542010-12-20 00:59:46 +000012672
Craig Topper55b24052012-09-11 06:15:32 +000012673static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000012674 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012675 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000012676 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012677 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000012678 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000012679 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012680 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000012681 Node->getOperand(0),
12682 Node->getOperand(1), negOp,
12683 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000012684 cast<AtomicSDNode>(Node)->getAlignment(),
12685 cast<AtomicSDNode>(Node)->getOrdering(),
12686 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000012687}
12688
Eli Friedman327236c2011-08-24 20:50:09 +000012689static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
12690 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012691 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012692 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000012693
12694 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012695 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
12696 // FIXME: On 32-bit, store -> fist or movq would be more efficient
12697 // (The only way to get a 16-byte store is cmpxchg16b)
12698 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
12699 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
12700 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000012701 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
12702 cast<AtomicSDNode>(Node)->getMemoryVT(),
12703 Node->getOperand(0),
12704 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012705 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000012706 cast<AtomicSDNode>(Node)->getOrdering(),
12707 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000012708 return Swap.getValue(1);
12709 }
12710 // Other atomic stores have a simple pattern.
12711 return Op;
12712}
12713
Chris Lattner5b856542010-12-20 00:59:46 +000012714static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
12715 EVT VT = Op.getNode()->getValueType(0);
12716
12717 // Let legalize expand this if it isn't a legal type yet.
12718 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
12719 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012720
Chris Lattner5b856542010-12-20 00:59:46 +000012721 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012722
Chris Lattner5b856542010-12-20 00:59:46 +000012723 unsigned Opc;
12724 bool ExtraOp = false;
12725 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000012726 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000012727 case ISD::ADDC: Opc = X86ISD::ADD; break;
12728 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
12729 case ISD::SUBC: Opc = X86ISD::SUB; break;
12730 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
12731 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012732
Chris Lattner5b856542010-12-20 00:59:46 +000012733 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000012734 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000012735 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000012736 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000012737 Op.getOperand(1), Op.getOperand(2));
12738}
12739
Evan Cheng8688a582013-01-29 02:32:37 +000012740SDValue X86TargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
Evan Chenga66f40a2013-01-30 22:56:35 +000012741 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000012742
Evan Cheng8688a582013-01-29 02:32:37 +000012743 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000012744 // which returns the values as { float, float } (in XMM0) or
12745 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000012746 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000012747 SDValue Arg = Op.getOperand(0);
12748 EVT ArgVT = Arg.getValueType();
12749 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000012750
Evan Cheng8688a582013-01-29 02:32:37 +000012751 ArgListTy Args;
12752 ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000012753
Evan Cheng8688a582013-01-29 02:32:37 +000012754 Entry.Node = Arg;
12755 Entry.Ty = ArgTy;
12756 Entry.isSExt = false;
12757 Entry.isZExt = false;
12758 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000012759
Evan Cheng3a6b7d32013-04-10 01:26:07 +000012760 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000012761 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
12762 // the small struct {f32, f32} is returned in (eax, edx). For f64,
12763 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000012764 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Evan Cheng8688a582013-01-29 02:32:37 +000012765 SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000012766
Evan Cheng3a6b7d32013-04-10 01:26:07 +000012767 Type *RetTy = isF64
12768 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
12769 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000012770 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000012771 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
12772 false, false, false, false, 0,
12773 CallingConv::C, /*isTaillCall=*/false,
12774 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
12775 Callee, Args, DAG, dl);
Evan Cheng8688a582013-01-29 02:32:37 +000012776 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000012777
12778 if (isF64)
12779 // Returned in xmm0 and xmm1.
12780 return CallResult.first;
12781
12782 // Returned in bits 0:31 and 32:64 xmm0.
12783 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
12784 CallResult.first, DAG.getIntPtrConstant(0));
12785 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
12786 CallResult.first, DAG.getIntPtrConstant(1));
12787 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
12788 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000012789}
12790
Evan Cheng0db9fe62006-04-25 20:13:52 +000012791/// LowerOperation - Provide custom lowering hooks for some operations.
12792///
Dan Gohmand858e902010-04-17 15:26:15 +000012793SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000012794 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012795 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012796 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012797 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
12798 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012799 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000012800 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012801 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000012802 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012803 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
12804 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
12805 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012806 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
12807 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012808 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
12809 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
12810 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000012811 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000012812 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000012813 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012814 case ISD::SHL_PARTS:
12815 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000012816 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012817 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000012818 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000012819 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Nadav Rotem0509db22012-12-28 05:45:24 +000012820 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, DAG);
12821 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
12822 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012823 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000012824 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000012825 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012826 case ISD::FABS: return LowerFABS(Op, DAG);
12827 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000012828 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000012829 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000012830 case ISD::SETCC: return LowerSETCC(Op, DAG);
12831 case ISD::SELECT: return LowerSELECT(Op, DAG);
12832 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012833 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012834 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000012835 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012836 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012837 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000012838 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000012839 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
12840 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012841 case ISD::FRAME_TO_ARGS_OFFSET:
12842 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000012843 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012844 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012845 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
12846 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000012847 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
12848 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000012849 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000012850 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012851 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000012852 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012853 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000012854 case ISD::SRA:
12855 case ISD::SRL:
12856 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000012857 case ISD::SADDO:
12858 case ISD::UADDO:
12859 case ISD::SSUBO:
12860 case ISD::USUBO:
12861 case ISD::SMULO:
12862 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012863 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012864 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000012865 case ISD::ADDC:
12866 case ISD::ADDE:
12867 case ISD::SUBC:
12868 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000012869 case ISD::ADD: return LowerADD(Op, DAG);
12870 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012871 case ISD::SDIV: return LowerSDIV(Op, DAG);
Evan Cheng8688a582013-01-29 02:32:37 +000012872 case ISD::FSINCOS: return LowerFSINCOS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012873 }
Chris Lattner27a6c732007-11-24 07:07:01 +000012874}
12875
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012876static void ReplaceATOMIC_LOAD(SDNode *Node,
12877 SmallVectorImpl<SDValue> &Results,
12878 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012879 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012880 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
12881
12882 // Convert wide load -> cmpxchg8b/cmpxchg16b
12883 // FIXME: On 32-bit, load -> fild or movq would be more efficient
12884 // (The only way to get a 16-byte load is cmpxchg16b)
12885 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000012886 SDValue Zero = DAG.getConstant(0, VT);
12887 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012888 Node->getOperand(0),
12889 Node->getOperand(1), Zero, Zero,
12890 cast<AtomicSDNode>(Node)->getMemOperand(),
12891 cast<AtomicSDNode>(Node)->getOrdering(),
12892 cast<AtomicSDNode>(Node)->getSynchScope());
12893 Results.push_back(Swap.getValue(0));
12894 Results.push_back(Swap.getValue(1));
12895}
12896
Craig Topperc0878702012-08-17 06:55:11 +000012897static void
Duncan Sands1607f052008-12-01 11:39:25 +000012898ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000012899 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012900 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000012901 assert (Node->getValueType(0) == MVT::i64 &&
12902 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000012903
12904 SDValue Chain = Node->getOperand(0);
12905 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000012906 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012907 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000012908 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012909 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000012910 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000012911 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000012912 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000012913 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000012914 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000012915 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000012916 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000012917 Results.push_back(Result.getValue(2));
12918}
12919
Duncan Sands126d9072008-07-04 11:47:58 +000012920/// ReplaceNodeResults - Replace a node with an illegal result type
12921/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000012922void X86TargetLowering::ReplaceNodeResults(SDNode *N,
12923 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000012924 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012925 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000012926 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000012927 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000012928 default:
Craig Topperabb94d02012-02-05 03:43:23 +000012929 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012930 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000012931 case ISD::ADDC:
12932 case ISD::ADDE:
12933 case ISD::SUBC:
12934 case ISD::SUBE:
12935 // We don't want to expand or promote these.
12936 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000012937 case ISD::FP_TO_SINT:
12938 case ISD::FP_TO_UINT: {
12939 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
12940
12941 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
12942 return;
12943
Eli Friedman948e95a2009-05-23 09:59:16 +000012944 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000012945 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000012946 SDValue FIST = Vals.first, StackSlot = Vals.second;
12947 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000012948 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000012949 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000012950 if (StackSlot.getNode() != 0)
12951 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
12952 MachinePointerInfo(),
12953 false, false, false, 0));
12954 else
12955 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000012956 }
12957 return;
12958 }
Michael Liao991b6a22012-10-24 04:09:32 +000012959 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000012960 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
12961 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000012962 N->getValueType(0) != MVT::v2f32)
12963 return;
12964 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
12965 N->getOperand(0));
12966 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
12967 MVT::f64);
12968 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
12969 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
12970 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
12971 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
12972 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
12973 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
12974 return;
12975 }
Michael Liao44c2d612012-10-10 16:53:28 +000012976 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000012977 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
12978 return;
Michael Liao44c2d612012-10-10 16:53:28 +000012979 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
12980 Results.push_back(V);
12981 return;
12982 }
Duncan Sands1607f052008-12-01 11:39:25 +000012983 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000012984 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000012985 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012986 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000012987 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000012988 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000012989 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012990 eax.getValue(2));
12991 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
12992 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000012993 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
12994 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000012995 Results.push_back(edx.getValue(1));
12996 return;
12997 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012998 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000012999 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013000 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013001 bool Regs64bit = T == MVT::i128;
13002 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013003 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013004 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13005 DAG.getConstant(0, HalfT));
13006 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13007 DAG.getConstant(1, HalfT));
13008 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13009 Regs64bit ? X86::RAX : X86::EAX,
13010 cpInL, SDValue());
13011 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13012 Regs64bit ? X86::RDX : X86::EDX,
13013 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013014 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013015 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13016 DAG.getConstant(0, HalfT));
13017 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13018 DAG.getConstant(1, HalfT));
13019 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13020 Regs64bit ? X86::RBX : X86::EBX,
13021 swapInL, cpInH.getValue(1));
13022 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013023 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013024 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013025 SDValue Ops[] = { swapInH.getValue(0),
13026 N->getOperand(1),
13027 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013028 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013029 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013030 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13031 X86ISD::LCMPXCHG8_DAG;
13032 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013033 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013034 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13035 Regs64bit ? X86::RAX : X86::EAX,
13036 HalfT, Result.getValue(1));
13037 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13038 Regs64bit ? X86::RDX : X86::EDX,
13039 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013040 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013041 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013042 Results.push_back(cpOutH.getValue(1));
13043 return;
13044 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013045 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013046 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013047 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013048 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013049 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013050 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013051 case ISD::ATOMIC_LOAD_MAX:
13052 case ISD::ATOMIC_LOAD_MIN:
13053 case ISD::ATOMIC_LOAD_UMAX:
13054 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013055 case ISD::ATOMIC_SWAP: {
13056 unsigned Opc;
13057 switch (N->getOpcode()) {
13058 default: llvm_unreachable("Unexpected opcode");
13059 case ISD::ATOMIC_LOAD_ADD:
13060 Opc = X86ISD::ATOMADD64_DAG;
13061 break;
13062 case ISD::ATOMIC_LOAD_AND:
13063 Opc = X86ISD::ATOMAND64_DAG;
13064 break;
13065 case ISD::ATOMIC_LOAD_NAND:
13066 Opc = X86ISD::ATOMNAND64_DAG;
13067 break;
13068 case ISD::ATOMIC_LOAD_OR:
13069 Opc = X86ISD::ATOMOR64_DAG;
13070 break;
13071 case ISD::ATOMIC_LOAD_SUB:
13072 Opc = X86ISD::ATOMSUB64_DAG;
13073 break;
13074 case ISD::ATOMIC_LOAD_XOR:
13075 Opc = X86ISD::ATOMXOR64_DAG;
13076 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013077 case ISD::ATOMIC_LOAD_MAX:
13078 Opc = X86ISD::ATOMMAX64_DAG;
13079 break;
13080 case ISD::ATOMIC_LOAD_MIN:
13081 Opc = X86ISD::ATOMMIN64_DAG;
13082 break;
13083 case ISD::ATOMIC_LOAD_UMAX:
13084 Opc = X86ISD::ATOMUMAX64_DAG;
13085 break;
13086 case ISD::ATOMIC_LOAD_UMIN:
13087 Opc = X86ISD::ATOMUMIN64_DAG;
13088 break;
Craig Topperc0878702012-08-17 06:55:11 +000013089 case ISD::ATOMIC_SWAP:
13090 Opc = X86ISD::ATOMSWAP64_DAG;
13091 break;
13092 }
13093 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013094 return;
Craig Topperc0878702012-08-17 06:55:11 +000013095 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013096 case ISD::ATOMIC_LOAD:
13097 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013098 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013099}
13100
Evan Cheng72261582005-12-20 06:22:03 +000013101const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13102 switch (Opcode) {
13103 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013104 case X86ISD::BSF: return "X86ISD::BSF";
13105 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013106 case X86ISD::SHLD: return "X86ISD::SHLD";
13107 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013108 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013109 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013110 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013111 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013112 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013113 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013114 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013115 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13116 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13117 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013118 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013119 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013120 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013121 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013122 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013123 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013124 case X86ISD::COMI: return "X86ISD::COMI";
13125 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000013126 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013127 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013128 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13129 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013130 case X86ISD::CMOV: return "X86ISD::CMOV";
13131 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013132 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013133 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13134 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013135 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013136 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013137 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013138 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013139 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013140 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13141 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013142 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013143 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013144 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013145 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013146 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013147 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013148 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013149 case X86ISD::HADD: return "X86ISD::HADD";
13150 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013151 case X86ISD::FHADD: return "X86ISD::FHADD";
13152 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013153 case X86ISD::UMAX: return "X86ISD::UMAX";
13154 case X86ISD::UMIN: return "X86ISD::UMIN";
13155 case X86ISD::SMAX: return "X86ISD::SMAX";
13156 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013157 case X86ISD::FMAX: return "X86ISD::FMAX";
13158 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013159 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13160 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013161 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13162 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013163 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013164 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013165 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013166 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13167 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013168 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013169 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013170 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013171 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013172 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13173 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013174 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13175 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13176 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13177 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13178 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13179 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013180 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013181 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013182 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013183 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13184 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Michael Liao7091b242012-08-14 21:24:47 +000013185 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013186 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013187 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13188 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013189 case X86ISD::VSHL: return "X86ISD::VSHL";
13190 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013191 case X86ISD::VSRA: return "X86ISD::VSRA";
13192 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13193 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13194 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013195 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013196 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13197 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013198 case X86ISD::ADD: return "X86ISD::ADD";
13199 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013200 case X86ISD::ADC: return "X86ISD::ADC";
13201 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013202 case X86ISD::SMUL: return "X86ISD::SMUL";
13203 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013204 case X86ISD::INC: return "X86ISD::INC";
13205 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013206 case X86ISD::OR: return "X86ISD::OR";
13207 case X86ISD::XOR: return "X86ISD::XOR";
13208 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013209 case X86ISD::BLSI: return "X86ISD::BLSI";
13210 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13211 case X86ISD::BLSR: return "X86ISD::BLSR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013212 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013213 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013214 case X86ISD::TESTP: return "X86ISD::TESTP";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013215 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013216 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13217 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013218 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013219 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013220 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013221 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013222 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013223 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13224 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013225 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13226 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13227 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013228 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13229 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013230 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13231 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013232 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Craig Topper316cd2a2011-11-30 06:25:25 +000013233 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013234 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013235 case X86ISD::VPERMV: return "X86ISD::VPERMV";
13236 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013237 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013238 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013239 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013240 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013241 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013242 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013243 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013244 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013245 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013246 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013247 case X86ISD::FMADD: return "X86ISD::FMADD";
13248 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13249 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13250 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13251 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13252 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013253 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13254 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013255 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013256 }
13257}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013258
Chris Lattnerc9addb72007-03-30 23:15:24 +000013259// isLegalAddressingMode - Return true if the addressing mode represented
13260// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013261bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013262 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013263 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013264 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013265 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013266
Chris Lattnerc9addb72007-03-30 23:15:24 +000013267 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013268 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013269 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013270
Chris Lattnerc9addb72007-03-30 23:15:24 +000013271 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013272 unsigned GVFlags =
13273 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013274
Chris Lattnerdfed4132009-07-10 07:38:24 +000013275 // If a reference to this global requires an extra load, we can't fold it.
13276 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013277 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013278
Chris Lattnerdfed4132009-07-10 07:38:24 +000013279 // If BaseGV requires a register for the PIC base, we cannot also have a
13280 // BaseReg specified.
13281 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013282 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013283
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013284 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013285 if ((M != CodeModel::Small || R != Reloc::Static) &&
13286 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013287 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013288 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013289
Chris Lattnerc9addb72007-03-30 23:15:24 +000013290 switch (AM.Scale) {
13291 case 0:
13292 case 1:
13293 case 2:
13294 case 4:
13295 case 8:
13296 // These scales always work.
13297 break;
13298 case 3:
13299 case 5:
13300 case 9:
13301 // These scales are formed with basereg+scalereg. Only accept if there is
13302 // no basereg yet.
13303 if (AM.HasBaseReg)
13304 return false;
13305 break;
13306 default: // Other stuff never works.
13307 return false;
13308 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013309
Chris Lattnerc9addb72007-03-30 23:15:24 +000013310 return true;
13311}
13312
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013313bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013314 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013315 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013316 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13317 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013318 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013319}
13320
Tim Northoverd1134482013-08-06 09:12:35 +000013321bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13322 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13323 return false;
13324
13325 if (!isTypeLegal(EVT::getEVT(Ty1)))
13326 return false;
13327
13328 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13329
13330 // Assuming the caller doesn't have a zeroext or signext return parameter,
13331 // truncation all the way down to i1 is valid.
13332 return true;
13333}
13334
Evan Cheng70e10d32012-07-17 06:53:39 +000013335bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013336 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013337}
13338
13339bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013340 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013341 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013342}
13343
Owen Andersone50ed302009-08-10 22:56:29 +000013344bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013345 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013346 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013347 unsigned NumBits1 = VT1.getSizeInBits();
13348 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013349 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013350}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013351
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013352bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013353 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013354 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013355}
13356
Owen Andersone50ed302009-08-10 22:56:29 +000013357bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013358 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013359 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013360}
13361
Evan Cheng2766a472012-12-06 19:13:27 +000013362bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13363 EVT VT1 = Val.getValueType();
13364 if (isZExtFree(VT1, VT2))
13365 return true;
13366
13367 if (Val.getOpcode() != ISD::LOAD)
13368 return false;
13369
13370 if (!VT1.isSimple() || !VT1.isInteger() ||
13371 !VT2.isSimple() || !VT2.isInteger())
13372 return false;
13373
13374 switch (VT1.getSimpleVT().SimpleTy) {
13375 default: break;
13376 case MVT::i8:
13377 case MVT::i16:
13378 case MVT::i32:
13379 // X86 has 8, 16, and 32-bit zero-extending loads.
13380 return true;
13381 }
13382
13383 return false;
13384}
13385
Stephen Line54885a2013-07-09 18:16:56 +000013386bool
13387X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13388 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13389 return false;
13390
13391 VT = VT.getScalarType();
13392
13393 if (!VT.isSimple())
13394 return false;
13395
13396 switch (VT.getSimpleVT().SimpleTy) {
13397 case MVT::f32:
13398 case MVT::f64:
13399 return true;
13400 default:
13401 break;
13402 }
13403
13404 return false;
13405}
13406
Owen Andersone50ed302009-08-10 22:56:29 +000013407bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013408 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013409 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013410}
13411
Evan Cheng60c07e12006-07-05 22:17:51 +000013412/// isShuffleMaskLegal - Targets can use this to indicate that they only
13413/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13414/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13415/// are assumed to be legal.
13416bool
Eric Christopherfd179292009-08-27 18:07:15 +000013417X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013418 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000013419 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013420 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013421 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013422
Nate Begemana09008b2009-10-19 02:17:23 +000013423 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000013424 return (VT.getVectorNumElements() == 2 ||
13425 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13426 isMOVLMask(M, VT) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013427 isSHUFPMask(M, VT, Subtarget->hasFp256()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013428 isPSHUFDMask(M, VT) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013429 isPSHUFHWMask(M, VT, Subtarget->hasInt256()) ||
13430 isPSHUFLWMask(M, VT, Subtarget->hasInt256()) ||
Craig Topper0e2037b2012-01-20 05:53:00 +000013431 isPALIGNRMask(M, VT, Subtarget) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013432 isUNPCKLMask(M, VT, Subtarget->hasInt256()) ||
13433 isUNPCKHMask(M, VT, Subtarget->hasInt256()) ||
13434 isUNPCKL_v_undef_Mask(M, VT, Subtarget->hasInt256()) ||
13435 isUNPCKH_v_undef_Mask(M, VT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000013436}
13437
Dan Gohman7d8143f2008-04-09 20:09:42 +000013438bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000013439X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000013440 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000013441 unsigned NumElts = VT.getVectorNumElements();
13442 // FIXME: This collection of masks seems suspect.
13443 if (NumElts == 2)
13444 return true;
Craig Topper7a9a28b2012-08-12 02:23:29 +000013445 if (NumElts == 4 && VT.is128BitVector()) {
Nate Begeman9008ca62009-04-27 18:41:29 +000013446 return (isMOVLMask(Mask, VT) ||
13447 isCommutedMOVLMask(Mask, VT, true) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013448 isSHUFPMask(Mask, VT, Subtarget->hasFp256()) ||
13449 isSHUFPMask(Mask, VT, Subtarget->hasFp256(), /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000013450 }
13451 return false;
13452}
13453
13454//===----------------------------------------------------------------------===//
13455// X86 Scheduler Hooks
13456//===----------------------------------------------------------------------===//
13457
Michael Liaobe02a902012-11-08 07:28:54 +000013458/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000013459static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
13460 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000013461 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000013462
13463 const BasicBlock *BB = MBB->getBasicBlock();
13464 MachineFunction::iterator I = MBB;
13465 ++I;
13466
13467 // For the v = xbegin(), we generate
13468 //
13469 // thisMBB:
13470 // xbegin sinkMBB
13471 //
13472 // mainMBB:
13473 // eax = -1
13474 //
13475 // sinkMBB:
13476 // v = eax
13477
13478 MachineBasicBlock *thisMBB = MBB;
13479 MachineFunction *MF = MBB->getParent();
13480 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13481 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13482 MF->insert(I, mainMBB);
13483 MF->insert(I, sinkMBB);
13484
13485 // Transfer the remainder of BB and its successor edges to sinkMBB.
13486 sinkMBB->splice(sinkMBB->begin(), MBB,
13487 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13488 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13489
13490 // thisMBB:
13491 // xbegin sinkMBB
13492 // # fallthrough to mainMBB
13493 // # abortion to sinkMBB
13494 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
13495 thisMBB->addSuccessor(mainMBB);
13496 thisMBB->addSuccessor(sinkMBB);
13497
13498 // mainMBB:
13499 // EAX = -1
13500 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
13501 mainMBB->addSuccessor(sinkMBB);
13502
13503 // sinkMBB:
13504 // EAX is live into the sinkMBB
13505 sinkMBB->addLiveIn(X86::EAX);
13506 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13507 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
13508 .addReg(X86::EAX);
13509
13510 MI->eraseFromParent();
13511 return sinkMBB;
13512}
13513
Michael Liaob118a072012-09-20 03:06:15 +000013514// Get CMPXCHG opcode for the specified data type.
13515static unsigned getCmpXChgOpcode(EVT VT) {
13516 switch (VT.getSimpleVT().SimpleTy) {
13517 case MVT::i8: return X86::LCMPXCHG8;
13518 case MVT::i16: return X86::LCMPXCHG16;
13519 case MVT::i32: return X86::LCMPXCHG32;
13520 case MVT::i64: return X86::LCMPXCHG64;
13521 default:
13522 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000013523 }
Michael Liaob118a072012-09-20 03:06:15 +000013524 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000013525}
13526
Michael Liaob118a072012-09-20 03:06:15 +000013527// Get LOAD opcode for the specified data type.
13528static unsigned getLoadOpcode(EVT VT) {
13529 switch (VT.getSimpleVT().SimpleTy) {
13530 case MVT::i8: return X86::MOV8rm;
13531 case MVT::i16: return X86::MOV16rm;
13532 case MVT::i32: return X86::MOV32rm;
13533 case MVT::i64: return X86::MOV64rm;
13534 default:
13535 break;
13536 }
13537 llvm_unreachable("Invalid operand size!");
13538}
13539
13540// Get opcode of the non-atomic one from the specified atomic instruction.
13541static unsigned getNonAtomicOpcode(unsigned Opc) {
13542 switch (Opc) {
13543 case X86::ATOMAND8: return X86::AND8rr;
13544 case X86::ATOMAND16: return X86::AND16rr;
13545 case X86::ATOMAND32: return X86::AND32rr;
13546 case X86::ATOMAND64: return X86::AND64rr;
13547 case X86::ATOMOR8: return X86::OR8rr;
13548 case X86::ATOMOR16: return X86::OR16rr;
13549 case X86::ATOMOR32: return X86::OR32rr;
13550 case X86::ATOMOR64: return X86::OR64rr;
13551 case X86::ATOMXOR8: return X86::XOR8rr;
13552 case X86::ATOMXOR16: return X86::XOR16rr;
13553 case X86::ATOMXOR32: return X86::XOR32rr;
13554 case X86::ATOMXOR64: return X86::XOR64rr;
13555 }
13556 llvm_unreachable("Unhandled atomic-load-op opcode!");
13557}
13558
13559// Get opcode of the non-atomic one from the specified atomic instruction with
13560// extra opcode.
13561static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
13562 unsigned &ExtraOpc) {
13563 switch (Opc) {
13564 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
13565 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
13566 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
13567 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000013568 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000013569 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
13570 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
13571 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000013572 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000013573 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
13574 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
13575 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000013576 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000013577 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
13578 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
13579 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000013580 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000013581 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
13582 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
13583 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
13584 }
13585 llvm_unreachable("Unhandled atomic-load-op opcode!");
13586}
13587
13588// Get opcode of the non-atomic one from the specified atomic instruction for
13589// 64-bit data type on 32-bit target.
13590static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
13591 switch (Opc) {
13592 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
13593 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
13594 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
13595 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
13596 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
13597 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013598 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
13599 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
13600 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
13601 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000013602 }
13603 llvm_unreachable("Unhandled atomic-load-op opcode!");
13604}
13605
13606// Get opcode of the non-atomic one from the specified atomic instruction for
13607// 64-bit data type on 32-bit target with extra opcode.
13608static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
13609 unsigned &HiOpc,
13610 unsigned &ExtraOpc) {
13611 switch (Opc) {
13612 case X86::ATOMNAND6432:
13613 ExtraOpc = X86::NOT32r;
13614 HiOpc = X86::AND32rr;
13615 return X86::AND32rr;
13616 }
13617 llvm_unreachable("Unhandled atomic-load-op opcode!");
13618}
13619
13620// Get pseudo CMOV opcode from the specified data type.
13621static unsigned getPseudoCMOVOpc(EVT VT) {
13622 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000013623 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000013624 case MVT::i16: return X86::CMOV_GR16;
13625 case MVT::i32: return X86::CMOV_GR32;
13626 default:
13627 break;
13628 }
13629 llvm_unreachable("Unknown CMOV opcode!");
13630}
13631
13632// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
13633// They will be translated into a spin-loop or compare-exchange loop from
13634//
13635// ...
13636// dst = atomic-fetch-op MI.addr, MI.val
13637// ...
13638//
13639// to
13640//
13641// ...
Michael Liaoc537f792013-03-06 00:17:04 +000013642// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000013643// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000013644// t4 = phi(t1, t3 / loop)
13645// t2 = OP MI.val, t4
13646// EAX = t4
13647// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
13648// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000013649// JNE loop
13650// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000013651// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000013652// ...
Mon P Wang63307c32008-05-05 19:05:59 +000013653MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000013654X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
13655 MachineBasicBlock *MBB) const {
13656 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13657 DebugLoc DL = MI->getDebugLoc();
13658
13659 MachineFunction *MF = MBB->getParent();
13660 MachineRegisterInfo &MRI = MF->getRegInfo();
13661
13662 const BasicBlock *BB = MBB->getBasicBlock();
13663 MachineFunction::iterator I = MBB;
13664 ++I;
13665
Michael Liao13d08bf2013-01-22 21:47:38 +000013666 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000013667 "Unexpected number of operands");
13668
13669 assert(MI->hasOneMemOperand() &&
13670 "Expected atomic-load-op to have one memoperand");
13671
13672 // Memory Reference
13673 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13674 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13675
13676 unsigned DstReg, SrcReg;
13677 unsigned MemOpndSlot;
13678
13679 unsigned CurOp = 0;
13680
13681 DstReg = MI->getOperand(CurOp++).getReg();
13682 MemOpndSlot = CurOp;
13683 CurOp += X86::AddrNumOperands;
13684 SrcReg = MI->getOperand(CurOp++).getReg();
13685
13686 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000013687 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000013688 unsigned t1 = MRI.createVirtualRegister(RC);
13689 unsigned t2 = MRI.createVirtualRegister(RC);
13690 unsigned t3 = MRI.createVirtualRegister(RC);
13691 unsigned t4 = MRI.createVirtualRegister(RC);
13692 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000013693
13694 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
13695 unsigned LOADOpc = getLoadOpcode(VT);
13696
13697 // For the atomic load-arith operator, we generate
13698 //
13699 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013700 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000013701 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013702 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000013703 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000013704 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000013705 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000013706 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000013707 // JNE mainMBB
13708 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013709 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000013710
13711 MachineBasicBlock *thisMBB = MBB;
13712 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13713 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13714 MF->insert(I, mainMBB);
13715 MF->insert(I, sinkMBB);
13716
13717 MachineInstrBuilder MIB;
13718
13719 // Transfer the remainder of BB and its successor edges to sinkMBB.
13720 sinkMBB->splice(sinkMBB->begin(), MBB,
13721 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13722 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13723
13724 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013725 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
13726 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13727 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
13728 if (NewMO.isReg())
13729 NewMO.setIsKill(false);
13730 MIB.addOperand(NewMO);
13731 }
13732 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
13733 unsigned flags = (*MMOI)->getFlags();
13734 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
13735 MachineMemOperand *MMO =
13736 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
13737 (*MMOI)->getSize(),
13738 (*MMOI)->getBaseAlignment(),
13739 (*MMOI)->getTBAAInfo(),
13740 (*MMOI)->getRanges());
13741 MIB.addMemOperand(MMO);
13742 }
Michael Liaob118a072012-09-20 03:06:15 +000013743
13744 thisMBB->addSuccessor(mainMBB);
13745
13746 // mainMBB:
13747 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000013748
Michael Liaoc537f792013-03-06 00:17:04 +000013749 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000013750 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
13751 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000013752
Michael Liaob118a072012-09-20 03:06:15 +000013753 unsigned Opc = MI->getOpcode();
13754 switch (Opc) {
13755 default:
13756 llvm_unreachable("Unhandled atomic-load-op opcode!");
13757 case X86::ATOMAND8:
13758 case X86::ATOMAND16:
13759 case X86::ATOMAND32:
13760 case X86::ATOMAND64:
13761 case X86::ATOMOR8:
13762 case X86::ATOMOR16:
13763 case X86::ATOMOR32:
13764 case X86::ATOMOR64:
13765 case X86::ATOMXOR8:
13766 case X86::ATOMXOR16:
13767 case X86::ATOMXOR32:
13768 case X86::ATOMXOR64: {
13769 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000013770 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
13771 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000013772 break;
13773 }
13774 case X86::ATOMNAND8:
13775 case X86::ATOMNAND16:
13776 case X86::ATOMNAND32:
13777 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000013778 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000013779 unsigned NOTOpc;
13780 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000013781 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
13782 .addReg(t4);
13783 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000013784 break;
13785 }
Michael Liao08382492012-09-21 03:00:17 +000013786 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000013787 case X86::ATOMMAX16:
13788 case X86::ATOMMAX32:
13789 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000013790 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000013791 case X86::ATOMMIN16:
13792 case X86::ATOMMIN32:
13793 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000013794 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000013795 case X86::ATOMUMAX16:
13796 case X86::ATOMUMAX32:
13797 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000013798 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000013799 case X86::ATOMUMIN16:
13800 case X86::ATOMUMIN32:
13801 case X86::ATOMUMIN64: {
13802 unsigned CMPOpc;
13803 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
13804
13805 BuildMI(mainMBB, DL, TII->get(CMPOpc))
13806 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000013807 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000013808
13809 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000013810 if (VT != MVT::i8) {
13811 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000013812 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000013813 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000013814 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000013815 } else {
13816 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000013817 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
13818 const TargetRegisterClass *RC32 =
13819 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000013820 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
13821 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000013822 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000013823
13824 unsigned Undef = MRI.createVirtualRegister(RC32);
13825 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
13826
13827 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
13828 .addReg(Undef)
13829 .addReg(SrcReg)
13830 .addImm(X86::sub_8bit);
13831 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
13832 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000013833 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000013834 .addImm(X86::sub_8bit);
13835
Michael Liaoc537f792013-03-06 00:17:04 +000013836 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000013837 .addReg(SrcReg32)
13838 .addReg(AccReg32);
13839
Michael Liaoc537f792013-03-06 00:17:04 +000013840 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
13841 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000013842 }
Michael Liaob118a072012-09-20 03:06:15 +000013843 } else {
13844 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000013845 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000013846 "Invalid atomic-load-op transformation!");
13847 unsigned SelOpc = getPseudoCMOVOpc(VT);
13848 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
13849 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000013850 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
13851 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000013852 .addImm(CC);
13853 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000013854 // Replace the original PHI node as mainMBB is changed after CMOV
13855 // lowering.
13856 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
13857 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
13858 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000013859 }
13860 break;
13861 }
13862 }
13863
Michael Liaoc537f792013-03-06 00:17:04 +000013864 // Copy PhyReg back from virtual register.
13865 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
13866 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000013867
13868 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000013869 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13870 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
13871 if (NewMO.isReg())
13872 NewMO.setIsKill(false);
13873 MIB.addOperand(NewMO);
13874 }
13875 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000013876 MIB.setMemRefs(MMOBegin, MMOEnd);
13877
Michael Liaoc537f792013-03-06 00:17:04 +000013878 // Copy PhyReg back to virtual register.
13879 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
13880 .addReg(PhyReg);
13881
Michael Liaob118a072012-09-20 03:06:15 +000013882 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
13883
13884 mainMBB->addSuccessor(origMainMBB);
13885 mainMBB->addSuccessor(sinkMBB);
13886
13887 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000013888 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13889 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000013890 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000013891
13892 MI->eraseFromParent();
13893 return sinkMBB;
13894}
13895
13896// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
13897// instructions. They will be translated into a spin-loop or compare-exchange
13898// loop from
13899//
13900// ...
13901// dst = atomic-fetch-op MI.addr, MI.val
13902// ...
13903//
13904// to
13905//
13906// ...
Michael Liaoc537f792013-03-06 00:17:04 +000013907// t1L = LOAD [MI.addr + 0]
13908// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000013909// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000013910// t4L = phi(t1L, t3L / loop)
13911// t4H = phi(t1H, t3H / loop)
13912// t2L = OP MI.val.lo, t4L
13913// t2H = OP MI.val.hi, t4H
13914// EAX = t4L
13915// EDX = t4H
13916// EBX = t2L
13917// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000013918// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000013919// t3L = EAX
13920// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000013921// JNE loop
13922// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000013923// dstL = t3L
13924// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000013925// ...
13926MachineBasicBlock *
13927X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
13928 MachineBasicBlock *MBB) const {
13929 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13930 DebugLoc DL = MI->getDebugLoc();
13931
13932 MachineFunction *MF = MBB->getParent();
13933 MachineRegisterInfo &MRI = MF->getRegInfo();
13934
13935 const BasicBlock *BB = MBB->getBasicBlock();
13936 MachineFunction::iterator I = MBB;
13937 ++I;
13938
Michael Liao13d08bf2013-01-22 21:47:38 +000013939 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000013940 "Unexpected number of operands");
13941
13942 assert(MI->hasOneMemOperand() &&
13943 "Expected atomic-load-op32 to have one memoperand");
13944
13945 // Memory Reference
13946 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13947 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13948
13949 unsigned DstLoReg, DstHiReg;
13950 unsigned SrcLoReg, SrcHiReg;
13951 unsigned MemOpndSlot;
13952
13953 unsigned CurOp = 0;
13954
13955 DstLoReg = MI->getOperand(CurOp++).getReg();
13956 DstHiReg = MI->getOperand(CurOp++).getReg();
13957 MemOpndSlot = CurOp;
13958 CurOp += X86::AddrNumOperands;
13959 SrcLoReg = MI->getOperand(CurOp++).getReg();
13960 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013961
Craig Topperc9099502012-04-20 06:31:50 +000013962 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013963 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000013964
Michael Liaoc537f792013-03-06 00:17:04 +000013965 unsigned t1L = MRI.createVirtualRegister(RC);
13966 unsigned t1H = MRI.createVirtualRegister(RC);
13967 unsigned t2L = MRI.createVirtualRegister(RC);
13968 unsigned t2H = MRI.createVirtualRegister(RC);
13969 unsigned t3L = MRI.createVirtualRegister(RC);
13970 unsigned t3H = MRI.createVirtualRegister(RC);
13971 unsigned t4L = MRI.createVirtualRegister(RC);
13972 unsigned t4H = MRI.createVirtualRegister(RC);
13973
Michael Liaob118a072012-09-20 03:06:15 +000013974 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
13975 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000013976
Michael Liaob118a072012-09-20 03:06:15 +000013977 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000013978 //
Michael Liaob118a072012-09-20 03:06:15 +000013979 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013980 // t1L = LOAD [MI.addr + 0]
13981 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000013982 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013983 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
13984 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
13985 // t2L = OP MI.val.lo, t4L
13986 // t2H = OP MI.val.hi, t4H
13987 // EBX = t2L
13988 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000013989 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000013990 // t3L = EAX
13991 // t3H = EDX
13992 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000013993 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000013994 // dstL = t3L
13995 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000013996
Mon P Wang63307c32008-05-05 19:05:59 +000013997 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000013998 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13999 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14000 MF->insert(I, mainMBB);
14001 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014002
Michael Liaob118a072012-09-20 03:06:15 +000014003 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014004
Michael Liaob118a072012-09-20 03:06:15 +000014005 // Transfer the remainder of BB and its successor edges to sinkMBB.
14006 sinkMBB->splice(sinkMBB->begin(), MBB,
14007 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14008 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014009
Michael Liaob118a072012-09-20 03:06:15 +000014010 // thisMBB:
14011 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014012 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014013 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014014 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14015 if (NewMO.isReg())
14016 NewMO.setIsKill(false);
14017 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014018 }
Michael Liaoc537f792013-03-06 00:17:04 +000014019 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14020 unsigned flags = (*MMOI)->getFlags();
14021 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14022 MachineMemOperand *MMO =
14023 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14024 (*MMOI)->getSize(),
14025 (*MMOI)->getBaseAlignment(),
14026 (*MMOI)->getTBAAInfo(),
14027 (*MMOI)->getRanges());
14028 MIB.addMemOperand(MMO);
14029 };
14030 MachineInstr *LowMI = MIB;
14031
14032 // Hi
14033 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14034 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14035 if (i == X86::AddrDisp) {
14036 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14037 } else {
14038 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14039 if (NewMO.isReg())
14040 NewMO.setIsKill(false);
14041 MIB.addOperand(NewMO);
14042 }
14043 }
14044 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014045
Michael Liaob118a072012-09-20 03:06:15 +000014046 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014047
Michael Liaob118a072012-09-20 03:06:15 +000014048 // mainMBB:
14049 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014050
Michael Liaoc537f792013-03-06 00:17:04 +000014051 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014052 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14053 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14054 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14055 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014056
Michael Liaob118a072012-09-20 03:06:15 +000014057 unsigned Opc = MI->getOpcode();
14058 switch (Opc) {
14059 default:
14060 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14061 case X86::ATOMAND6432:
14062 case X86::ATOMOR6432:
14063 case X86::ATOMXOR6432:
14064 case X86::ATOMADD6432:
14065 case X86::ATOMSUB6432: {
14066 unsigned HiOpc;
14067 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014068 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14069 .addReg(SrcLoReg);
14070 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14071 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014072 break;
14073 }
14074 case X86::ATOMNAND6432: {
14075 unsigned HiOpc, NOTOpc;
14076 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014077 unsigned TmpL = MRI.createVirtualRegister(RC);
14078 unsigned TmpH = MRI.createVirtualRegister(RC);
14079 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14080 .addReg(t4L);
14081 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14082 .addReg(t4H);
14083 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14084 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014085 break;
14086 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014087 case X86::ATOMMAX6432:
14088 case X86::ATOMMIN6432:
14089 case X86::ATOMUMAX6432:
14090 case X86::ATOMUMIN6432: {
14091 unsigned HiOpc;
14092 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14093 unsigned cL = MRI.createVirtualRegister(RC8);
14094 unsigned cH = MRI.createVirtualRegister(RC8);
14095 unsigned cL32 = MRI.createVirtualRegister(RC);
14096 unsigned cH32 = MRI.createVirtualRegister(RC);
14097 unsigned cc = MRI.createVirtualRegister(RC);
14098 // cl := cmp src_lo, lo
14099 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014100 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014101 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14102 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14103 // ch := cmp src_hi, hi
14104 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014105 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014106 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14107 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14108 // cc := if (src_hi == hi) ? cl : ch;
14109 if (Subtarget->hasCMov()) {
14110 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14111 .addReg(cH32).addReg(cL32);
14112 } else {
14113 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14114 .addReg(cH32).addReg(cL32)
14115 .addImm(X86::COND_E);
14116 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14117 }
14118 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14119 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014120 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14121 .addReg(SrcLoReg).addReg(t4L);
14122 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14123 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014124 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014125 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14126 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014127 .addImm(X86::COND_NE);
14128 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014129 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14130 // 2nd CMOV lowering.
14131 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014132 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14133 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014134 .addImm(X86::COND_NE);
14135 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014136 // Replace the original PHI node as mainMBB is changed after CMOV
14137 // lowering.
14138 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14139 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14140 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14141 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14142 PhiL->eraseFromParent();
14143 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014144 }
14145 break;
14146 }
Michael Liaob118a072012-09-20 03:06:15 +000014147 case X86::ATOMSWAP6432: {
14148 unsigned HiOpc;
14149 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014150 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14151 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014152 break;
14153 }
14154 }
Mon P Wang63307c32008-05-05 19:05:59 +000014155
Michael Liaob118a072012-09-20 03:06:15 +000014156 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014157 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14158 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014159 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014160 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14161 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014162
Michael Liaob118a072012-09-20 03:06:15 +000014163 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014164 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14165 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14166 if (NewMO.isReg())
14167 NewMO.setIsKill(false);
14168 MIB.addOperand(NewMO);
14169 }
Michael Liaob118a072012-09-20 03:06:15 +000014170 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014171
Michael Liaoc537f792013-03-06 00:17:04 +000014172 // Copy EDX:EAX back to t3H:t3L
14173 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14174 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14175
Michael Liaob118a072012-09-20 03:06:15 +000014176 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014177
Michael Liaob118a072012-09-20 03:06:15 +000014178 mainMBB->addSuccessor(origMainMBB);
14179 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014180
Michael Liaob118a072012-09-20 03:06:15 +000014181 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014182 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14183 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014184 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014185 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14186 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014187 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014188
Michael Liaob118a072012-09-20 03:06:15 +000014189 MI->eraseFromParent();
14190 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014191}
14192
Eric Christopherf83a5de2009-08-27 18:08:16 +000014193// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014194// or XMM0_V32I8 in AVX all of this code can be replaced with that
14195// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014196static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14197 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014198 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014199 switch (MI->getOpcode()) {
14200 default: llvm_unreachable("illegal opcode!");
14201 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14202 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14203 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14204 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14205 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14206 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14207 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14208 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014209 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014210
Craig Topper8aae8dd2012-11-10 08:57:41 +000014211 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014212 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014213
Craig Topper52ea2452012-11-10 09:25:36 +000014214 unsigned NumArgs = MI->getNumOperands();
14215 for (unsigned i = 1; i < NumArgs; ++i) {
14216 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014217 if (!(Op.isReg() && Op.isImplicit()))
14218 MIB.addOperand(Op);
14219 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014220 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014221 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14222
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014223 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014224 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014225 .addReg(X86::XMM0);
14226
Dan Gohman14152b42010-07-06 20:24:04 +000014227 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014228 return BB;
14229}
14230
Craig Topper9c7ae012012-11-10 01:23:36 +000014231// FIXME: Custom handling because TableGen doesn't support multiple implicit
14232// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014233static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14234 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014235 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014236 switch (MI->getOpcode()) {
14237 default: llvm_unreachable("illegal opcode!");
14238 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14239 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14240 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14241 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14242 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14243 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14244 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14245 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014246 }
14247
Craig Topper8aae8dd2012-11-10 08:57:41 +000014248 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014249 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014250
Craig Topper52ea2452012-11-10 09:25:36 +000014251 unsigned NumArgs = MI->getNumOperands(); // remove the results
14252 for (unsigned i = 1; i < NumArgs; ++i) {
14253 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014254 if (!(Op.isReg() && Op.isImplicit()))
14255 MIB.addOperand(Op);
14256 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014257 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014258 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14259
14260 BuildMI(*BB, MI, dl,
14261 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14262 .addReg(X86::ECX);
14263
14264 MI->eraseFromParent();
14265 return BB;
14266}
14267
Craig Topper2da36912012-11-11 22:45:02 +000014268static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14269 const TargetInstrInfo *TII,
14270 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014271 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014272
Eric Christopher228232b2010-11-30 07:20:12 +000014273 // Address into RAX/EAX, other two args into ECX, EDX.
14274 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14275 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14276 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14277 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014278 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014279
Eric Christopher228232b2010-11-30 07:20:12 +000014280 unsigned ValOps = X86::AddrNumOperands;
14281 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14282 .addReg(MI->getOperand(ValOps).getReg());
14283 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14284 .addReg(MI->getOperand(ValOps+1).getReg());
14285
14286 // The instruction doesn't actually take any operands though.
14287 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014288
Eric Christopher228232b2010-11-30 07:20:12 +000014289 MI->eraseFromParent(); // The pseudo is gone now.
14290 return BB;
14291}
14292
14293MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014294X86TargetLowering::EmitVAARG64WithCustomInserter(
14295 MachineInstr *MI,
14296 MachineBasicBlock *MBB) const {
14297 // Emit va_arg instruction on X86-64.
14298
14299 // Operands to this pseudo-instruction:
14300 // 0 ) Output : destination address (reg)
14301 // 1-5) Input : va_list address (addr, i64mem)
14302 // 6 ) ArgSize : Size (in bytes) of vararg type
14303 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14304 // 8 ) Align : Alignment of type
14305 // 9 ) EFLAGS (implicit-def)
14306
14307 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14308 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14309
14310 unsigned DestReg = MI->getOperand(0).getReg();
14311 MachineOperand &Base = MI->getOperand(1);
14312 MachineOperand &Scale = MI->getOperand(2);
14313 MachineOperand &Index = MI->getOperand(3);
14314 MachineOperand &Disp = MI->getOperand(4);
14315 MachineOperand &Segment = MI->getOperand(5);
14316 unsigned ArgSize = MI->getOperand(6).getImm();
14317 unsigned ArgMode = MI->getOperand(7).getImm();
14318 unsigned Align = MI->getOperand(8).getImm();
14319
14320 // Memory Reference
14321 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14322 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14323 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14324
14325 // Machine Information
14326 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14327 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14328 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14329 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14330 DebugLoc DL = MI->getDebugLoc();
14331
14332 // struct va_list {
14333 // i32 gp_offset
14334 // i32 fp_offset
14335 // i64 overflow_area (address)
14336 // i64 reg_save_area (address)
14337 // }
14338 // sizeof(va_list) = 24
14339 // alignment(va_list) = 8
14340
14341 unsigned TotalNumIntRegs = 6;
14342 unsigned TotalNumXMMRegs = 8;
14343 bool UseGPOffset = (ArgMode == 1);
14344 bool UseFPOffset = (ArgMode == 2);
14345 unsigned MaxOffset = TotalNumIntRegs * 8 +
14346 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14347
14348 /* Align ArgSize to a multiple of 8 */
14349 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14350 bool NeedsAlign = (Align > 8);
14351
14352 MachineBasicBlock *thisMBB = MBB;
14353 MachineBasicBlock *overflowMBB;
14354 MachineBasicBlock *offsetMBB;
14355 MachineBasicBlock *endMBB;
14356
14357 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14358 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14359 unsigned OffsetReg = 0;
14360
14361 if (!UseGPOffset && !UseFPOffset) {
14362 // If we only pull from the overflow region, we don't create a branch.
14363 // We don't need to alter control flow.
14364 OffsetDestReg = 0; // unused
14365 OverflowDestReg = DestReg;
14366
14367 offsetMBB = NULL;
14368 overflowMBB = thisMBB;
14369 endMBB = thisMBB;
14370 } else {
14371 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14372 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14373 // If not, pull from overflow_area. (branch to overflowMBB)
14374 //
14375 // thisMBB
14376 // | .
14377 // | .
14378 // offsetMBB overflowMBB
14379 // | .
14380 // | .
14381 // endMBB
14382
14383 // Registers for the PHI in endMBB
14384 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14385 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14386
14387 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14388 MachineFunction *MF = MBB->getParent();
14389 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14390 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14391 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14392
14393 MachineFunction::iterator MBBIter = MBB;
14394 ++MBBIter;
14395
14396 // Insert the new basic blocks
14397 MF->insert(MBBIter, offsetMBB);
14398 MF->insert(MBBIter, overflowMBB);
14399 MF->insert(MBBIter, endMBB);
14400
14401 // Transfer the remainder of MBB and its successor edges to endMBB.
14402 endMBB->splice(endMBB->begin(), thisMBB,
14403 llvm::next(MachineBasicBlock::iterator(MI)),
14404 thisMBB->end());
14405 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14406
14407 // Make offsetMBB and overflowMBB successors of thisMBB
14408 thisMBB->addSuccessor(offsetMBB);
14409 thisMBB->addSuccessor(overflowMBB);
14410
14411 // endMBB is a successor of both offsetMBB and overflowMBB
14412 offsetMBB->addSuccessor(endMBB);
14413 overflowMBB->addSuccessor(endMBB);
14414
14415 // Load the offset value into a register
14416 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14417 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14418 .addOperand(Base)
14419 .addOperand(Scale)
14420 .addOperand(Index)
14421 .addDisp(Disp, UseFPOffset ? 4 : 0)
14422 .addOperand(Segment)
14423 .setMemRefs(MMOBegin, MMOEnd);
14424
14425 // Check if there is enough room left to pull this argument.
14426 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14427 .addReg(OffsetReg)
14428 .addImm(MaxOffset + 8 - ArgSizeA8);
14429
14430 // Branch to "overflowMBB" if offset >= max
14431 // Fall through to "offsetMBB" otherwise
14432 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14433 .addMBB(overflowMBB);
14434 }
14435
14436 // In offsetMBB, emit code to use the reg_save_area.
14437 if (offsetMBB) {
14438 assert(OffsetReg != 0);
14439
14440 // Read the reg_save_area address.
14441 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14442 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14443 .addOperand(Base)
14444 .addOperand(Scale)
14445 .addOperand(Index)
14446 .addDisp(Disp, 16)
14447 .addOperand(Segment)
14448 .setMemRefs(MMOBegin, MMOEnd);
14449
14450 // Zero-extend the offset
14451 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14452 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14453 .addImm(0)
14454 .addReg(OffsetReg)
14455 .addImm(X86::sub_32bit);
14456
14457 // Add the offset to the reg_save_area to get the final address.
14458 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
14459 .addReg(OffsetReg64)
14460 .addReg(RegSaveReg);
14461
14462 // Compute the offset for the next argument
14463 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14464 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
14465 .addReg(OffsetReg)
14466 .addImm(UseFPOffset ? 16 : 8);
14467
14468 // Store it back into the va_list.
14469 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
14470 .addOperand(Base)
14471 .addOperand(Scale)
14472 .addOperand(Index)
14473 .addDisp(Disp, UseFPOffset ? 4 : 0)
14474 .addOperand(Segment)
14475 .addReg(NextOffsetReg)
14476 .setMemRefs(MMOBegin, MMOEnd);
14477
14478 // Jump to endMBB
14479 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
14480 .addMBB(endMBB);
14481 }
14482
14483 //
14484 // Emit code to use overflow area
14485 //
14486
14487 // Load the overflow_area address into a register.
14488 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
14489 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
14490 .addOperand(Base)
14491 .addOperand(Scale)
14492 .addOperand(Index)
14493 .addDisp(Disp, 8)
14494 .addOperand(Segment)
14495 .setMemRefs(MMOBegin, MMOEnd);
14496
14497 // If we need to align it, do so. Otherwise, just copy the address
14498 // to OverflowDestReg.
14499 if (NeedsAlign) {
14500 // Align the overflow address
14501 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
14502 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
14503
14504 // aligned_addr = (addr + (align-1)) & ~(align-1)
14505 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
14506 .addReg(OverflowAddrReg)
14507 .addImm(Align-1);
14508
14509 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
14510 .addReg(TmpReg)
14511 .addImm(~(uint64_t)(Align-1));
14512 } else {
14513 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
14514 .addReg(OverflowAddrReg);
14515 }
14516
14517 // Compute the next overflow address after this argument.
14518 // (the overflow address should be kept 8-byte aligned)
14519 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
14520 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
14521 .addReg(OverflowDestReg)
14522 .addImm(ArgSizeA8);
14523
14524 // Store the new overflow address.
14525 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
14526 .addOperand(Base)
14527 .addOperand(Scale)
14528 .addOperand(Index)
14529 .addDisp(Disp, 8)
14530 .addOperand(Segment)
14531 .addReg(NextAddrReg)
14532 .setMemRefs(MMOBegin, MMOEnd);
14533
14534 // If we branched, emit the PHI to the front of endMBB.
14535 if (offsetMBB) {
14536 BuildMI(*endMBB, endMBB->begin(), DL,
14537 TII->get(X86::PHI), DestReg)
14538 .addReg(OffsetDestReg).addMBB(offsetMBB)
14539 .addReg(OverflowDestReg).addMBB(overflowMBB);
14540 }
14541
14542 // Erase the pseudo instruction
14543 MI->eraseFromParent();
14544
14545 return endMBB;
14546}
14547
14548MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000014549X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
14550 MachineInstr *MI,
14551 MachineBasicBlock *MBB) const {
14552 // Emit code to save XMM registers to the stack. The ABI says that the
14553 // number of registers to save is given in %al, so it's theoretically
14554 // possible to do an indirect jump trick to avoid saving all of them,
14555 // however this code takes a simpler approach and just executes all
14556 // of the stores if %al is non-zero. It's less code, and it's probably
14557 // easier on the hardware branch predictor, and stores aren't all that
14558 // expensive anyway.
14559
14560 // Create the new basic blocks. One block contains all the XMM stores,
14561 // and one block is the final destination regardless of whether any
14562 // stores were performed.
14563 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14564 MachineFunction *F = MBB->getParent();
14565 MachineFunction::iterator MBBIter = MBB;
14566 ++MBBIter;
14567 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
14568 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
14569 F->insert(MBBIter, XMMSaveMBB);
14570 F->insert(MBBIter, EndMBB);
14571
Dan Gohman14152b42010-07-06 20:24:04 +000014572 // Transfer the remainder of MBB and its successor edges to EndMBB.
14573 EndMBB->splice(EndMBB->begin(), MBB,
14574 llvm::next(MachineBasicBlock::iterator(MI)),
14575 MBB->end());
14576 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
14577
Dan Gohmand6708ea2009-08-15 01:38:56 +000014578 // The original block will now fall through to the XMM save block.
14579 MBB->addSuccessor(XMMSaveMBB);
14580 // The XMMSaveMBB will fall through to the end block.
14581 XMMSaveMBB->addSuccessor(EndMBB);
14582
14583 // Now add the instructions.
14584 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14585 DebugLoc DL = MI->getDebugLoc();
14586
14587 unsigned CountReg = MI->getOperand(0).getReg();
14588 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
14589 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
14590
14591 if (!Subtarget->isTargetWin64()) {
14592 // If %al is 0, branch around the XMM save block.
14593 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000014594 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000014595 MBB->addSuccessor(EndMBB);
14596 }
14597
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000014598 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000014599 // In the XMM save block, save all the XMM argument registers.
14600 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
14601 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000014602 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000014603 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000014604 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000014605 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000014606 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014607 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000014608 .addFrameIndex(RegSaveFrameIndex)
14609 .addImm(/*Scale=*/1)
14610 .addReg(/*IndexReg=*/0)
14611 .addImm(/*Disp=*/Offset)
14612 .addReg(/*Segment=*/0)
14613 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000014614 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000014615 }
14616
Dan Gohman14152b42010-07-06 20:24:04 +000014617 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000014618
14619 return EndMBB;
14620}
Mon P Wang63307c32008-05-05 19:05:59 +000014621
Lang Hames6e3f7e42012-02-03 01:13:49 +000014622// The EFLAGS operand of SelectItr might be missing a kill marker
14623// because there were multiple uses of EFLAGS, and ISel didn't know
14624// which to mark. Figure out whether SelectItr should have had a
14625// kill marker, and set it if it should. Returns the correct kill
14626// marker value.
14627static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
14628 MachineBasicBlock* BB,
14629 const TargetRegisterInfo* TRI) {
14630 // Scan forward through BB for a use/def of EFLAGS.
14631 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
14632 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000014633 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000014634 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000014635 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000014636 if (mi.definesRegister(X86::EFLAGS))
14637 break; // Should have kill-flag - update below.
14638 }
14639
14640 // If we hit the end of the block, check whether EFLAGS is live into a
14641 // successor.
14642 if (miI == BB->end()) {
14643 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
14644 sEnd = BB->succ_end();
14645 sItr != sEnd; ++sItr) {
14646 MachineBasicBlock* succ = *sItr;
14647 if (succ->isLiveIn(X86::EFLAGS))
14648 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000014649 }
14650 }
14651
Lang Hames6e3f7e42012-02-03 01:13:49 +000014652 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
14653 // out. SelectMI should have a kill flag on EFLAGS.
14654 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000014655 return true;
14656}
14657
Evan Cheng60c07e12006-07-05 22:17:51 +000014658MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000014659X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000014660 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000014661 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14662 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000014663
Chris Lattner52600972009-09-02 05:57:00 +000014664 // To "insert" a SELECT_CC instruction, we actually have to insert the
14665 // diamond control-flow pattern. The incoming instruction knows the
14666 // destination vreg to set, the condition code register to branch on, the
14667 // true/false values to select between, and a branch opcode to use.
14668 const BasicBlock *LLVM_BB = BB->getBasicBlock();
14669 MachineFunction::iterator It = BB;
14670 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000014671
Chris Lattner52600972009-09-02 05:57:00 +000014672 // thisMBB:
14673 // ...
14674 // TrueVal = ...
14675 // cmpTY ccX, r1, r2
14676 // bCC copy1MBB
14677 // fallthrough --> copy0MBB
14678 MachineBasicBlock *thisMBB = BB;
14679 MachineFunction *F = BB->getParent();
14680 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
14681 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000014682 F->insert(It, copy0MBB);
14683 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000014684
Bill Wendling730c07e2010-06-25 20:48:10 +000014685 // If the EFLAGS register isn't dead in the terminator, then claim that it's
14686 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000014687 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14688 if (!MI->killsRegister(X86::EFLAGS) &&
14689 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
14690 copy0MBB->addLiveIn(X86::EFLAGS);
14691 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000014692 }
14693
Dan Gohman14152b42010-07-06 20:24:04 +000014694 // Transfer the remainder of BB and its successor edges to sinkMBB.
14695 sinkMBB->splice(sinkMBB->begin(), BB,
14696 llvm::next(MachineBasicBlock::iterator(MI)),
14697 BB->end());
14698 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
14699
14700 // Add the true and fallthrough blocks as its successors.
14701 BB->addSuccessor(copy0MBB);
14702 BB->addSuccessor(sinkMBB);
14703
14704 // Create the conditional branch instruction.
14705 unsigned Opc =
14706 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
14707 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
14708
Chris Lattner52600972009-09-02 05:57:00 +000014709 // copy0MBB:
14710 // %FalseValue = ...
14711 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000014712 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000014713
Chris Lattner52600972009-09-02 05:57:00 +000014714 // sinkMBB:
14715 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
14716 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000014717 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14718 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000014719 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
14720 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
14721
Dan Gohman14152b42010-07-06 20:24:04 +000014722 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000014723 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000014724}
14725
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014726MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014727X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
14728 bool Is64Bit) const {
14729 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14730 DebugLoc DL = MI->getDebugLoc();
14731 MachineFunction *MF = BB->getParent();
14732 const BasicBlock *LLVM_BB = BB->getBasicBlock();
14733
Nick Lewycky8a8d4792011-12-02 22:16:29 +000014734 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014735
14736 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
14737 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
14738
14739 // BB:
14740 // ... [Till the alloca]
14741 // If stacklet is not large enough, jump to mallocMBB
14742 //
14743 // bumpMBB:
14744 // Allocate by subtracting from RSP
14745 // Jump to continueMBB
14746 //
14747 // mallocMBB:
14748 // Allocate by call to runtime
14749 //
14750 // continueMBB:
14751 // ...
14752 // [rest of original BB]
14753 //
14754
14755 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14756 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14757 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14758
14759 MachineRegisterInfo &MRI = MF->getRegInfo();
14760 const TargetRegisterClass *AddrRegClass =
14761 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
14762
14763 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
14764 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
14765 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000014766 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014767 sizeVReg = MI->getOperand(1).getReg(),
14768 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
14769
14770 MachineFunction::iterator MBBIter = BB;
14771 ++MBBIter;
14772
14773 MF->insert(MBBIter, bumpMBB);
14774 MF->insert(MBBIter, mallocMBB);
14775 MF->insert(MBBIter, continueMBB);
14776
14777 continueMBB->splice(continueMBB->begin(), BB, llvm::next
14778 (MachineBasicBlock::iterator(MI)), BB->end());
14779 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
14780
14781 // Add code to the main basic block to check if the stack limit has been hit,
14782 // and if so, jump to mallocMBB otherwise to bumpMBB.
14783 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000014784 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014785 .addReg(tmpSPVReg).addReg(sizeVReg);
14786 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000014787 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000014788 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014789 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
14790
14791 // bumpMBB simply decreases the stack pointer, since we know the current
14792 // stacklet has enough space.
14793 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000014794 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014795 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000014796 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014797 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
14798
14799 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014800 const uint32_t *RegMask =
14801 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014802 if (Is64Bit) {
14803 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
14804 .addReg(sizeVReg);
14805 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000014806 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014807 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000014808 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014809 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014810 } else {
14811 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
14812 .addImm(12);
14813 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
14814 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014815 .addExternalSymbol("__morestack_allocate_stack_space")
14816 .addRegMask(RegMask)
14817 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014818 }
14819
14820 if (!Is64Bit)
14821 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
14822 .addImm(16);
14823
14824 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
14825 .addReg(Is64Bit ? X86::RAX : X86::EAX);
14826 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
14827
14828 // Set up the CFG correctly.
14829 BB->addSuccessor(bumpMBB);
14830 BB->addSuccessor(mallocMBB);
14831 mallocMBB->addSuccessor(continueMBB);
14832 bumpMBB->addSuccessor(continueMBB);
14833
14834 // Take care of the PHI nodes.
14835 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
14836 MI->getOperand(0).getReg())
14837 .addReg(mallocPtrVReg).addMBB(mallocMBB)
14838 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
14839
14840 // Delete the original pseudo instruction.
14841 MI->eraseFromParent();
14842
14843 // And we're done.
14844 return continueMBB;
14845}
14846
14847MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000014848X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000014849 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014850 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14851 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014852
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000014853 assert(!Subtarget->isTargetEnvMacho());
14854
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014855 // The lowering is pretty easy: we're just emitting the call to _alloca. The
14856 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014857
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000014858 if (Subtarget->isTargetWin64()) {
14859 if (Subtarget->isTargetCygMing()) {
14860 // ___chkstk(Mingw64):
14861 // Clobbers R10, R11, RAX and EFLAGS.
14862 // Updates RSP.
14863 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
14864 .addExternalSymbol("___chkstk")
14865 .addReg(X86::RAX, RegState::Implicit)
14866 .addReg(X86::RSP, RegState::Implicit)
14867 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
14868 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
14869 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
14870 } else {
14871 // __chkstk(MSVCRT): does not update stack pointer.
14872 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000014873 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
14874 .addExternalSymbol("__chkstk")
14875 .addReg(X86::RAX, RegState::Implicit)
14876 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000014877 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000014878 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
14879 .addReg(X86::RSP)
14880 .addReg(X86::RAX);
14881 }
14882 } else {
14883 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000014884 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
14885
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000014886 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
14887 .addExternalSymbol(StackProbeSymbol)
14888 .addReg(X86::EAX, RegState::Implicit)
14889 .addReg(X86::ESP, RegState::Implicit)
14890 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
14891 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
14892 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
14893 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014894
Dan Gohman14152b42010-07-06 20:24:04 +000014895 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000014896 return BB;
14897}
Chris Lattner52600972009-09-02 05:57:00 +000014898
14899MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000014900X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
14901 MachineBasicBlock *BB) const {
14902 // This is pretty easy. We're taking the value that we received from
14903 // our load from the relocation, sticking it in either RDI (x86-64)
14904 // or EAX and doing an indirect call. The return value will then
14905 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000014906 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000014907 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000014908 DebugLoc DL = MI->getDebugLoc();
14909 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000014910
14911 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000014912 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000014913
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014914 // Get a register mask for the lowered call.
14915 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
14916 // proper register mask.
14917 const uint32_t *RegMask =
14918 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014919 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000014920 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
14921 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000014922 .addReg(X86::RIP)
14923 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000014924 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000014925 MI->getOperand(3).getTargetFlags())
14926 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000014927 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000014928 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014929 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000014930 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000014931 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
14932 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000014933 .addReg(0)
14934 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000014935 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000014936 MI->getOperand(3).getTargetFlags())
14937 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000014938 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000014939 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014940 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014941 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000014942 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
14943 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000014944 .addReg(TII->getGlobalBaseReg(F))
14945 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000014946 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000014947 MI->getOperand(3).getTargetFlags())
14948 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000014949 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000014950 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014951 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014952 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000014953
Dan Gohman14152b42010-07-06 20:24:04 +000014954 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000014955 return BB;
14956}
14957
14958MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000014959X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
14960 MachineBasicBlock *MBB) const {
14961 DebugLoc DL = MI->getDebugLoc();
14962 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14963
14964 MachineFunction *MF = MBB->getParent();
14965 MachineRegisterInfo &MRI = MF->getRegInfo();
14966
14967 const BasicBlock *BB = MBB->getBasicBlock();
14968 MachineFunction::iterator I = MBB;
14969 ++I;
14970
14971 // Memory Reference
14972 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14973 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14974
14975 unsigned DstReg;
14976 unsigned MemOpndSlot = 0;
14977
14978 unsigned CurOp = 0;
14979
14980 DstReg = MI->getOperand(CurOp++).getReg();
14981 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14982 assert(RC->hasType(MVT::i32) && "Invalid destination!");
14983 unsigned mainDstReg = MRI.createVirtualRegister(RC);
14984 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
14985
14986 MemOpndSlot = CurOp;
14987
14988 MVT PVT = getPointerTy();
14989 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
14990 "Invalid Pointer Size!");
14991
14992 // For v = setjmp(buf), we generate
14993 //
14994 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000014995 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000014996 // SjLjSetup restoreMBB
14997 //
14998 // mainMBB:
14999 // v_main = 0
15000 //
15001 // sinkMBB:
15002 // v = phi(main, restore)
15003 //
15004 // restoreMBB:
15005 // v_restore = 1
15006
15007 MachineBasicBlock *thisMBB = MBB;
15008 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15009 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15010 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15011 MF->insert(I, mainMBB);
15012 MF->insert(I, sinkMBB);
15013 MF->push_back(restoreMBB);
15014
15015 MachineInstrBuilder MIB;
15016
15017 // Transfer the remainder of BB and its successor edges to sinkMBB.
15018 sinkMBB->splice(sinkMBB->begin(), MBB,
15019 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15020 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15021
15022 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015023 unsigned PtrStoreOpc = 0;
15024 unsigned LabelReg = 0;
15025 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15026 Reloc::Model RM = getTargetMachine().getRelocationModel();
15027 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15028 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015029
Michael Liao281ae5a2012-10-17 02:22:27 +000015030 // Prepare IP either in reg or imm.
15031 if (!UseImmLabel) {
15032 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15033 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15034 LabelReg = MRI.createVirtualRegister(PtrRC);
15035 if (Subtarget->is64Bit()) {
15036 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15037 .addReg(X86::RIP)
15038 .addImm(0)
15039 .addReg(0)
15040 .addMBB(restoreMBB)
15041 .addReg(0);
15042 } else {
15043 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15044 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15045 .addReg(XII->getGlobalBaseReg(MF))
15046 .addImm(0)
15047 .addReg(0)
15048 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15049 .addReg(0);
15050 }
15051 } else
15052 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015053 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015054 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015055 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15056 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015057 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015058 else
15059 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15060 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015061 if (!UseImmLabel)
15062 MIB.addReg(LabelReg);
15063 else
15064 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015065 MIB.setMemRefs(MMOBegin, MMOEnd);
15066 // Setup
15067 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15068 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015069
15070 const X86RegisterInfo *RegInfo =
15071 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015072 MIB.addRegMask(RegInfo->getNoPreservedMask());
15073 thisMBB->addSuccessor(mainMBB);
15074 thisMBB->addSuccessor(restoreMBB);
15075
15076 // mainMBB:
15077 // EAX = 0
15078 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15079 mainMBB->addSuccessor(sinkMBB);
15080
15081 // sinkMBB:
15082 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15083 TII->get(X86::PHI), DstReg)
15084 .addReg(mainDstReg).addMBB(mainMBB)
15085 .addReg(restoreDstReg).addMBB(restoreMBB);
15086
15087 // restoreMBB:
15088 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15089 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15090 restoreMBB->addSuccessor(sinkMBB);
15091
15092 MI->eraseFromParent();
15093 return sinkMBB;
15094}
15095
15096MachineBasicBlock *
15097X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15098 MachineBasicBlock *MBB) const {
15099 DebugLoc DL = MI->getDebugLoc();
15100 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15101
15102 MachineFunction *MF = MBB->getParent();
15103 MachineRegisterInfo &MRI = MF->getRegInfo();
15104
15105 // Memory Reference
15106 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15107 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15108
15109 MVT PVT = getPointerTy();
15110 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15111 "Invalid Pointer Size!");
15112
15113 const TargetRegisterClass *RC =
15114 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15115 unsigned Tmp = MRI.createVirtualRegister(RC);
15116 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015117 const X86RegisterInfo *RegInfo =
15118 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015119 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15120 unsigned SP = RegInfo->getStackRegister();
15121
15122 MachineInstrBuilder MIB;
15123
Michael Liao281ae5a2012-10-17 02:22:27 +000015124 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15125 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015126
15127 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15128 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15129
15130 // Reload FP
15131 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15132 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15133 MIB.addOperand(MI->getOperand(i));
15134 MIB.setMemRefs(MMOBegin, MMOEnd);
15135 // Reload IP
15136 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15137 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15138 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015139 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015140 else
15141 MIB.addOperand(MI->getOperand(i));
15142 }
15143 MIB.setMemRefs(MMOBegin, MMOEnd);
15144 // Reload SP
15145 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15146 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15147 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015148 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015149 else
15150 MIB.addOperand(MI->getOperand(i));
15151 }
15152 MIB.setMemRefs(MMOBegin, MMOEnd);
15153 // Jump
15154 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15155
15156 MI->eraseFromParent();
15157 return MBB;
15158}
15159
15160MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015161X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015162 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015163 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015164 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015165 case X86::TAILJMPd64:
15166 case X86::TAILJMPr64:
15167 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015168 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015169 case X86::TCRETURNdi64:
15170 case X86::TCRETURNri64:
15171 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015172 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015173 case X86::WIN_ALLOCA:
15174 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015175 case X86::SEG_ALLOCA_32:
15176 return EmitLoweredSegAlloca(MI, BB, false);
15177 case X86::SEG_ALLOCA_64:
15178 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015179 case X86::TLSCall_32:
15180 case X86::TLSCall_64:
15181 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015182 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015183 case X86::CMOV_FR32:
15184 case X86::CMOV_FR64:
15185 case X86::CMOV_V4F32:
15186 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015187 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015188 case X86::CMOV_V8F32:
15189 case X86::CMOV_V4F64:
15190 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015191 case X86::CMOV_GR16:
15192 case X86::CMOV_GR32:
15193 case X86::CMOV_RFP32:
15194 case X86::CMOV_RFP64:
15195 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015196 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015197
Dale Johannesen849f2142007-07-03 00:53:03 +000015198 case X86::FP32_TO_INT16_IN_MEM:
15199 case X86::FP32_TO_INT32_IN_MEM:
15200 case X86::FP32_TO_INT64_IN_MEM:
15201 case X86::FP64_TO_INT16_IN_MEM:
15202 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015203 case X86::FP64_TO_INT64_IN_MEM:
15204 case X86::FP80_TO_INT16_IN_MEM:
15205 case X86::FP80_TO_INT32_IN_MEM:
15206 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015207 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15208 DebugLoc DL = MI->getDebugLoc();
15209
Evan Cheng60c07e12006-07-05 22:17:51 +000015210 // Change the floating point control register to use "round towards zero"
15211 // mode when truncating to an integer value.
15212 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015213 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015214 addFrameReference(BuildMI(*BB, MI, DL,
15215 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015216
15217 // Load the old value of the high byte of the control word...
15218 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015219 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015220 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015221 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015222
15223 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015224 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015225 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015226
15227 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015228 addFrameReference(BuildMI(*BB, MI, DL,
15229 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015230
15231 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015232 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015233 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015234
15235 // Get the X86 opcode to use.
15236 unsigned Opc;
15237 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015238 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015239 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15240 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15241 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15242 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15243 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15244 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015245 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15246 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15247 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015248 }
15249
15250 X86AddressMode AM;
15251 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015252 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015253 AM.BaseType = X86AddressMode::RegBase;
15254 AM.Base.Reg = Op.getReg();
15255 } else {
15256 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015257 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015258 }
15259 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015260 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015261 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015262 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015263 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015264 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015265 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015266 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015267 AM.GV = Op.getGlobal();
15268 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015269 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015270 }
Dan Gohman14152b42010-07-06 20:24:04 +000015271 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015272 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015273
15274 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015275 addFrameReference(BuildMI(*BB, MI, DL,
15276 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015277
Dan Gohman14152b42010-07-06 20:24:04 +000015278 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015279 return BB;
15280 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015281 // String/text processing lowering.
15282 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015283 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015284 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015285 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015286 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015287 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015288 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015289 case X86::VPCMPESTRM128MEM:
15290 assert(Subtarget->hasSSE42() &&
15291 "Target must have SSE4.2 or AVX features enabled");
15292 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015293
15294 // String/text processing lowering.
15295 case X86::PCMPISTRIREG:
15296 case X86::VPCMPISTRIREG:
15297 case X86::PCMPISTRIMEM:
15298 case X86::VPCMPISTRIMEM:
15299 case X86::PCMPESTRIREG:
15300 case X86::VPCMPESTRIREG:
15301 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015302 case X86::VPCMPESTRIMEM:
15303 assert(Subtarget->hasSSE42() &&
15304 "Target must have SSE4.2 or AVX features enabled");
15305 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015306
Craig Topper8aae8dd2012-11-10 08:57:41 +000015307 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015308 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015309 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015310
Michael Liaobe02a902012-11-08 07:28:54 +000015311 // xbegin
15312 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015313 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015314
Craig Topper8aae8dd2012-11-10 08:57:41 +000015315 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015316 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015317 case X86::ATOMAND16:
15318 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015319 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015320 // Fall through
15321 case X86::ATOMOR8:
15322 case X86::ATOMOR16:
15323 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015324 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015325 // Fall through
15326 case X86::ATOMXOR16:
15327 case X86::ATOMXOR8:
15328 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015329 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015330 // Fall through
15331 case X86::ATOMNAND8:
15332 case X86::ATOMNAND16:
15333 case X86::ATOMNAND32:
15334 case X86::ATOMNAND64:
15335 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015336 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015337 case X86::ATOMMAX16:
15338 case X86::ATOMMAX32:
15339 case X86::ATOMMAX64:
15340 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015341 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015342 case X86::ATOMMIN16:
15343 case X86::ATOMMIN32:
15344 case X86::ATOMMIN64:
15345 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015346 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015347 case X86::ATOMUMAX16:
15348 case X86::ATOMUMAX32:
15349 case X86::ATOMUMAX64:
15350 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015351 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015352 case X86::ATOMUMIN16:
15353 case X86::ATOMUMIN32:
15354 case X86::ATOMUMIN64:
15355 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015356
15357 // This group does 64-bit operations on a 32-bit host.
15358 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015359 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015360 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015361 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015362 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015363 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015364 case X86::ATOMMAX6432:
15365 case X86::ATOMMIN6432:
15366 case X86::ATOMUMAX6432:
15367 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015368 case X86::ATOMSWAP6432:
15369 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015370
Dan Gohmand6708ea2009-08-15 01:38:56 +000015371 case X86::VASTART_SAVE_XMM_REGS:
15372 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015373
15374 case X86::VAARG_64:
15375 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015376
15377 case X86::EH_SjLj_SetJmp32:
15378 case X86::EH_SjLj_SetJmp64:
15379 return emitEHSjLjSetJmp(MI, BB);
15380
15381 case X86::EH_SjLj_LongJmp32:
15382 case X86::EH_SjLj_LongJmp64:
15383 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015384 }
15385}
15386
15387//===----------------------------------------------------------------------===//
15388// X86 Optimization Hooks
15389//===----------------------------------------------------------------------===//
15390
Dan Gohman475871a2008-07-27 21:46:04 +000015391void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015392 APInt &KnownZero,
15393 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015394 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015395 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015396 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015397 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015398 assert((Opc >= ISD::BUILTIN_OP_END ||
15399 Opc == ISD::INTRINSIC_WO_CHAIN ||
15400 Opc == ISD::INTRINSIC_W_CHAIN ||
15401 Opc == ISD::INTRINSIC_VOID) &&
15402 "Should use MaskedValueIsZero if you don't know whether Op"
15403 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015404
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015405 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015406 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015407 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015408 case X86ISD::ADD:
15409 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015410 case X86ISD::ADC:
15411 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015412 case X86ISD::SMUL:
15413 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015414 case X86ISD::INC:
15415 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015416 case X86ISD::OR:
15417 case X86ISD::XOR:
15418 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015419 // These nodes' second result is a boolean.
15420 if (Op.getResNo() == 0)
15421 break;
15422 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015423 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015424 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000015425 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015426 case ISD::INTRINSIC_WO_CHAIN: {
15427 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15428 unsigned NumLoBits = 0;
15429 switch (IntId) {
15430 default: break;
15431 case Intrinsic::x86_sse_movmsk_ps:
15432 case Intrinsic::x86_avx_movmsk_ps_256:
15433 case Intrinsic::x86_sse2_movmsk_pd:
15434 case Intrinsic::x86_avx_movmsk_pd_256:
15435 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000015436 case Intrinsic::x86_sse2_pmovmskb_128:
15437 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000015438 // High bits of movmskp{s|d}, pmovmskb are known zero.
15439 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000015440 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000015441 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
15442 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
15443 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
15444 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
15445 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
15446 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000015447 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000015448 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015449 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000015450 break;
15451 }
15452 }
15453 break;
15454 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015455 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015456}
Chris Lattner259e97c2006-01-31 19:43:35 +000015457
Owen Andersonbc146b02010-09-21 20:42:50 +000015458unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
15459 unsigned Depth) const {
15460 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
15461 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
15462 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000015463
Owen Andersonbc146b02010-09-21 20:42:50 +000015464 // Fallback case.
15465 return 1;
15466}
15467
Evan Cheng206ee9d2006-07-07 08:33:52 +000015468/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000015469/// node is a GlobalAddress + offset.
15470bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000015471 const GlobalValue* &GA,
15472 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000015473 if (N->getOpcode() == X86ISD::Wrapper) {
15474 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000015475 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000015476 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000015477 return true;
15478 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000015479 }
Evan Chengad4196b2008-05-12 19:56:52 +000015480 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000015481}
15482
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015483/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
15484/// same as extracting the high 128-bit part of 256-bit vector and then
15485/// inserting the result into the low part of a new 256-bit vector
15486static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
15487 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000015488 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015489
15490 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000015491 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015492 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15493 SVOp->getMaskElt(j) >= 0)
15494 return false;
15495
15496 return true;
15497}
15498
15499/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
15500/// same as extracting the low 128-bit part of 256-bit vector and then
15501/// inserting the result into the high part of a new 256-bit vector
15502static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
15503 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000015504 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015505
15506 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000015507 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015508 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15509 SVOp->getMaskElt(j) >= 0)
15510 return false;
15511
15512 return true;
15513}
15514
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015515/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
15516static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000015517 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000015518 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000015519 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015520 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
15521 SDValue V1 = SVOp->getOperand(0);
15522 SDValue V2 = SVOp->getOperand(1);
15523 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000015524 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015525
15526 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
15527 V2.getOpcode() == ISD::CONCAT_VECTORS) {
15528 //
15529 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000015530 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015531 // V UNDEF BUILD_VECTOR UNDEF
15532 // \ / \ /
15533 // CONCAT_VECTOR CONCAT_VECTOR
15534 // \ /
15535 // \ /
15536 // RESULT: V + zero extended
15537 //
15538 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
15539 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
15540 V1.getOperand(1).getOpcode() != ISD::UNDEF)
15541 return SDValue();
15542
15543 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
15544 return SDValue();
15545
15546 // To match the shuffle mask, the first half of the mask should
15547 // be exactly the first vector, and all the rest a splat with the
15548 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000015549 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015550 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
15551 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
15552 return SDValue();
15553
Chad Rosier3d1161e2012-01-03 21:05:52 +000015554 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
15555 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000015556 if (Ld->hasNUsesOfValue(1, 0)) {
15557 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
15558 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
15559 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000015560 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
15561 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000015562 Ld->getMemoryVT(),
15563 Ld->getPointerInfo(),
15564 Ld->getAlignment(),
15565 false/*isVolatile*/, true/*ReadMem*/,
15566 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000015567
15568 // Make sure the newly-created LOAD is in the same position as Ld in
15569 // terms of dependency. We create a TokenFactor for Ld and ResNode,
15570 // and update uses of Ld's output chain to use the TokenFactor.
15571 if (Ld->hasAnyUseOfValue(1)) {
15572 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
15573 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
15574 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
15575 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
15576 SDValue(ResNode.getNode(), 1));
15577 }
15578
Chad Rosier42726832012-05-07 18:47:44 +000015579 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
15580 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000015581 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000015582
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015583 // Emit a zeroed vector and insert the desired subvector on its
15584 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000015585 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000015586 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015587 return DCI.CombineTo(N, InsV);
15588 }
15589
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015590 //===--------------------------------------------------------------------===//
15591 // Combine some shuffles into subvector extracts and inserts:
15592 //
15593
15594 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
15595 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000015596 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
15597 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015598 return DCI.CombineTo(N, InsV);
15599 }
15600
15601 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
15602 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000015603 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
15604 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000015605 return DCI.CombineTo(N, InsV);
15606 }
15607
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015608 return SDValue();
15609}
15610
15611/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000015612static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000015613 TargetLowering::DAGCombinerInfo &DCI,
15614 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000015615 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000015616 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000015617
Mon P Wanga0fd0d52010-12-19 23:55:53 +000015618 // Don't create instructions with illegal types after legalize types has run.
15619 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15620 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
15621 return SDValue();
15622
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000015623 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015624 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000015625 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000015626 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015627
15628 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000015629 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000015630 return SDValue();
15631
15632 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
15633 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
15634 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000015635 SmallVector<SDValue, 16> Elts;
15636 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000015637 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000015638
Nate Begemanfdea31a2010-03-24 20:49:50 +000015639 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000015640}
Evan Chengd880b972008-05-09 21:53:03 +000015641
Nadav Roteme12bf182013-01-04 17:35:21 +000015642/// PerformTruncateCombine - Converts truncate operation to
15643/// a sequence of vector shuffle operations.
15644/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000015645static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
15646 TargetLowering::DAGCombinerInfo &DCI,
15647 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000015648 return SDValue();
15649}
15650
Craig Topper89f4e662012-03-20 07:17:59 +000015651/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
15652/// specific shuffle of a load can be folded into a single element load.
15653/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
15654/// shuffles have been customed lowered so we need to handle those here.
15655static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
15656 TargetLowering::DAGCombinerInfo &DCI) {
15657 if (DCI.isBeforeLegalizeOps())
15658 return SDValue();
15659
15660 SDValue InVec = N->getOperand(0);
15661 SDValue EltNo = N->getOperand(1);
15662
15663 if (!isa<ConstantSDNode>(EltNo))
15664 return SDValue();
15665
15666 EVT VT = InVec.getValueType();
15667
15668 bool HasShuffleIntoBitcast = false;
15669 if (InVec.getOpcode() == ISD::BITCAST) {
15670 // Don't duplicate a load with other uses.
15671 if (!InVec.hasOneUse())
15672 return SDValue();
15673 EVT BCVT = InVec.getOperand(0).getValueType();
15674 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
15675 return SDValue();
15676 InVec = InVec.getOperand(0);
15677 HasShuffleIntoBitcast = true;
15678 }
15679
15680 if (!isTargetShuffle(InVec.getOpcode()))
15681 return SDValue();
15682
15683 // Don't duplicate a load with other uses.
15684 if (!InVec.hasOneUse())
15685 return SDValue();
15686
15687 SmallVector<int, 16> ShuffleMask;
15688 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000015689 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
15690 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000015691 return SDValue();
15692
15693 // Select the input vector, guarding against out of range extract vector.
15694 unsigned NumElems = VT.getVectorNumElements();
15695 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
15696 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
15697 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
15698 : InVec.getOperand(1);
15699
15700 // If inputs to shuffle are the same for both ops, then allow 2 uses
15701 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
15702
15703 if (LdNode.getOpcode() == ISD::BITCAST) {
15704 // Don't duplicate a load with other uses.
15705 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
15706 return SDValue();
15707
15708 AllowedUses = 1; // only allow 1 load use if we have a bitcast
15709 LdNode = LdNode.getOperand(0);
15710 }
15711
15712 if (!ISD::isNormalLoad(LdNode.getNode()))
15713 return SDValue();
15714
15715 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
15716
15717 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
15718 return SDValue();
15719
15720 if (HasShuffleIntoBitcast) {
15721 // If there's a bitcast before the shuffle, check if the load type and
15722 // alignment is valid.
15723 unsigned Align = LN0->getAlignment();
15724 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000015725 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000015726 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
15727
15728 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
15729 return SDValue();
15730 }
15731
15732 // All checks match so transform back to vector_shuffle so that DAG combiner
15733 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000015734 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000015735
15736 // Create shuffle node taking into account the case that its a unary shuffle
15737 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
15738 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
15739 InVec.getOperand(0), Shuffle,
15740 &ShuffleMask[0]);
15741 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
15742 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
15743 EltNo);
15744}
15745
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000015746/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
15747/// generation and convert it from being a bunch of shuffles and extracts
15748/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015749static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000015750 TargetLowering::DAGCombinerInfo &DCI) {
15751 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
15752 if (NewOp.getNode())
15753 return NewOp;
15754
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015755 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000015756 // Detect whether we are trying to convert from mmx to i32 and the bitcast
15757 // from mmx to v2i32 has a single usage.
15758 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
15759 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
15760 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000015761 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000015762 N->getValueType(0),
15763 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015764
15765 // Only operate on vectors of 4 elements, where the alternative shuffling
15766 // gets to be more expensive.
15767 if (InputVector.getValueType() != MVT::v4i32)
15768 return SDValue();
15769
15770 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
15771 // single use which is a sign-extend or zero-extend, and all elements are
15772 // used.
15773 SmallVector<SDNode *, 4> Uses;
15774 unsigned ExtractedElements = 0;
15775 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
15776 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
15777 if (UI.getUse().getResNo() != InputVector.getResNo())
15778 return SDValue();
15779
15780 SDNode *Extract = *UI;
15781 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
15782 return SDValue();
15783
15784 if (Extract->getValueType(0) != MVT::i32)
15785 return SDValue();
15786 if (!Extract->hasOneUse())
15787 return SDValue();
15788 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
15789 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
15790 return SDValue();
15791 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
15792 return SDValue();
15793
15794 // Record which element was extracted.
15795 ExtractedElements |=
15796 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
15797
15798 Uses.push_back(Extract);
15799 }
15800
15801 // If not all the elements were used, this may not be worthwhile.
15802 if (ExtractedElements != 15)
15803 return SDValue();
15804
15805 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000015806 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015807
15808 // Store the value to a temporary stack slot.
15809 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000015810 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
15811 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015812
15813 // Replace each use (extract) with a load of the appropriate element.
15814 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
15815 UE = Uses.end(); UI != UE; ++UI) {
15816 SDNode *Extract = *UI;
15817
Nadav Rotem86694292011-05-17 08:31:57 +000015818 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015819 SDValue Idx = Extract->getOperand(1);
15820 unsigned EltSize =
15821 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
15822 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000015823 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015824 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
15825
Nadav Rotem86694292011-05-17 08:31:57 +000015826 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000015827 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015828
15829 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000015830 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000015831 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000015832 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000015833
15834 // Replace the exact with the load.
15835 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
15836 }
15837
15838 // The replacement was made in place; don't return anything.
15839 return SDValue();
15840}
15841
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000015842/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
15843static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
15844 SDValue RHS, SelectionDAG &DAG,
15845 const X86Subtarget *Subtarget) {
15846 if (!VT.isVector())
15847 return 0;
15848
15849 switch (VT.getSimpleVT().SimpleTy) {
15850 default: return 0;
15851 case MVT::v32i8:
15852 case MVT::v16i16:
15853 case MVT::v8i32:
15854 if (!Subtarget->hasAVX2())
15855 return 0;
15856 case MVT::v16i8:
15857 case MVT::v8i16:
15858 case MVT::v4i32:
15859 if (!Subtarget->hasSSE2())
15860 return 0;
15861 }
15862
15863 // SSE2 has only a small subset of the operations.
15864 bool hasUnsigned = Subtarget->hasSSE41() ||
15865 (Subtarget->hasSSE2() && VT == MVT::v16i8);
15866 bool hasSigned = Subtarget->hasSSE41() ||
15867 (Subtarget->hasSSE2() && VT == MVT::v8i16);
15868
15869 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
15870
15871 // Check for x CC y ? x : y.
15872 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
15873 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
15874 switch (CC) {
15875 default: break;
15876 case ISD::SETULT:
15877 case ISD::SETULE:
15878 return hasUnsigned ? X86ISD::UMIN : 0;
15879 case ISD::SETUGT:
15880 case ISD::SETUGE:
15881 return hasUnsigned ? X86ISD::UMAX : 0;
15882 case ISD::SETLT:
15883 case ISD::SETLE:
15884 return hasSigned ? X86ISD::SMIN : 0;
15885 case ISD::SETGT:
15886 case ISD::SETGE:
15887 return hasSigned ? X86ISD::SMAX : 0;
15888 }
15889 // Check for x CC y ? y : x -- a min/max with reversed arms.
15890 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
15891 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
15892 switch (CC) {
15893 default: break;
15894 case ISD::SETULT:
15895 case ISD::SETULE:
15896 return hasUnsigned ? X86ISD::UMAX : 0;
15897 case ISD::SETUGT:
15898 case ISD::SETUGE:
15899 return hasUnsigned ? X86ISD::UMIN : 0;
15900 case ISD::SETLT:
15901 case ISD::SETLE:
15902 return hasSigned ? X86ISD::SMAX : 0;
15903 case ISD::SETGT:
15904 case ISD::SETGE:
15905 return hasSigned ? X86ISD::SMIN : 0;
15906 }
15907 }
15908
15909 return 0;
15910}
15911
Duncan Sands6bcd2192011-09-17 16:49:39 +000015912/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
15913/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000015914static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000015915 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000015916 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000015917 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000015918 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000015919 // Get the LHS/RHS of the select.
15920 SDValue LHS = N->getOperand(1);
15921 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000015922 EVT VT = LHS.getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +000015923
Dan Gohman670e5392009-09-21 18:03:22 +000015924 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000015925 // instructions match the semantics of the common C idiom x<y?x:y but not
15926 // x<=y?x:y, because of how they handle negative zero (which can be
15927 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000015928 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
15929 VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000015930 (Subtarget->hasSSE2() ||
15931 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000015932 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015933
Chris Lattner47b4ce82009-03-11 05:48:52 +000015934 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000015935 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000015936 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
15937 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000015938 switch (CC) {
15939 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000015940 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000015941 // Converting this to a min would handle NaNs incorrectly, and swapping
15942 // the operands would cause it to handle comparisons between positive
15943 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000015944 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015945 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015946 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
15947 break;
15948 std::swap(LHS, RHS);
15949 }
Dan Gohman670e5392009-09-21 18:03:22 +000015950 Opcode = X86ISD::FMIN;
15951 break;
15952 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000015953 // Converting this to a min would handle comparisons between positive
15954 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015955 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015956 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
15957 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015958 Opcode = X86ISD::FMIN;
15959 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000015960 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000015961 // Converting this to a min would handle both negative zeros and NaNs
15962 // incorrectly, but we can swap the operands to fix both.
15963 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015964 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015965 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000015966 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015967 Opcode = X86ISD::FMIN;
15968 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015969
Dan Gohman670e5392009-09-21 18:03:22 +000015970 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015971 // Converting this to a max would handle comparisons between positive
15972 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015973 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000015974 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000015975 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015976 Opcode = X86ISD::FMAX;
15977 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000015978 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000015979 // Converting this to a max would handle NaNs incorrectly, and swapping
15980 // the operands would cause it to handle comparisons between positive
15981 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000015982 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015983 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015984 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
15985 break;
15986 std::swap(LHS, RHS);
15987 }
Dan Gohman670e5392009-09-21 18:03:22 +000015988 Opcode = X86ISD::FMAX;
15989 break;
15990 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015991 // Converting this to a max would handle both negative zeros and NaNs
15992 // incorrectly, but we can swap the operands to fix both.
15993 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015994 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015995 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015996 case ISD::SETGE:
15997 Opcode = X86ISD::FMAX;
15998 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000015999 }
Dan Gohman670e5392009-09-21 18:03:22 +000016000 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016001 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16002 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016003 switch (CC) {
16004 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016005 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016006 // Converting this to a min would handle comparisons between positive
16007 // and negative zero incorrectly, and swapping the operands would
16008 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016009 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016010 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016011 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016012 break;
16013 std::swap(LHS, RHS);
16014 }
Dan Gohman670e5392009-09-21 18:03:22 +000016015 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016016 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016017 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016018 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016019 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016020 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16021 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016022 Opcode = X86ISD::FMIN;
16023 break;
16024 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016025 // Converting this to a min would handle both negative zeros and NaNs
16026 // incorrectly, but we can swap the operands to fix both.
16027 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016028 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016029 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016030 case ISD::SETGE:
16031 Opcode = X86ISD::FMIN;
16032 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016033
Dan Gohman670e5392009-09-21 18:03:22 +000016034 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016035 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016036 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016037 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016038 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016039 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016040 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016041 // Converting this to a max would handle comparisons between positive
16042 // and negative zero incorrectly, and swapping the operands would
16043 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016044 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016045 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016046 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016047 break;
16048 std::swap(LHS, RHS);
16049 }
Dan Gohman670e5392009-09-21 18:03:22 +000016050 Opcode = X86ISD::FMAX;
16051 break;
16052 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016053 // Converting this to a max would handle both negative zeros and NaNs
16054 // incorrectly, but we can swap the operands to fix both.
16055 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016056 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016057 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016058 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016059 Opcode = X86ISD::FMAX;
16060 break;
16061 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016062 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016063
Chris Lattner47b4ce82009-03-11 05:48:52 +000016064 if (Opcode)
16065 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016066 }
Eric Christopherfd179292009-08-27 18:07:15 +000016067
Chris Lattnerd1980a52009-03-12 06:52:53 +000016068 // If this is a select between two integer constants, try to do some
16069 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016070 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16071 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016072 // Don't do this for crazy integer types.
16073 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16074 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016075 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016076 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016077
Chris Lattnercee56e72009-03-13 05:53:31 +000016078 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016079 // Efficiently invertible.
16080 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16081 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16082 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16083 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016084 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016085 }
Eric Christopherfd179292009-08-27 18:07:15 +000016086
Chris Lattnerd1980a52009-03-12 06:52:53 +000016087 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016088 if (FalseC->getAPIntValue() == 0 &&
16089 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016090 if (NeedsCondInvert) // Invert the condition if needed.
16091 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16092 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016093
Chris Lattnerd1980a52009-03-12 06:52:53 +000016094 // Zero extend the condition if needed.
16095 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016096
Chris Lattnercee56e72009-03-13 05:53:31 +000016097 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016098 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016099 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016100 }
Eric Christopherfd179292009-08-27 18:07:15 +000016101
Chris Lattner97a29a52009-03-13 05:22:11 +000016102 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016103 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016104 if (NeedsCondInvert) // Invert the condition if needed.
16105 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16106 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016107
Chris Lattner97a29a52009-03-13 05:22:11 +000016108 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016109 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16110 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016111 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016112 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016113 }
Eric Christopherfd179292009-08-27 18:07:15 +000016114
Chris Lattnercee56e72009-03-13 05:53:31 +000016115 // Optimize cases that will turn into an LEA instruction. This requires
16116 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016117 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016118 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016119 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016120
Chris Lattnercee56e72009-03-13 05:53:31 +000016121 bool isFastMultiplier = false;
16122 if (Diff < 10) {
16123 switch ((unsigned char)Diff) {
16124 default: break;
16125 case 1: // result = add base, cond
16126 case 2: // result = lea base( , cond*2)
16127 case 3: // result = lea base(cond, cond*2)
16128 case 4: // result = lea base( , cond*4)
16129 case 5: // result = lea base(cond, cond*4)
16130 case 8: // result = lea base( , cond*8)
16131 case 9: // result = lea base(cond, cond*8)
16132 isFastMultiplier = true;
16133 break;
16134 }
16135 }
Eric Christopherfd179292009-08-27 18:07:15 +000016136
Chris Lattnercee56e72009-03-13 05:53:31 +000016137 if (isFastMultiplier) {
16138 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16139 if (NeedsCondInvert) // Invert the condition if needed.
16140 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16141 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016142
Chris Lattnercee56e72009-03-13 05:53:31 +000016143 // Zero extend the condition if needed.
16144 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16145 Cond);
16146 // Scale the condition by the difference.
16147 if (Diff != 1)
16148 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16149 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016150
Chris Lattnercee56e72009-03-13 05:53:31 +000016151 // Add the base if non-zero.
16152 if (FalseC->getAPIntValue() != 0)
16153 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16154 SDValue(FalseC, 0));
16155 return Cond;
16156 }
Eric Christopherfd179292009-08-27 18:07:15 +000016157 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016158 }
16159 }
Eric Christopherfd179292009-08-27 18:07:15 +000016160
Evan Cheng56f582d2012-01-04 01:41:39 +000016161 // Canonicalize max and min:
16162 // (x > y) ? x : y -> (x >= y) ? x : y
16163 // (x < y) ? x : y -> (x <= y) ? x : y
16164 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16165 // the need for an extra compare
16166 // against zero. e.g.
16167 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16168 // subl %esi, %edi
16169 // testl %edi, %edi
16170 // movl $0, %eax
16171 // cmovgl %edi, %eax
16172 // =>
16173 // xorl %eax, %eax
16174 // subl %esi, $edi
16175 // cmovsl %eax, %edi
16176 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16177 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16178 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16179 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16180 switch (CC) {
16181 default: break;
16182 case ISD::SETLT:
16183 case ISD::SETGT: {
16184 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016185 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016186 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16187 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16188 }
16189 }
16190 }
16191
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016192 // Match VSELECTs into subs with unsigned saturation.
16193 if (!DCI.isBeforeLegalize() &&
16194 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16195 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16196 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16197 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16198 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16199
16200 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16201 // left side invert the predicate to simplify logic below.
16202 SDValue Other;
16203 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16204 Other = RHS;
16205 CC = ISD::getSetCCInverse(CC, true);
16206 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16207 Other = LHS;
16208 }
16209
16210 if (Other.getNode() && Other->getNumOperands() == 2 &&
16211 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16212 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16213 SDValue CondRHS = Cond->getOperand(1);
16214
16215 // Look for a general sub with unsigned saturation first.
16216 // x >= y ? x-y : 0 --> subus x, y
16217 // x > y ? x-y : 0 --> subus x, y
16218 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16219 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16220 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16221
16222 // If the RHS is a constant we have to reverse the const canonicalization.
16223 // x > C-1 ? x+-C : 0 --> subus x, C
16224 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16225 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16226 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016227 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016228 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016229 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016230 }
16231
16232 // Another special case: If C was a sign bit, the sub has been
16233 // canonicalized into a xor.
16234 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16235 // it's safe to decanonicalize the xor?
16236 // x s< 0 ? x^C : 0 --> subus x, C
16237 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16238 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16239 isSplatVector(OpRHS.getNode())) {
16240 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16241 if (A.isSignBit())
16242 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16243 }
16244 }
16245 }
16246
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016247 // Try to match a min/max vector operation.
16248 if (!DCI.isBeforeLegalize() &&
16249 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
16250 if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
16251 return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
16252
Michael Liaobf538412013-04-11 05:15:54 +000016253 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16254 if (!DCI.isBeforeLegalize() && N->getOpcode() == ISD::VSELECT &&
16255 Cond.getOpcode() == ISD::SETCC) {
16256
16257 assert(Cond.getValueType().isVector() &&
16258 "vector select expects a vector selector!");
16259
16260 EVT IntVT = Cond.getValueType();
16261 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16262 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16263
16264 if (!TValIsAllOnes && !FValIsAllZeros) {
16265 // Try invert the condition if true value is not all 1s and false value
16266 // is not all 0s.
16267 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16268 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16269
16270 if (TValIsAllZeros || FValIsAllOnes) {
16271 SDValue CC = Cond.getOperand(2);
16272 ISD::CondCode NewCC =
16273 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16274 Cond.getOperand(0).getValueType().isInteger());
16275 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16276 std::swap(LHS, RHS);
16277 TValIsAllOnes = FValIsAllOnes;
16278 FValIsAllZeros = TValIsAllZeros;
16279 }
16280 }
16281
16282 if (TValIsAllOnes || FValIsAllZeros) {
16283 SDValue Ret;
16284
16285 if (TValIsAllOnes && FValIsAllZeros)
16286 Ret = Cond;
16287 else if (TValIsAllOnes)
16288 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16289 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16290 else if (FValIsAllZeros)
16291 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16292 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16293
16294 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16295 }
16296 }
16297
Nadav Rotemcc616562012-01-15 19:27:55 +000016298 // If we know that this node is legal then we know that it is going to be
16299 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16300 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16301 // to simplify previous instructions.
16302 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16303 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016304 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016305 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016306
16307 // Don't optimize vector selects that map to mask-registers.
16308 if (BitWidth == 1)
16309 return SDValue();
16310
Nadav Rotemcc616562012-01-15 19:27:55 +000016311 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16312 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16313
16314 APInt KnownZero, KnownOne;
16315 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16316 DCI.isBeforeLegalizeOps());
16317 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16318 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16319 DCI.CommitTargetLoweringOpt(TLO);
16320 }
16321
Dan Gohman475871a2008-07-27 21:46:04 +000016322 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016323}
16324
Michael Liao2a33cec2012-08-10 19:58:13 +000016325// Check whether a boolean test is testing a boolean value generated by
16326// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16327// code.
16328//
16329// Simplify the following patterns:
16330// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16331// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16332// to (Op EFLAGS Cond)
16333//
16334// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16335// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16336// to (Op EFLAGS !Cond)
16337//
16338// where Op could be BRCOND or CMOV.
16339//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016340static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016341 // Quit if not CMP and SUB with its value result used.
16342 if (Cmp.getOpcode() != X86ISD::CMP &&
16343 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16344 return SDValue();
16345
16346 // Quit if not used as a boolean value.
16347 if (CC != X86::COND_E && CC != X86::COND_NE)
16348 return SDValue();
16349
16350 // Check CMP operands. One of them should be 0 or 1 and the other should be
16351 // an SetCC or extended from it.
16352 SDValue Op1 = Cmp.getOperand(0);
16353 SDValue Op2 = Cmp.getOperand(1);
16354
16355 SDValue SetCC;
16356 const ConstantSDNode* C = 0;
16357 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016358 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016359
16360 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16361 SetCC = Op2;
16362 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16363 SetCC = Op1;
16364 else // Quit if all operands are not constants.
16365 return SDValue();
16366
Michael Liao959ddbb2013-04-11 04:43:09 +000016367 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016368 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000016369 checkAgainstTrue = true;
16370 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000016371 // Quit if the constant is neither 0 or 1.
16372 return SDValue();
16373
Michael Liao959ddbb2013-04-11 04:43:09 +000016374 bool truncatedToBoolWithAnd = false;
16375 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16376 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16377 SetCC.getOpcode() == ISD::TRUNCATE ||
16378 SetCC.getOpcode() == ISD::AND) {
16379 if (SetCC.getOpcode() == ISD::AND) {
16380 int OpIdx = -1;
16381 ConstantSDNode *CS;
16382 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16383 CS->getZExtValue() == 1)
16384 OpIdx = 1;
16385 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16386 CS->getZExtValue() == 1)
16387 OpIdx = 0;
16388 if (OpIdx == -1)
16389 break;
16390 SetCC = SetCC.getOperand(OpIdx);
16391 truncatedToBoolWithAnd = true;
16392 } else
16393 SetCC = SetCC.getOperand(0);
16394 }
Michael Liao2a33cec2012-08-10 19:58:13 +000016395
Michael Liao7fdc66b2012-09-10 16:36:16 +000016396 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000016397 case X86ISD::SETCC_CARRY:
16398 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16399 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16400 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16401 // truncated to i1 using 'and'.
16402 if (checkAgainstTrue && !truncatedToBoolWithAnd)
16403 break;
16404 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16405 "Invalid use of SETCC_CARRY!");
16406 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000016407 case X86ISD::SETCC:
16408 // Set the condition code or opposite one if necessary.
16409 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16410 if (needOppositeCond)
16411 CC = X86::GetOppositeBranchCondition(CC);
16412 return SetCC.getOperand(1);
16413 case X86ISD::CMOV: {
16414 // Check whether false/true value has canonical one, i.e. 0 or 1.
16415 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
16416 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
16417 // Quit if true value is not a constant.
16418 if (!TVal)
16419 return SDValue();
16420 // Quit if false value is not a constant.
16421 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000016422 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000016423 // Skip 'zext' or 'trunc' node.
16424 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
16425 Op.getOpcode() == ISD::TRUNCATE)
16426 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000016427 // A special case for rdrand/rdseed, where 0 is set if false cond is
16428 // found.
16429 if ((Op.getOpcode() != X86ISD::RDRAND &&
16430 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000016431 return SDValue();
16432 }
16433 // Quit if false value is not the constant 0 or 1.
16434 bool FValIsFalse = true;
16435 if (FVal && FVal->getZExtValue() != 0) {
16436 if (FVal->getZExtValue() != 1)
16437 return SDValue();
16438 // If FVal is 1, opposite cond is needed.
16439 needOppositeCond = !needOppositeCond;
16440 FValIsFalse = false;
16441 }
16442 // Quit if TVal is not the constant opposite of FVal.
16443 if (FValIsFalse && TVal->getZExtValue() != 1)
16444 return SDValue();
16445 if (!FValIsFalse && TVal->getZExtValue() != 0)
16446 return SDValue();
16447 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
16448 if (needOppositeCond)
16449 CC = X86::GetOppositeBranchCondition(CC);
16450 return SetCC.getOperand(3);
16451 }
16452 }
Michael Liao2a33cec2012-08-10 19:58:13 +000016453
Michael Liao7fdc66b2012-09-10 16:36:16 +000016454 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000016455}
16456
Chris Lattnerd1980a52009-03-12 06:52:53 +000016457/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
16458static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016459 TargetLowering::DAGCombinerInfo &DCI,
16460 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016461 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000016462
Chris Lattnerd1980a52009-03-12 06:52:53 +000016463 // If the flag operand isn't dead, don't touch this CMOV.
16464 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
16465 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000016466
Evan Chengb5a55d92011-05-24 01:48:22 +000016467 SDValue FalseOp = N->getOperand(0);
16468 SDValue TrueOp = N->getOperand(1);
16469 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
16470 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000016471
Evan Chengb5a55d92011-05-24 01:48:22 +000016472 if (CC == X86::COND_E || CC == X86::COND_NE) {
16473 switch (Cond.getOpcode()) {
16474 default: break;
16475 case X86ISD::BSR:
16476 case X86ISD::BSF:
16477 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
16478 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
16479 return (CC == X86::COND_E) ? FalseOp : TrueOp;
16480 }
16481 }
16482
Michael Liao2a33cec2012-08-10 19:58:13 +000016483 SDValue Flags;
16484
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016485 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000016486 if (Flags.getNode() &&
16487 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000016488 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016489 SDValue Ops[] = { FalseOp, TrueOp,
16490 DAG.getConstant(CC, MVT::i8), Flags };
16491 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
16492 Ops, array_lengthof(Ops));
16493 }
16494
Chris Lattnerd1980a52009-03-12 06:52:53 +000016495 // If this is a select between two integer constants, try to do some
16496 // optimizations. Note that the operands are ordered the opposite of SELECT
16497 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000016498 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
16499 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016500 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
16501 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000016502 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
16503 CC = X86::GetOppositeBranchCondition(CC);
16504 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000016505 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016506 }
Eric Christopherfd179292009-08-27 18:07:15 +000016507
Chris Lattnerd1980a52009-03-12 06:52:53 +000016508 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016509 // This is efficient for any integer data type (including i8/i16) and
16510 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016511 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000016512 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16513 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016514
Chris Lattnerd1980a52009-03-12 06:52:53 +000016515 // Zero extend the condition if needed.
16516 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016517
Chris Lattnerd1980a52009-03-12 06:52:53 +000016518 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16519 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016520 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016521 if (N->getNumValues() == 2) // Dead flag value?
16522 return DCI.CombineTo(N, Cond, SDValue());
16523 return Cond;
16524 }
Eric Christopherfd179292009-08-27 18:07:15 +000016525
Chris Lattnercee56e72009-03-13 05:53:31 +000016526 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
16527 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000016528 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000016529 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16530 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016531
Chris Lattner97a29a52009-03-13 05:22:11 +000016532 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016533 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16534 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016535 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16536 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000016537
Chris Lattner97a29a52009-03-13 05:22:11 +000016538 if (N->getNumValues() == 2) // Dead flag value?
16539 return DCI.CombineTo(N, Cond, SDValue());
16540 return Cond;
16541 }
Eric Christopherfd179292009-08-27 18:07:15 +000016542
Chris Lattnercee56e72009-03-13 05:53:31 +000016543 // Optimize cases that will turn into an LEA instruction. This requires
16544 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016545 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016546 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016547 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016548
Chris Lattnercee56e72009-03-13 05:53:31 +000016549 bool isFastMultiplier = false;
16550 if (Diff < 10) {
16551 switch ((unsigned char)Diff) {
16552 default: break;
16553 case 1: // result = add base, cond
16554 case 2: // result = lea base( , cond*2)
16555 case 3: // result = lea base(cond, cond*2)
16556 case 4: // result = lea base( , cond*4)
16557 case 5: // result = lea base(cond, cond*4)
16558 case 8: // result = lea base( , cond*8)
16559 case 9: // result = lea base(cond, cond*8)
16560 isFastMultiplier = true;
16561 break;
16562 }
16563 }
Eric Christopherfd179292009-08-27 18:07:15 +000016564
Chris Lattnercee56e72009-03-13 05:53:31 +000016565 if (isFastMultiplier) {
16566 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016567 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16568 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000016569 // Zero extend the condition if needed.
16570 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16571 Cond);
16572 // Scale the condition by the difference.
16573 if (Diff != 1)
16574 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16575 DAG.getConstant(Diff, Cond.getValueType()));
16576
16577 // Add the base if non-zero.
16578 if (FalseC->getAPIntValue() != 0)
16579 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16580 SDValue(FalseC, 0));
16581 if (N->getNumValues() == 2) // Dead flag value?
16582 return DCI.CombineTo(N, Cond, SDValue());
16583 return Cond;
16584 }
Eric Christopherfd179292009-08-27 18:07:15 +000016585 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016586 }
16587 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000016588
16589 // Handle these cases:
16590 // (select (x != c), e, c) -> select (x != c), e, x),
16591 // (select (x == c), c, e) -> select (x == c), x, e)
16592 // where the c is an integer constant, and the "select" is the combination
16593 // of CMOV and CMP.
16594 //
16595 // The rationale for this change is that the conditional-move from a constant
16596 // needs two instructions, however, conditional-move from a register needs
16597 // only one instruction.
16598 //
16599 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
16600 // some instruction-combining opportunities. This opt needs to be
16601 // postponed as late as possible.
16602 //
16603 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
16604 // the DCI.xxxx conditions are provided to postpone the optimization as
16605 // late as possible.
16606
16607 ConstantSDNode *CmpAgainst = 0;
16608 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
16609 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000016610 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000016611
16612 if (CC == X86::COND_NE &&
16613 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
16614 CC = X86::GetOppositeBranchCondition(CC);
16615 std::swap(TrueOp, FalseOp);
16616 }
16617
16618 if (CC == X86::COND_E &&
16619 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
16620 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
16621 DAG.getConstant(CC, MVT::i8), Cond };
16622 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
16623 array_lengthof(Ops));
16624 }
16625 }
16626 }
16627
Chris Lattnerd1980a52009-03-12 06:52:53 +000016628 return SDValue();
16629}
16630
Evan Cheng0b0cd912009-03-28 05:57:29 +000016631/// PerformMulCombine - Optimize a single multiply with constant into two
16632/// in order to implement it with two cheaper instructions, e.g.
16633/// LEA + SHL, LEA + LEA.
16634static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
16635 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000016636 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
16637 return SDValue();
16638
Owen Andersone50ed302009-08-10 22:56:29 +000016639 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000016640 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000016641 return SDValue();
16642
16643 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
16644 if (!C)
16645 return SDValue();
16646 uint64_t MulAmt = C->getZExtValue();
16647 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
16648 return SDValue();
16649
16650 uint64_t MulAmt1 = 0;
16651 uint64_t MulAmt2 = 0;
16652 if ((MulAmt % 9) == 0) {
16653 MulAmt1 = 9;
16654 MulAmt2 = MulAmt / 9;
16655 } else if ((MulAmt % 5) == 0) {
16656 MulAmt1 = 5;
16657 MulAmt2 = MulAmt / 5;
16658 } else if ((MulAmt % 3) == 0) {
16659 MulAmt1 = 3;
16660 MulAmt2 = MulAmt / 3;
16661 }
16662 if (MulAmt2 &&
16663 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000016664 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000016665
16666 if (isPowerOf2_64(MulAmt2) &&
16667 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
16668 // If second multiplifer is pow2, issue it first. We want the multiply by
16669 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
16670 // is an add.
16671 std::swap(MulAmt1, MulAmt2);
16672
16673 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000016674 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000016675 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000016676 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000016677 else
Evan Cheng73f24c92009-03-30 21:36:47 +000016678 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000016679 DAG.getConstant(MulAmt1, VT));
16680
Eric Christopherfd179292009-08-27 18:07:15 +000016681 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000016682 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000016683 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000016684 else
Evan Cheng73f24c92009-03-30 21:36:47 +000016685 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000016686 DAG.getConstant(MulAmt2, VT));
16687
16688 // Do not add new nodes to DAG combiner worklist.
16689 DCI.CombineTo(N, NewMul, false);
16690 }
16691 return SDValue();
16692}
16693
Evan Chengad9c0a32009-12-15 00:53:42 +000016694static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
16695 SDValue N0 = N->getOperand(0);
16696 SDValue N1 = N->getOperand(1);
16697 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
16698 EVT VT = N0.getValueType();
16699
16700 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
16701 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000016702 if (VT.isInteger() && !VT.isVector() &&
16703 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000016704 N0.getOperand(1).getOpcode() == ISD::Constant) {
16705 SDValue N00 = N0.getOperand(0);
16706 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
16707 ((N00.getOpcode() == ISD::ANY_EXTEND ||
16708 N00.getOpcode() == ISD::ZERO_EXTEND) &&
16709 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
16710 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
16711 APInt ShAmt = N1C->getAPIntValue();
16712 Mask = Mask.shl(ShAmt);
16713 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016714 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000016715 N00, DAG.getConstant(Mask, VT));
16716 }
16717 }
16718
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000016719 // Hardware support for vector shifts is sparse which makes us scalarize the
16720 // vector operations in many cases. Also, on sandybridge ADD is faster than
16721 // shl.
16722 // (shl V, 1) -> add V,V
16723 if (isSplatVector(N1.getNode())) {
16724 assert(N0.getValueType().isVector() && "Invalid vector shift type");
16725 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
16726 // We shift all of the values by one. In many cases we do not have
16727 // hardware support for this operation. This is better expressed as an ADD
16728 // of two values.
16729 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016730 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000016731 }
16732 }
16733
Evan Chengad9c0a32009-12-15 00:53:42 +000016734 return SDValue();
16735}
Evan Cheng0b0cd912009-03-28 05:57:29 +000016736
Stephen Linfff96732013-07-12 15:31:36 +000016737/// \brief Returns a vector of 0s if the node in input is a vector logical
16738/// shift by a constant amount which is known to be bigger than or equal
16739/// to the vector element size in bits.
16740static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
16741 const X86Subtarget *Subtarget) {
16742 EVT VT = N->getValueType(0);
16743
16744 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
16745 (!Subtarget->hasInt256() ||
16746 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
16747 return SDValue();
16748
16749 SDValue Amt = N->getOperand(1);
16750 SDLoc DL(N);
16751 if (isSplatVector(Amt.getNode())) {
16752 SDValue SclrAmt = Amt->getOperand(0);
16753 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
16754 APInt ShiftAmt = C->getAPIntValue();
16755 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
16756
16757 // SSE2/AVX2 logical shifts always return a vector of 0s
16758 // if the shift amount is bigger than or equal to
16759 // the element size. The constant shift amount will be
16760 // encoded as a 8-bit immediate.
16761 if (ShiftAmt.trunc(8).uge(MaxAmount))
16762 return getZeroVector(VT, Subtarget, DAG, DL);
16763 }
16764 }
16765
16766 return SDValue();
16767}
16768
Nadav Rotem0fb65232013-05-04 23:24:56 +000016769/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000016770static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000016771 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000016772 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000016773 if (N->getOpcode() == ISD::SHL) {
16774 SDValue V = PerformSHLCombine(N, DAG);
16775 if (V.getNode()) return V;
16776 }
Evan Chengad9c0a32009-12-15 00:53:42 +000016777
Stephen Linfff96732013-07-12 15:31:36 +000016778 if (N->getOpcode() != ISD::SRA) {
16779 // Try to fold this logical shift into a zero vector.
16780 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
16781 if (V.getNode()) return V;
16782 }
16783
Michael Liao42317cc2013-03-20 02:33:21 +000016784 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000016785}
16786
Stuart Hastings865f0932011-06-03 23:53:54 +000016787// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
16788// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
16789// and friends. Likewise for OR -> CMPNEQSS.
16790static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
16791 TargetLowering::DAGCombinerInfo &DCI,
16792 const X86Subtarget *Subtarget) {
16793 unsigned opcode;
16794
16795 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
16796 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000016797 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000016798 SDValue N0 = N->getOperand(0);
16799 SDValue N1 = N->getOperand(1);
16800 SDValue CMP0 = N0->getOperand(1);
16801 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000016802 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000016803
16804 // The SETCCs should both refer to the same CMP.
16805 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
16806 return SDValue();
16807
16808 SDValue CMP00 = CMP0->getOperand(0);
16809 SDValue CMP01 = CMP0->getOperand(1);
16810 EVT VT = CMP00.getValueType();
16811
16812 if (VT == MVT::f32 || VT == MVT::f64) {
16813 bool ExpectingFlags = false;
16814 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000016815 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000016816 !ExpectingFlags && UI != UE; ++UI)
16817 switch (UI->getOpcode()) {
16818 default:
16819 case ISD::BR_CC:
16820 case ISD::BRCOND:
16821 case ISD::SELECT:
16822 ExpectingFlags = true;
16823 break;
16824 case ISD::CopyToReg:
16825 case ISD::SIGN_EXTEND:
16826 case ISD::ZERO_EXTEND:
16827 case ISD::ANY_EXTEND:
16828 break;
16829 }
16830
16831 if (!ExpectingFlags) {
16832 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
16833 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
16834
16835 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
16836 X86::CondCode tmp = cc0;
16837 cc0 = cc1;
16838 cc1 = tmp;
16839 }
16840
16841 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
16842 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
16843 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
16844 X86ISD::NodeType NTOperator = is64BitFP ?
16845 X86ISD::FSETCCsd : X86ISD::FSETCCss;
16846 // FIXME: need symbolic constants for these magic numbers.
16847 // See X86ATTInstPrinter.cpp:printSSECC().
16848 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
16849 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
16850 DAG.getConstant(x86cc, MVT::i8));
16851 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
16852 OnesOrZeroesF);
16853 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
16854 DAG.getConstant(1, MVT::i32));
16855 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
16856 return OneBitOfTruth;
16857 }
16858 }
16859 }
16860 }
16861 return SDValue();
16862}
16863
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000016864/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
16865/// so it can be folded inside ANDNP.
16866static bool CanFoldXORWithAllOnes(const SDNode *N) {
16867 EVT VT = N->getValueType(0);
16868
16869 // Match direct AllOnes for 128 and 256-bit vectors
16870 if (ISD::isBuildVectorAllOnes(N))
16871 return true;
16872
16873 // Look through a bit convert.
16874 if (N->getOpcode() == ISD::BITCAST)
16875 N = N->getOperand(0).getNode();
16876
16877 // Sometimes the operand may come from a insert_subvector building a 256-bit
16878 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000016879 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000016880 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
16881 SDValue V1 = N->getOperand(0);
16882 SDValue V2 = N->getOperand(1);
16883
16884 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
16885 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
16886 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
16887 ISD::isBuildVectorAllOnes(V2.getNode()))
16888 return true;
16889 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000016890
16891 return false;
16892}
16893
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016894// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
16895// register. In most cases we actually compare or select YMM-sized registers
16896// and mixing the two types creates horrible code. This method optimizes
16897// some of the transition sequences.
16898static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
16899 TargetLowering::DAGCombinerInfo &DCI,
16900 const X86Subtarget *Subtarget) {
16901 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000016902 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016903 return SDValue();
16904
16905 assert((N->getOpcode() == ISD::ANY_EXTEND ||
16906 N->getOpcode() == ISD::ZERO_EXTEND ||
16907 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
16908
16909 SDValue Narrow = N->getOperand(0);
16910 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000016911 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016912 return SDValue();
16913
16914 if (Narrow->getOpcode() != ISD::XOR &&
16915 Narrow->getOpcode() != ISD::AND &&
16916 Narrow->getOpcode() != ISD::OR)
16917 return SDValue();
16918
16919 SDValue N0 = Narrow->getOperand(0);
16920 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000016921 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016922
16923 // The Left side has to be a trunc.
16924 if (N0.getOpcode() != ISD::TRUNCATE)
16925 return SDValue();
16926
16927 // The type of the truncated inputs.
16928 EVT WideVT = N0->getOperand(0)->getValueType(0);
16929 if (WideVT != VT)
16930 return SDValue();
16931
16932 // The right side has to be a 'trunc' or a constant vector.
16933 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
16934 bool RHSConst = (isSplatVector(N1.getNode()) &&
16935 isa<ConstantSDNode>(N1->getOperand(0)));
16936 if (!RHSTrunc && !RHSConst)
16937 return SDValue();
16938
16939 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16940
16941 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
16942 return SDValue();
16943
16944 // Set N0 and N1 to hold the inputs to the new wide operation.
16945 N0 = N0->getOperand(0);
16946 if (RHSConst) {
16947 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
16948 N1->getOperand(0));
16949 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
16950 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
16951 } else if (RHSTrunc) {
16952 N1 = N1->getOperand(0);
16953 }
16954
16955 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000016956 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016957 unsigned Opcode = N->getOpcode();
16958 switch (Opcode) {
16959 case ISD::ANY_EXTEND:
16960 return Op;
16961 case ISD::ZERO_EXTEND: {
16962 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
16963 APInt Mask = APInt::getAllOnesValue(InBits);
16964 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
16965 return DAG.getNode(ISD::AND, DL, VT,
16966 Op, DAG.getConstant(Mask, VT));
16967 }
16968 case ISD::SIGN_EXTEND:
16969 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
16970 Op, DAG.getValueType(NarrowVT));
16971 default:
16972 llvm_unreachable("Unexpected opcode");
16973 }
16974}
16975
Nate Begemanb65c1752010-12-17 22:55:37 +000016976static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
16977 TargetLowering::DAGCombinerInfo &DCI,
16978 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016979 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000016980 if (DCI.isBeforeLegalizeOps())
16981 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016982
Stuart Hastings865f0932011-06-03 23:53:54 +000016983 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
16984 if (R.getNode())
16985 return R;
16986
Craig Topperb926afc2012-12-17 05:12:30 +000016987 // Create BLSI, and BLSR instructions
Craig Topperb4c94572011-10-21 06:55:01 +000016988 // BLSI is X & (-X)
16989 // BLSR is X & (X-1)
Craig Topper54a11172011-10-14 07:06:56 +000016990 if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
16991 SDValue N0 = N->getOperand(0);
16992 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000016993 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000016994
Craig Topperb4c94572011-10-21 06:55:01 +000016995 // Check LHS for neg
16996 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
16997 isZero(N0.getOperand(0)))
16998 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
16999
17000 // Check RHS for neg
17001 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17002 isZero(N1.getOperand(0)))
17003 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17004
17005 // Check LHS for X-1
17006 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17007 isAllOnes(N0.getOperand(1)))
17008 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17009
17010 // Check RHS for X-1
17011 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17012 isAllOnes(N1.getOperand(1)))
17013 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17014
Craig Topper54a11172011-10-14 07:06:56 +000017015 return SDValue();
17016 }
17017
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017018 // Want to form ANDNP nodes:
17019 // 1) In the hopes of then easily combining them with OR and AND nodes
17020 // to form PBLEND/PSIGN.
17021 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017022 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017023 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017024
Nate Begemanb65c1752010-12-17 22:55:37 +000017025 SDValue N0 = N->getOperand(0);
17026 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017027 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017028
Nate Begemanb65c1752010-12-17 22:55:37 +000017029 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017030 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017031 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17032 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017033 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017034
17035 // Check RHS for vnot
17036 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017037 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17038 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017039 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017040
Nate Begemanb65c1752010-12-17 22:55:37 +000017041 return SDValue();
17042}
17043
Evan Cheng760d1942010-01-04 21:22:48 +000017044static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017045 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017046 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017047 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017048 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017049 return SDValue();
17050
Stuart Hastings865f0932011-06-03 23:53:54 +000017051 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17052 if (R.getNode())
17053 return R;
17054
Evan Cheng760d1942010-01-04 21:22:48 +000017055 SDValue N0 = N->getOperand(0);
17056 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017057
Nate Begemanb65c1752010-12-17 22:55:37 +000017058 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017059 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017060 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017061 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017062 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017063
Craig Topper1666cb62011-11-19 07:07:26 +000017064 // Canonicalize pandn to RHS
17065 if (N0.getOpcode() == X86ISD::ANDNP)
17066 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017067 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017068 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17069 SDValue Mask = N1.getOperand(0);
17070 SDValue X = N1.getOperand(1);
17071 SDValue Y;
17072 if (N0.getOperand(0) == Mask)
17073 Y = N0.getOperand(1);
17074 if (N0.getOperand(1) == Mask)
17075 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017076
Craig Topper1666cb62011-11-19 07:07:26 +000017077 // Check to see if the mask appeared in both the AND and ANDNP and
17078 if (!Y.getNode())
17079 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017080
Craig Topper1666cb62011-11-19 07:07:26 +000017081 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017082 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017083 if (Mask.getOpcode() == ISD::BITCAST)
17084 Mask = Mask.getOperand(0);
17085 if (X.getOpcode() == ISD::BITCAST)
17086 X = X.getOperand(0);
17087 if (Y.getOpcode() == ISD::BITCAST)
17088 Y = Y.getOperand(0);
17089
Craig Topper1666cb62011-11-19 07:07:26 +000017090 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017091
Craig Toppered2e13d2012-01-22 19:15:14 +000017092 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017093 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17094 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017095 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017096 unsigned SraAmt = ~0;
17097 if (Mask.getOpcode() == ISD::SRA) {
17098 SDValue Amt = Mask.getOperand(1);
17099 if (isSplatVector(Amt.getNode())) {
17100 SDValue SclrAmt = Amt->getOperand(0);
17101 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17102 SraAmt = C->getZExtValue();
17103 }
17104 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17105 SDValue SraC = Mask.getOperand(1);
17106 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17107 }
Craig Topper1666cb62011-11-19 07:07:26 +000017108 if ((SraAmt + 1) != EltBits)
17109 return SDValue();
17110
Andrew Trickac6d9be2013-05-25 02:42:55 +000017111 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017112
17113 // Now we know we at least have a plendvb with the mask val. See if
17114 // we can form a psignb/w/d.
17115 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017116 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17117 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017118 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17119 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17120 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017121 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017122 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017123 }
17124 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017125 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017126 return SDValue();
17127
17128 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17129
17130 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17131 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17132 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017133 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017134 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017135 }
17136 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017137
Craig Topper1666cb62011-11-19 07:07:26 +000017138 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17139 return SDValue();
17140
Nate Begemanb65c1752010-12-17 22:55:37 +000017141 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017142 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17143 std::swap(N0, N1);
17144 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17145 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017146 if (!N0.hasOneUse() || !N1.hasOneUse())
17147 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017148
17149 SDValue ShAmt0 = N0.getOperand(1);
17150 if (ShAmt0.getValueType() != MVT::i8)
17151 return SDValue();
17152 SDValue ShAmt1 = N1.getOperand(1);
17153 if (ShAmt1.getValueType() != MVT::i8)
17154 return SDValue();
17155 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17156 ShAmt0 = ShAmt0.getOperand(0);
17157 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17158 ShAmt1 = ShAmt1.getOperand(0);
17159
Andrew Trickac6d9be2013-05-25 02:42:55 +000017160 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017161 unsigned Opc = X86ISD::SHLD;
17162 SDValue Op0 = N0.getOperand(0);
17163 SDValue Op1 = N1.getOperand(0);
17164 if (ShAmt0.getOpcode() == ISD::SUB) {
17165 Opc = X86ISD::SHRD;
17166 std::swap(Op0, Op1);
17167 std::swap(ShAmt0, ShAmt1);
17168 }
17169
Evan Cheng8b1190a2010-04-28 01:18:01 +000017170 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017171 if (ShAmt1.getOpcode() == ISD::SUB) {
17172 SDValue Sum = ShAmt1.getOperand(0);
17173 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017174 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17175 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17176 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17177 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017178 return DAG.getNode(Opc, DL, VT,
17179 Op0, Op1,
17180 DAG.getNode(ISD::TRUNCATE, DL,
17181 MVT::i8, ShAmt0));
17182 }
17183 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17184 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17185 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017186 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017187 return DAG.getNode(Opc, DL, VT,
17188 N0.getOperand(0), N1.getOperand(0),
17189 DAG.getNode(ISD::TRUNCATE, DL,
17190 MVT::i8, ShAmt0));
17191 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017192
Evan Cheng760d1942010-01-04 21:22:48 +000017193 return SDValue();
17194}
17195
Manman Ren92363622012-06-07 22:39:10 +000017196// Generate NEG and CMOV for integer abs.
17197static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17198 EVT VT = N->getValueType(0);
17199
17200 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17201 // 8-bit integer abs to NEG and CMOV.
17202 if (VT.isInteger() && VT.getSizeInBits() == 8)
17203 return SDValue();
17204
17205 SDValue N0 = N->getOperand(0);
17206 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017207 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017208
17209 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17210 // and change it to SUB and CMOV.
17211 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17212 N0.getOpcode() == ISD::ADD &&
17213 N0.getOperand(1) == N1 &&
17214 N1.getOpcode() == ISD::SRA &&
17215 N1.getOperand(0) == N0.getOperand(0))
17216 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17217 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17218 // Generate SUB & CMOV.
17219 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17220 DAG.getConstant(0, VT), N0.getOperand(0));
17221
17222 SDValue Ops[] = { N0.getOperand(0), Neg,
17223 DAG.getConstant(X86::COND_GE, MVT::i8),
17224 SDValue(Neg.getNode(), 1) };
17225 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17226 Ops, array_lengthof(Ops));
17227 }
17228 return SDValue();
17229}
17230
Craig Topper3738ccd2011-12-27 06:27:23 +000017231// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017232static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17233 TargetLowering::DAGCombinerInfo &DCI,
17234 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017235 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017236 if (DCI.isBeforeLegalizeOps())
17237 return SDValue();
17238
Manman Ren45d53b82012-06-08 18:58:26 +000017239 if (Subtarget->hasCMov()) {
17240 SDValue RV = performIntegerAbsCombine(N, DAG);
17241 if (RV.getNode())
17242 return RV;
17243 }
Manman Ren92363622012-06-07 22:39:10 +000017244
17245 // Try forming BMI if it is available.
17246 if (!Subtarget->hasBMI())
17247 return SDValue();
17248
Craig Topperb4c94572011-10-21 06:55:01 +000017249 if (VT != MVT::i32 && VT != MVT::i64)
17250 return SDValue();
17251
Craig Topper3738ccd2011-12-27 06:27:23 +000017252 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17253
Craig Topperb4c94572011-10-21 06:55:01 +000017254 // Create BLSMSK instructions by finding X ^ (X-1)
17255 SDValue N0 = N->getOperand(0);
17256 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017257 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017258
17259 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17260 isAllOnes(N0.getOperand(1)))
17261 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17262
17263 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17264 isAllOnes(N1.getOperand(1)))
17265 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17266
17267 return SDValue();
17268}
17269
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017270/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17271static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017272 TargetLowering::DAGCombinerInfo &DCI,
17273 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017274 LoadSDNode *Ld = cast<LoadSDNode>(N);
17275 EVT RegVT = Ld->getValueType(0);
17276 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017277 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017278 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017279 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017280
Michael Liaod4584c92013-03-25 23:50:10 +000017281 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017282 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017283 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017284 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017285 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017286 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017287 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017288 if (NumElems < 2)
17289 return SDValue();
17290
Nadav Rotem48177ac2013-01-18 23:10:30 +000017291 SDValue Ptr = Ld->getBasePtr();
17292 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17293
17294 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17295 NumElems/2);
17296 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17297 Ld->getPointerInfo(), Ld->isVolatile(),
17298 Ld->isNonTemporal(), Ld->isInvariant(),
17299 Alignment);
17300 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17301 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17302 Ld->getPointerInfo(), Ld->isVolatile(),
17303 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017304 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017305 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17306 Load1.getValue(1),
17307 Load2.getValue(1));
17308
17309 SDValue NewVec = DAG.getUNDEF(RegVT);
17310 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17311 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17312 return DCI.CombineTo(N, NewVec, TF, true);
17313 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017314
Nadav Rotemca6f2962011-09-18 19:00:23 +000017315 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017316 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17317 // expansion is still better than scalar code.
17318 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17319 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017320 // TODO: It is possible to support ZExt by zeroing the undef values
17321 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000017322 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17323 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017324 assert(MemVT != RegVT && "Cannot extend to the same type");
17325 assert(MemVT.isVector() && "Must load a vector from memory");
17326
17327 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017328 unsigned MemSz = MemVT.getSizeInBits();
17329 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017330
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017331 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17332 return SDValue();
17333
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017334 // All sizes must be a power of two.
17335 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17336 return SDValue();
17337
17338 // Attempt to load the original value using scalar loads.
17339 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017340 MVT SclrLoadTy = MVT::i8;
17341 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17342 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17343 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017344 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017345 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017346 }
17347 }
17348
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017349 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17350 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17351 (64 <= MemSz))
17352 SclrLoadTy = MVT::f64;
17353
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017354 // Calculate the number of scalar loads that we need to perform
17355 // in order to load our vector from memory.
17356 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017357 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17358 return SDValue();
17359
17360 unsigned loadRegZize = RegSz;
17361 if (Ext == ISD::SEXTLOAD && RegSz == 256)
17362 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017363
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017364 // Represent our vector as a sequence of elements which are the
17365 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017366 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017367 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017368
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017369 // Represent the data using the same element type that is stored in
17370 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000017371 EVT WideVecVT =
17372 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017373 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017374
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017375 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
17376 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017377
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017378 // We can't shuffle using an illegal type.
17379 if (!TLI.isTypeLegal(WideVecVT))
17380 return SDValue();
17381
17382 SmallVector<SDValue, 8> Chains;
17383 SDValue Ptr = Ld->getBasePtr();
17384 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
17385 TLI.getPointerTy());
17386 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
17387
17388 for (unsigned i = 0; i < NumLoads; ++i) {
17389 // Perform a single load.
17390 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
17391 Ptr, Ld->getPointerInfo(),
17392 Ld->isVolatile(), Ld->isNonTemporal(),
17393 Ld->isInvariant(), Ld->getAlignment());
17394 Chains.push_back(ScalarLoad.getValue(1));
17395 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
17396 // another round of DAGCombining.
17397 if (i == 0)
17398 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
17399 else
17400 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
17401 ScalarLoad, DAG.getIntPtrConstant(i));
17402
17403 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17404 }
17405
17406 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17407 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017408
17409 // Bitcast the loaded value to a vector of the original element type, in
17410 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017411 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017412 unsigned SizeRatio = RegSz/MemSz;
17413
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017414 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000017415 // If we have SSE4.1 we can directly emit a VSEXT node.
17416 if (Subtarget->hasSSE41()) {
17417 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
17418 return DCI.CombineTo(N, Sext, TF, true);
17419 }
17420
17421 // Otherwise we'll shuffle the small elements in the high bits of the
17422 // larger type and perform an arithmetic shift. If the shift is not legal
17423 // it's better to scalarize.
17424 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
17425 return SDValue();
17426
17427 // Redistribute the loaded elements into the different locations.
17428 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17429 for (unsigned i = 0; i != NumElems; ++i)
17430 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
17431
17432 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17433 DAG.getUNDEF(WideVecVT),
17434 &ShuffleVec[0]);
17435
17436 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17437
17438 // Build the arithmetic shift.
17439 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
17440 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000017441 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
17442 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000017443
17444 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000017445 }
Benjamin Kramer17347912012-12-22 11:34:28 +000017446
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017447 // Redistribute the loaded elements into the different locations.
17448 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000017449 for (unsigned i = 0; i != NumElems; ++i)
17450 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017451
17452 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000017453 DAG.getUNDEF(WideVecVT),
17454 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017455
17456 // Bitcast to the requested type.
17457 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17458 // Replace the original load with the new sequence
17459 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017460 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017461 }
17462
17463 return SDValue();
17464}
17465
Chris Lattner149a4e52008-02-22 02:09:43 +000017466/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000017467static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000017468 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000017469 StoreSDNode *St = cast<StoreSDNode>(N);
17470 EVT VT = St->getValue().getValueType();
17471 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017472 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000017473 SDValue StoredVal = St->getOperand(1);
17474 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17475
Nick Lewycky8a8d4792011-12-02 22:16:29 +000017476 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000017477 // On Sandy Bridge, 256-bit memory operations are executed by two
17478 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
17479 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000017480 unsigned Alignment = St->getAlignment();
17481 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017482 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017483 StVT == VT && !IsAligned) {
17484 unsigned NumElems = VT.getVectorNumElements();
17485 if (NumElems < 2)
17486 return SDValue();
17487
17488 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
17489 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000017490
17491 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
17492 SDValue Ptr0 = St->getBasePtr();
17493 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
17494
17495 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
17496 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000017497 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000017498 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
17499 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000017500 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000017501 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000017502 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
17503 }
Nadav Rotem614061b2011-08-10 19:30:14 +000017504
17505 // Optimize trunc store (of multiple scalars) to shuffle and store.
17506 // First, pack all of the elements in one place. Next, store to memory
17507 // in fewer chunks.
17508 if (St->isTruncatingStore() && VT.isVector()) {
17509 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17510 unsigned NumElems = VT.getVectorNumElements();
17511 assert(StVT != VT && "Cannot truncate to the same type");
17512 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
17513 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
17514
17515 // From, To sizes and ElemCount must be pow of two
17516 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000017517 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000017518 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000017519 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017520
Nadav Rotem614061b2011-08-10 19:30:14 +000017521 unsigned SizeRatio = FromSz / ToSz;
17522
17523 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
17524
17525 // Create a type on which we perform the shuffle
17526 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
17527 StVT.getScalarType(), NumElems*SizeRatio);
17528
17529 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
17530
17531 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
17532 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000017533 for (unsigned i = 0; i != NumElems; ++i)
17534 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000017535
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017536 // Can't shuffle using an illegal type.
17537 if (!TLI.isTypeLegal(WideVecVT))
17538 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000017539
17540 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000017541 DAG.getUNDEF(WideVecVT),
17542 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000017543 // At this point all of the data is stored at the bottom of the
17544 // register. We now need to save it to mem.
17545
17546 // Find the largest store unit
17547 MVT StoreType = MVT::i8;
17548 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17549 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17550 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017551 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000017552 StoreType = Tp;
17553 }
17554
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017555 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17556 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
17557 (64 <= NumElems * ToSz))
17558 StoreType = MVT::f64;
17559
Nadav Rotem614061b2011-08-10 19:30:14 +000017560 // Bitcast the original vector into a vector of store-size units
17561 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000017562 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000017563 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
17564 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
17565 SmallVector<SDValue, 8> Chains;
17566 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
17567 TLI.getPointerTy());
17568 SDValue Ptr = St->getBasePtr();
17569
17570 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000017571 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000017572 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
17573 StoreType, ShuffWide,
17574 DAG.getIntPtrConstant(i));
17575 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
17576 St->getPointerInfo(), St->isVolatile(),
17577 St->isNonTemporal(), St->getAlignment());
17578 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17579 Chains.push_back(Ch);
17580 }
17581
17582 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17583 Chains.size());
17584 }
17585
Chris Lattner149a4e52008-02-22 02:09:43 +000017586 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
17587 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000017588 // A preferable solution to the general problem is to figure out the right
17589 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000017590
17591 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000017592 if (VT.getSizeInBits() != 64)
17593 return SDValue();
17594
Devang Patel578efa92009-06-05 21:57:13 +000017595 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000017596 bool NoImplicitFloatOps = F->getAttributes().
17597 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000017598 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000017599 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000017600 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000017601 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000017602 isa<LoadSDNode>(St->getValue()) &&
17603 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
17604 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000017605 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000017606 LoadSDNode *Ld = 0;
17607 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000017608 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000017609 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000017610 // Must be a store of a load. We currently handle two cases: the load
17611 // is a direct child, and it's under an intervening TokenFactor. It is
17612 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000017613 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000017614 Ld = cast<LoadSDNode>(St->getChain());
17615 else if (St->getValue().hasOneUse() &&
17616 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000017617 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000017618 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000017619 TokenFactorIndex = i;
17620 Ld = cast<LoadSDNode>(St->getValue());
17621 } else
17622 Ops.push_back(ChainVal->getOperand(i));
17623 }
17624 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000017625
Evan Cheng536e6672009-03-12 05:59:15 +000017626 if (!Ld || !ISD::isNormalLoad(Ld))
17627 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000017628
Evan Cheng536e6672009-03-12 05:59:15 +000017629 // If this is not the MMX case, i.e. we are just turning i64 load/store
17630 // into f64 load/store, avoid the transformation if there are multiple
17631 // uses of the loaded value.
17632 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
17633 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000017634
Andrew Trickac6d9be2013-05-25 02:42:55 +000017635 SDLoc LdDL(Ld);
17636 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000017637 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
17638 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
17639 // pair instead.
17640 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017641 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000017642 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
17643 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000017644 Ld->isNonTemporal(), Ld->isInvariant(),
17645 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000017646 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000017647 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000017648 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000017649 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000017650 Ops.size());
17651 }
Evan Cheng536e6672009-03-12 05:59:15 +000017652 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000017653 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000017654 St->isVolatile(), St->isNonTemporal(),
17655 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000017656 }
Evan Cheng536e6672009-03-12 05:59:15 +000017657
17658 // Otherwise, lower to two pairs of 32-bit loads / stores.
17659 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000017660 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
17661 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000017662
Owen Anderson825b72b2009-08-11 20:47:22 +000017663 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000017664 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000017665 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000017666 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000017667 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000017668 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000017669 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000017670 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000017671 MinAlign(Ld->getAlignment(), 4));
17672
17673 SDValue NewChain = LoLd.getValue(1);
17674 if (TokenFactorIndex != -1) {
17675 Ops.push_back(LoLd);
17676 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000017677 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000017678 Ops.size());
17679 }
17680
17681 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000017682 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
17683 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000017684
17685 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000017686 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000017687 St->isVolatile(), St->isNonTemporal(),
17688 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000017689 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000017690 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000017691 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000017692 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000017693 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000017694 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000017695 }
Dan Gohman475871a2008-07-27 21:46:04 +000017696 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000017697}
17698
Duncan Sands17470be2011-09-22 20:15:48 +000017699/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
17700/// and return the operands for the horizontal operation in LHS and RHS. A
17701/// horizontal operation performs the binary operation on successive elements
17702/// of its first operand, then on successive elements of its second operand,
17703/// returning the resulting values in a vector. For example, if
17704/// A = < float a0, float a1, float a2, float a3 >
17705/// and
17706/// B = < float b0, float b1, float b2, float b3 >
17707/// then the result of doing a horizontal operation on A and B is
17708/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
17709/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
17710/// A horizontal-op B, for some already available A and B, and if so then LHS is
17711/// set to A, RHS to B, and the routine returns 'true'.
17712/// Note that the binary operation should have the property that if one of the
17713/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000017714static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000017715 // Look for the following pattern: if
17716 // A = < float a0, float a1, float a2, float a3 >
17717 // B = < float b0, float b1, float b2, float b3 >
17718 // and
17719 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
17720 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
17721 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
17722 // which is A horizontal-op B.
17723
17724 // At least one of the operands should be a vector shuffle.
17725 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
17726 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
17727 return false;
17728
Craig Topperaa0f4202013-08-06 06:05:05 +000017729 MVT VT = LHS.getValueType().getSimpleVT();
Craig Topperf8363302011-12-02 08:18:41 +000017730
17731 assert((VT.is128BitVector() || VT.is256BitVector()) &&
17732 "Unsupported vector type for horizontal add/sub");
17733
17734 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
17735 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000017736 unsigned NumElts = VT.getVectorNumElements();
17737 unsigned NumLanes = VT.getSizeInBits()/128;
17738 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000017739 assert((NumLaneElts % 2 == 0) &&
17740 "Vector type should have an even number of elements in each lane");
17741 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000017742
17743 // View LHS in the form
17744 // LHS = VECTOR_SHUFFLE A, B, LMask
17745 // If LHS is not a shuffle then pretend it is the shuffle
17746 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
17747 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
17748 // type VT.
17749 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000017750 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000017751 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
17752 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
17753 A = LHS.getOperand(0);
17754 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
17755 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000017756 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
17757 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000017758 } else {
17759 if (LHS.getOpcode() != ISD::UNDEF)
17760 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000017761 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000017762 LMask[i] = i;
17763 }
17764
17765 // Likewise, view RHS in the form
17766 // RHS = VECTOR_SHUFFLE C, D, RMask
17767 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000017768 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000017769 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
17770 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
17771 C = RHS.getOperand(0);
17772 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
17773 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000017774 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
17775 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000017776 } else {
17777 if (RHS.getOpcode() != ISD::UNDEF)
17778 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000017779 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000017780 RMask[i] = i;
17781 }
17782
17783 // Check that the shuffles are both shuffling the same vectors.
17784 if (!(A == C && B == D) && !(A == D && B == C))
17785 return false;
17786
17787 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
17788 if (!A.getNode() && !B.getNode())
17789 return false;
17790
17791 // If A and B occur in reverse order in RHS, then "swap" them (which means
17792 // rewriting the mask).
17793 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000017794 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000017795
17796 // At this point LHS and RHS are equivalent to
17797 // LHS = VECTOR_SHUFFLE A, B, LMask
17798 // RHS = VECTOR_SHUFFLE A, B, RMask
17799 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000017800 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
17801 for (unsigned i = 0; i != NumLaneElts; ++i) {
17802 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000017803
Craig Topper57bc5a02013-08-06 06:54:25 +000017804 // Ignore any UNDEF components.
17805 if (LIdx < 0 || RIdx < 0 ||
17806 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
17807 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
17808 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000017809
Craig Topper57bc5a02013-08-06 06:54:25 +000017810 // Check that successive elements are being operated on. If not, this is
17811 // not a horizontal operation.
17812 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
17813 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
17814 if (!(LIdx == Index && RIdx == Index + 1) &&
17815 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
17816 return false;
17817 }
Duncan Sands17470be2011-09-22 20:15:48 +000017818 }
17819
17820 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
17821 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
17822 return true;
17823}
17824
17825/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
17826static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
17827 const X86Subtarget *Subtarget) {
17828 EVT VT = N->getValueType(0);
17829 SDValue LHS = N->getOperand(0);
17830 SDValue RHS = N->getOperand(1);
17831
17832 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000017833 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017834 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000017835 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000017836 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000017837 return SDValue();
17838}
17839
17840/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
17841static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
17842 const X86Subtarget *Subtarget) {
17843 EVT VT = N->getValueType(0);
17844 SDValue LHS = N->getOperand(0);
17845 SDValue RHS = N->getOperand(1);
17846
17847 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000017848 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017849 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000017850 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000017851 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000017852 return SDValue();
17853}
17854
Chris Lattner6cf73262008-01-25 06:14:17 +000017855/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
17856/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000017857static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000017858 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
17859 // F[X]OR(0.0, x) -> x
17860 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000017861 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
17862 if (C->getValueAPF().isPosZero())
17863 return N->getOperand(1);
17864 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
17865 if (C->getValueAPF().isPosZero())
17866 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000017867 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000017868}
17869
Nadav Rotemd60cb112012-08-19 13:06:16 +000017870/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
17871/// X86ISD::FMAX nodes.
17872static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
17873 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
17874
17875 // Only perform optimizations if UnsafeMath is used.
17876 if (!DAG.getTarget().Options.UnsafeFPMath)
17877 return SDValue();
17878
17879 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000017880 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000017881 unsigned NewOp = 0;
17882 switch (N->getOpcode()) {
17883 default: llvm_unreachable("unknown opcode");
17884 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
17885 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
17886 }
17887
Andrew Trickac6d9be2013-05-25 02:42:55 +000017888 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000017889 N->getOperand(0), N->getOperand(1));
17890}
17891
Chris Lattneraf723b92008-01-25 05:46:26 +000017892/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000017893static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000017894 // FAND(0.0, x) -> 0.0
17895 // FAND(x, 0.0) -> 0.0
17896 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
17897 if (C->getValueAPF().isPosZero())
17898 return N->getOperand(0);
17899 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
17900 if (C->getValueAPF().isPosZero())
17901 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000017902 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000017903}
17904
Benjamin Kramer75311b72013-08-04 12:05:16 +000017905/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
17906static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
17907 // FANDN(x, 0.0) -> 0.0
17908 // FANDN(0.0, x) -> x
17909 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
17910 if (C->getValueAPF().isPosZero())
17911 return N->getOperand(1);
17912 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
17913 if (C->getValueAPF().isPosZero())
17914 return N->getOperand(1);
17915 return SDValue();
17916}
17917
Dan Gohmane5af2d32009-01-29 01:59:02 +000017918static SDValue PerformBTCombine(SDNode *N,
17919 SelectionDAG &DAG,
17920 TargetLowering::DAGCombinerInfo &DCI) {
17921 // BT ignores high bits in the bit index operand.
17922 SDValue Op1 = N->getOperand(1);
17923 if (Op1.hasOneUse()) {
17924 unsigned BitWidth = Op1.getValueSizeInBits();
17925 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
17926 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000017927 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
17928 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000017929 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000017930 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
17931 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
17932 DCI.CommitTargetLoweringOpt(TLO);
17933 }
17934 return SDValue();
17935}
Chris Lattner83e6c992006-10-04 06:57:07 +000017936
Eli Friedman7a5e5552009-06-07 06:52:44 +000017937static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
17938 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000017939 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000017940 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000017941 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000017942 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000017943 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000017944 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017945 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000017946 }
17947 return SDValue();
17948}
17949
Matt Arsenault225ed702013-05-18 00:21:46 +000017950static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000017951 const X86Subtarget *Subtarget) {
17952 EVT VT = N->getValueType(0);
17953 if (!VT.isVector())
17954 return SDValue();
17955
17956 SDValue N0 = N->getOperand(0);
17957 SDValue N1 = N->getOperand(1);
17958 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017959 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000017960
17961 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
17962 // both SSE and AVX2 since there is no sign-extended shift right
17963 // operation on a vector with 64-bit elements.
17964 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
17965 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
17966 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
17967 N0.getOpcode() == ISD::SIGN_EXTEND)) {
17968 SDValue N00 = N0.getOperand(0);
17969
Matt Arsenault225ed702013-05-18 00:21:46 +000017970 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000017971 // it may be replaced with X86ISD::VSEXT node.
17972 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
17973 if (!ISD::isNormalLoad(N00.getNode()))
17974 return SDValue();
17975
17976 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000017977 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000017978 N00, N1);
17979 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
17980 }
17981 }
17982 return SDValue();
17983}
17984
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017985static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
17986 TargetLowering::DAGCombinerInfo &DCI,
17987 const X86Subtarget *Subtarget) {
17988 if (!DCI.isBeforeLegalizeOps())
17989 return SDValue();
17990
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017991 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000017992 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017993
Nadav Rotem0c8607b2013-01-20 08:35:56 +000017994 EVT VT = N->getValueType(0);
17995 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017996 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
17997 if (R.getNode())
17998 return R;
17999 }
18000
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018001 return SDValue();
18002}
18003
Michael Liaof6c24ee2012-08-10 14:39:24 +000018004static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018005 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018006 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018007 EVT VT = N->getValueType(0);
18008
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018009 // Let legalize expand this if it isn't a legal type yet.
18010 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18011 return SDValue();
18012
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018013 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018014 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18015 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018016 return SDValue();
18017
18018 SDValue A = N->getOperand(0);
18019 SDValue B = N->getOperand(1);
18020 SDValue C = N->getOperand(2);
18021
18022 bool NegA = (A.getOpcode() == ISD::FNEG);
18023 bool NegB = (B.getOpcode() == ISD::FNEG);
18024 bool NegC = (C.getOpcode() == ISD::FNEG);
18025
Michael Liaof6c24ee2012-08-10 14:39:24 +000018026 // Negative multiplication when NegA xor NegB
18027 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018028 if (NegA)
18029 A = A.getOperand(0);
18030 if (NegB)
18031 B = B.getOperand(0);
18032 if (NegC)
18033 C = C.getOperand(0);
18034
18035 unsigned Opcode;
18036 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018037 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018038 else
Craig Topperbf404372012-08-31 15:40:30 +000018039 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18040
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018041 return DAG.getNode(Opcode, dl, VT, A, B, C);
18042}
18043
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018044static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018045 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018046 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018047 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18048 // (and (i32 x86isd::setcc_carry), 1)
18049 // This eliminates the zext. This transformation is necessary because
18050 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018051 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018052 SDValue N0 = N->getOperand(0);
18053 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018054
Evan Cheng2e489c42009-12-16 00:53:11 +000018055 if (N0.getOpcode() == ISD::AND &&
18056 N0.hasOneUse() &&
18057 N0.getOperand(0).hasOneUse()) {
18058 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018059 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18060 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18061 if (!C || C->getZExtValue() != 1)
18062 return SDValue();
18063 return DAG.getNode(ISD::AND, dl, VT,
18064 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18065 N00.getOperand(0), N00.getOperand(1)),
18066 DAG.getConstant(1, VT));
18067 }
18068 }
18069
Craig Topper5a529e42013-01-18 06:44:29 +000018070 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018071 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18072 if (R.getNode())
18073 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018074 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018075
Evan Cheng2e489c42009-12-16 00:53:11 +000018076 return SDValue();
18077}
18078
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018079// Optimize x == -y --> x+y == 0
18080// x != -y --> x+y != 0
18081static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18082 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18083 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018084 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018085
18086 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18087 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18088 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018089 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018090 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018091 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018092 addV, DAG.getConstant(0, addV.getValueType()), CC);
18093 }
18094 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18095 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18096 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018097 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018098 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018099 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018100 addV, DAG.getConstant(0, addV.getValueType()), CC);
18101 }
18102 return SDValue();
18103}
18104
Eric Christophere187e252013-01-31 00:50:48 +000018105// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18106// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018107// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018108static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018109 return DAG.getNode(ISD::AND, DL, MVT::i8,
18110 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18111 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18112 DAG.getConstant(1, MVT::i8));
18113}
18114
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018115// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018116static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18117 TargetLowering::DAGCombinerInfo &DCI,
18118 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018119 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018120 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18121 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018122
Shuxin Yanga5526a92012-10-31 23:11:48 +000018123 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018124 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018125 // materializing "setb reg".
18126 //
18127 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18128 // cannot take an immediate as its first operand.
18129 //
Eric Christophere187e252013-01-31 00:50:48 +000018130 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018131 EFLAGS.getValueType().isInteger() &&
18132 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018133 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018134 EFLAGS.getNode()->getVTList(),
18135 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18136 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18137 return MaterializeSETB(DL, NewEFLAGS, DAG);
18138 }
18139 }
18140
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018141 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18142 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18143 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018144 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018145 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018146
Michael Liao2a33cec2012-08-10 19:58:13 +000018147 SDValue Flags;
18148
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018149 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18150 if (Flags.getNode()) {
18151 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18152 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18153 }
18154
Michael Liao2a33cec2012-08-10 19:58:13 +000018155 return SDValue();
18156}
18157
18158// Optimize branch condition evaluation.
18159//
18160static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18161 TargetLowering::DAGCombinerInfo &DCI,
18162 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018163 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018164 SDValue Chain = N->getOperand(0);
18165 SDValue Dest = N->getOperand(1);
18166 SDValue EFLAGS = N->getOperand(3);
18167 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18168
18169 SDValue Flags;
18170
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018171 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18172 if (Flags.getNode()) {
18173 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18174 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18175 Flags);
18176 }
18177
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018178 return SDValue();
18179}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018180
Benjamin Kramer1396c402011-06-18 11:09:41 +000018181static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18182 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018183 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018184 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018185
18186 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018187 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018188 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018189 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018190 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18191 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18192 }
18193
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018194 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18195 // a 32-bit target where SSE doesn't support i64->FP operations.
18196 if (Op0.getOpcode() == ISD::LOAD) {
18197 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18198 EVT VT = Ld->getValueType(0);
18199 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18200 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18201 !XTLI->getSubtarget()->is64Bit() &&
18202 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018203 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18204 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018205 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18206 return FILDChain;
18207 }
18208 }
18209 return SDValue();
18210}
18211
Chris Lattner23a01992010-12-20 01:37:09 +000018212// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18213static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18214 X86TargetLowering::DAGCombinerInfo &DCI) {
18215 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18216 // the result is either zero or one (depending on the input carry bit).
18217 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18218 if (X86::isZeroNode(N->getOperand(0)) &&
18219 X86::isZeroNode(N->getOperand(1)) &&
18220 // We don't have a good way to replace an EFLAGS use, so only do this when
18221 // dead right now.
18222 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018223 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018224 EVT VT = N->getValueType(0);
18225 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18226 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18227 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18228 DAG.getConstant(X86::COND_B,MVT::i8),
18229 N->getOperand(2)),
18230 DAG.getConstant(1, VT));
18231 return DCI.CombineTo(N, Res1, CarryOut);
18232 }
18233
18234 return SDValue();
18235}
18236
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018237// fold (add Y, (sete X, 0)) -> adc 0, Y
18238// (add Y, (setne X, 0)) -> sbb -1, Y
18239// (sub (sete X, 0), Y) -> sbb 0, Y
18240// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018241static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018242 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018243
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018244 // Look through ZExts.
18245 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18246 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18247 return SDValue();
18248
18249 SDValue SetCC = Ext.getOperand(0);
18250 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18251 return SDValue();
18252
18253 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18254 if (CC != X86::COND_E && CC != X86::COND_NE)
18255 return SDValue();
18256
18257 SDValue Cmp = SetCC.getOperand(1);
18258 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018259 !X86::isZeroNode(Cmp.getOperand(1)) ||
18260 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018261 return SDValue();
18262
18263 SDValue CmpOp0 = Cmp.getOperand(0);
18264 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18265 DAG.getConstant(1, CmpOp0.getValueType()));
18266
18267 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18268 if (CC == X86::COND_NE)
18269 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18270 DL, OtherVal.getValueType(), OtherVal,
18271 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18272 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18273 DL, OtherVal.getValueType(), OtherVal,
18274 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18275}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018276
Craig Topper54f952a2011-11-19 09:02:40 +000018277/// PerformADDCombine - Do target-specific dag combines on integer adds.
18278static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18279 const X86Subtarget *Subtarget) {
18280 EVT VT = N->getValueType(0);
18281 SDValue Op0 = N->getOperand(0);
18282 SDValue Op1 = N->getOperand(1);
18283
18284 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018285 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018286 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018287 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018288 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018289
18290 return OptimizeConditionalInDecrement(N, DAG);
18291}
18292
18293static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18294 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018295 SDValue Op0 = N->getOperand(0);
18296 SDValue Op1 = N->getOperand(1);
18297
18298 // X86 can't encode an immediate LHS of a sub. See if we can push the
18299 // negation into a preceding instruction.
18300 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018301 // If the RHS of the sub is a XOR with one use and a constant, invert the
18302 // immediate. Then add one to the LHS of the sub so we can turn
18303 // X-Y -> X+~Y+1, saving one register.
18304 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18305 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018306 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018307 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018308 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018309 Op1.getOperand(0),
18310 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018311 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018312 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018313 }
18314 }
18315
Craig Topper54f952a2011-11-19 09:02:40 +000018316 // Try to synthesize horizontal adds from adds of shuffles.
18317 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000018318 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018319 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000018320 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018321 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018322
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018323 return OptimizeConditionalInDecrement(N, DAG);
18324}
18325
Michael Liaod9d09602012-10-23 17:34:00 +000018326/// performVZEXTCombine - Performs build vector combines
18327static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18328 TargetLowering::DAGCombinerInfo &DCI,
18329 const X86Subtarget *Subtarget) {
18330 // (vzext (bitcast (vzext (x)) -> (vzext x)
18331 SDValue In = N->getOperand(0);
18332 while (In.getOpcode() == ISD::BITCAST)
18333 In = In.getOperand(0);
18334
18335 if (In.getOpcode() != X86ISD::VZEXT)
18336 return SDValue();
18337
Andrew Trickac6d9be2013-05-25 02:42:55 +000018338 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000018339 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000018340}
18341
Dan Gohman475871a2008-07-27 21:46:04 +000018342SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000018343 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000018344 SelectionDAG &DAG = DCI.DAG;
18345 switch (N->getOpcode()) {
18346 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000018347 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000018348 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000018349 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000018350 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018351 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000018352 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
18353 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000018354 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000018355 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000018356 case ISD::SHL:
18357 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000018358 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000018359 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000018360 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000018361 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018362 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000018363 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018364 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000018365 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
18366 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000018367 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000018368 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000018369 case X86ISD::FMIN:
18370 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000018371 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000018372 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000018373 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018374 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000018375 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000018376 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018377 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018378 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000018379 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018380 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018381 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000018382 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000018383 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000018384 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000018385 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000018386 case X86ISD::UNPCKH:
18387 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000018388 case X86ISD::MOVHLPS:
18389 case X86ISD::MOVLHPS:
18390 case X86ISD::PSHUFD:
18391 case X86ISD::PSHUFHW:
18392 case X86ISD::PSHUFLW:
18393 case X86ISD::MOVSS:
18394 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000018395 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000018396 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000018397 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018398 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000018399 }
18400
Dan Gohman475871a2008-07-27 21:46:04 +000018401 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000018402}
18403
Evan Chenge5b51ac2010-04-17 06:13:15 +000018404/// isTypeDesirableForOp - Return true if the target has native support for
18405/// the specified value type and it is 'desirable' to use the type for the
18406/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
18407/// instruction encodings are longer and some i16 instructions are slow.
18408bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
18409 if (!isTypeLegal(VT))
18410 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000018411 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000018412 return true;
18413
18414 switch (Opc) {
18415 default:
18416 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000018417 case ISD::LOAD:
18418 case ISD::SIGN_EXTEND:
18419 case ISD::ZERO_EXTEND:
18420 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000018421 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000018422 case ISD::SRL:
18423 case ISD::SUB:
18424 case ISD::ADD:
18425 case ISD::MUL:
18426 case ISD::AND:
18427 case ISD::OR:
18428 case ISD::XOR:
18429 return false;
18430 }
18431}
18432
18433/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000018434/// beneficial for dag combiner to promote the specified node. If true, it
18435/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000018436bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000018437 EVT VT = Op.getValueType();
18438 if (VT != MVT::i16)
18439 return false;
18440
Evan Cheng4c26e932010-04-19 19:29:22 +000018441 bool Promote = false;
18442 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000018443 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000018444 default: break;
18445 case ISD::LOAD: {
18446 LoadSDNode *LD = cast<LoadSDNode>(Op);
18447 // If the non-extending load has a single use and it's not live out, then it
18448 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000018449 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
18450 Op.hasOneUse()*/) {
18451 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
18452 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
18453 // The only case where we'd want to promote LOAD (rather then it being
18454 // promoted as an operand is when it's only use is liveout.
18455 if (UI->getOpcode() != ISD::CopyToReg)
18456 return false;
18457 }
18458 }
Evan Cheng4c26e932010-04-19 19:29:22 +000018459 Promote = true;
18460 break;
18461 }
18462 case ISD::SIGN_EXTEND:
18463 case ISD::ZERO_EXTEND:
18464 case ISD::ANY_EXTEND:
18465 Promote = true;
18466 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018467 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000018468 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000018469 SDValue N0 = Op.getOperand(0);
18470 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000018471 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000018472 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000018473 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018474 break;
18475 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000018476 case ISD::ADD:
18477 case ISD::MUL:
18478 case ISD::AND:
18479 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000018480 case ISD::XOR:
18481 Commute = true;
18482 // fallthrough
18483 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000018484 SDValue N0 = Op.getOperand(0);
18485 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000018486 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000018487 return false;
18488 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000018489 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000018490 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000018491 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000018492 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000018493 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000018494 }
18495 }
18496
18497 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000018498 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000018499}
18500
Evan Cheng60c07e12006-07-05 22:17:51 +000018501//===----------------------------------------------------------------------===//
18502// X86 Inline Assembly Support
18503//===----------------------------------------------------------------------===//
18504
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018505namespace {
18506 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000018507 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018508 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018509
Benjamin Kramer0581ed72011-12-18 20:51:31 +000018510 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018511 StringRef piece(*args[i]);
18512 if (!s.startswith(piece)) // Check if the piece matches.
18513 return false;
18514
18515 s = s.substr(piece.size());
18516 StringRef::size_type pos = s.find_first_not_of(" \t");
18517 if (pos == 0) // We matched a prefix.
18518 return false;
18519
18520 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018521 }
18522
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018523 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018524 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000018525 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018526}
18527
Chris Lattnerb8105652009-07-20 17:51:36 +000018528bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
18529 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000018530
18531 std::string AsmStr = IA->getAsmString();
18532
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018533 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
18534 if (!Ty || Ty->getBitWidth() % 16 != 0)
18535 return false;
18536
Chris Lattnerb8105652009-07-20 17:51:36 +000018537 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000018538 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000018539 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000018540
18541 switch (AsmPieces.size()) {
18542 default: return false;
18543 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000018544 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018545 // we will turn this bswap into something that will be lowered to logical
18546 // ops instead of emitting the bswap asm. For now, we don't support 486 or
18547 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000018548 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018549 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
18550 matchAsm(AsmPieces[0], "bswapl", "$0") ||
18551 matchAsm(AsmPieces[0], "bswapq", "$0") ||
18552 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
18553 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
18554 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000018555 // No need to check constraints, nothing other than the equivalent of
18556 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000018557 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000018558 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018559
Chris Lattnerb8105652009-07-20 17:51:36 +000018560 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000018561 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018562 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018563 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
18564 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000018565 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000018566 const std::string &ConstraintsStr = IA->getConstraintString();
18567 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000018568 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Dan Gohman0ef701e2010-03-04 19:58:08 +000018569 if (AsmPieces.size() == 4 &&
18570 AsmPieces[0] == "~{cc}" &&
18571 AsmPieces[1] == "~{dirflag}" &&
18572 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018573 AsmPieces[3] == "~{fpsr}")
18574 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000018575 }
18576 break;
18577 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000018578 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018579 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018580 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
18581 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
18582 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018583 AsmPieces.clear();
18584 const std::string &ConstraintsStr = IA->getConstraintString();
18585 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000018586 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018587 if (AsmPieces.size() == 4 &&
18588 AsmPieces[0] == "~{cc}" &&
18589 AsmPieces[1] == "~{dirflag}" &&
18590 AsmPieces[2] == "~{flags}" &&
18591 AsmPieces[3] == "~{fpsr}")
18592 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000018593 }
Evan Cheng55d42002011-01-08 01:24:27 +000018594
18595 if (CI->getType()->isIntegerTy(64)) {
18596 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
18597 if (Constraints.size() >= 2 &&
18598 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
18599 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
18600 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000018601 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
18602 matchAsm(AsmPieces[1], "bswap", "%edx") &&
18603 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000018604 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000018605 }
18606 }
18607 break;
18608 }
18609 return false;
18610}
18611
Chris Lattnerf4dff842006-07-11 02:54:03 +000018612/// getConstraintType - Given a constraint letter, return the type of
18613/// constraint it is for this target.
18614X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000018615X86TargetLowering::getConstraintType(const std::string &Constraint) const {
18616 if (Constraint.size() == 1) {
18617 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000018618 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000018619 case 'q':
18620 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000018621 case 'f':
18622 case 't':
18623 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000018624 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000018625 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000018626 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000018627 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000018628 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000018629 case 'a':
18630 case 'b':
18631 case 'c':
18632 case 'd':
18633 case 'S':
18634 case 'D':
18635 case 'A':
18636 return C_Register;
18637 case 'I':
18638 case 'J':
18639 case 'K':
18640 case 'L':
18641 case 'M':
18642 case 'N':
18643 case 'G':
18644 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000018645 case 'e':
18646 case 'Z':
18647 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000018648 default:
18649 break;
18650 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000018651 }
Chris Lattner4234f572007-03-25 02:14:49 +000018652 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000018653}
18654
John Thompson44ab89e2010-10-29 17:29:13 +000018655/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000018656/// This object must already have been set up with the operand type
18657/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000018658TargetLowering::ConstraintWeight
18659 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000018660 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000018661 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000018662 Value *CallOperandVal = info.CallOperandVal;
18663 // If we don't have a value, we can't do a match,
18664 // but allow it at the lowest weight.
18665 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000018666 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000018667 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000018668 // Look at the constraint type.
18669 switch (*constraint) {
18670 default:
John Thompson44ab89e2010-10-29 17:29:13 +000018671 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
18672 case 'R':
18673 case 'q':
18674 case 'Q':
18675 case 'a':
18676 case 'b':
18677 case 'c':
18678 case 'd':
18679 case 'S':
18680 case 'D':
18681 case 'A':
18682 if (CallOperandVal->getType()->isIntegerTy())
18683 weight = CW_SpecificReg;
18684 break;
18685 case 'f':
18686 case 't':
18687 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000018688 if (type->isFloatingPointTy())
18689 weight = CW_SpecificReg;
18690 break;
John Thompson44ab89e2010-10-29 17:29:13 +000018691 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000018692 if (type->isX86_MMXTy() && Subtarget->hasMMX())
18693 weight = CW_SpecificReg;
18694 break;
John Thompson44ab89e2010-10-29 17:29:13 +000018695 case 'x':
18696 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000018697 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018698 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000018699 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000018700 break;
18701 case 'I':
18702 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
18703 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000018704 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000018705 }
18706 break;
John Thompson44ab89e2010-10-29 17:29:13 +000018707 case 'J':
18708 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18709 if (C->getZExtValue() <= 63)
18710 weight = CW_Constant;
18711 }
18712 break;
18713 case 'K':
18714 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18715 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
18716 weight = CW_Constant;
18717 }
18718 break;
18719 case 'L':
18720 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18721 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
18722 weight = CW_Constant;
18723 }
18724 break;
18725 case 'M':
18726 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18727 if (C->getZExtValue() <= 3)
18728 weight = CW_Constant;
18729 }
18730 break;
18731 case 'N':
18732 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18733 if (C->getZExtValue() <= 0xff)
18734 weight = CW_Constant;
18735 }
18736 break;
18737 case 'G':
18738 case 'C':
18739 if (dyn_cast<ConstantFP>(CallOperandVal)) {
18740 weight = CW_Constant;
18741 }
18742 break;
18743 case 'e':
18744 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18745 if ((C->getSExtValue() >= -0x80000000LL) &&
18746 (C->getSExtValue() <= 0x7fffffffLL))
18747 weight = CW_Constant;
18748 }
18749 break;
18750 case 'Z':
18751 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18752 if (C->getZExtValue() <= 0xffffffff)
18753 weight = CW_Constant;
18754 }
18755 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000018756 }
18757 return weight;
18758}
18759
Dale Johannesenba2a0b92008-01-29 02:21:21 +000018760/// LowerXConstraint - try to replace an X constraint, which matches anything,
18761/// with another that has more specific requirements based on the type of the
18762/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000018763const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000018764LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000018765 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
18766 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000018767 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000018768 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000018769 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000018770 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000018771 return "x";
18772 }
Scott Michelfdc40a02009-02-17 22:15:04 +000018773
Chris Lattner5e764232008-04-26 23:02:14 +000018774 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000018775}
18776
Chris Lattner48884cd2007-08-25 00:47:38 +000018777/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
18778/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000018779void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000018780 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000018781 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000018782 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000018783 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000018784
Eric Christopher100c8332011-06-02 23:16:42 +000018785 // Only support length 1 constraints for now.
18786 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000018787
Eric Christopher100c8332011-06-02 23:16:42 +000018788 char ConstraintLetter = Constraint[0];
18789 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000018790 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000018791 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000018792 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000018793 if (C->getZExtValue() <= 31) {
18794 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000018795 break;
18796 }
Devang Patel84f7fd22007-03-17 00:13:28 +000018797 }
Chris Lattner48884cd2007-08-25 00:47:38 +000018798 return;
Evan Cheng364091e2008-09-22 23:57:37 +000018799 case 'J':
18800 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000018801 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000018802 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18803 break;
18804 }
18805 }
18806 return;
18807 case 'K':
18808 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000018809 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000018810 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18811 break;
18812 }
18813 }
18814 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000018815 case 'N':
18816 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000018817 if (C->getZExtValue() <= 255) {
18818 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000018819 break;
18820 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000018821 }
Chris Lattner48884cd2007-08-25 00:47:38 +000018822 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000018823 case 'e': {
18824 // 32-bit signed value
18825 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000018826 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
18827 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000018828 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000018829 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000018830 break;
18831 }
18832 // FIXME gcc accepts some relocatable values here too, but only in certain
18833 // memory models; it's complicated.
18834 }
18835 return;
18836 }
18837 case 'Z': {
18838 // 32-bit unsigned value
18839 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000018840 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
18841 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000018842 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18843 break;
18844 }
18845 }
18846 // FIXME gcc accepts some relocatable values here too, but only in certain
18847 // memory models; it's complicated.
18848 return;
18849 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000018850 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000018851 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000018852 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000018853 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000018854 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000018855 break;
18856 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000018857
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000018858 // In any sort of PIC mode addresses need to be computed at runtime by
18859 // adding in a register or some sort of table lookup. These can't
18860 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000018861 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000018862 return;
18863
Chris Lattnerdc43a882007-05-03 16:52:29 +000018864 // If we are in non-pic codegen mode, we allow the address of a global (with
18865 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000018866 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000018867 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000018868
Chris Lattner49921962009-05-08 18:23:14 +000018869 // Match either (GA), (GA+C), (GA+C1+C2), etc.
18870 while (1) {
18871 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
18872 Offset += GA->getOffset();
18873 break;
18874 } else if (Op.getOpcode() == ISD::ADD) {
18875 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
18876 Offset += C->getZExtValue();
18877 Op = Op.getOperand(0);
18878 continue;
18879 }
18880 } else if (Op.getOpcode() == ISD::SUB) {
18881 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
18882 Offset += -C->getZExtValue();
18883 Op = Op.getOperand(0);
18884 continue;
18885 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000018886 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000018887
Chris Lattner49921962009-05-08 18:23:14 +000018888 // Otherwise, this isn't something we can handle, reject it.
18889 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000018890 }
Eric Christopherfd179292009-08-27 18:07:15 +000018891
Dan Gohman46510a72010-04-15 01:51:59 +000018892 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000018893 // If we require an extra load to get this address, as in PIC mode, we
18894 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000018895 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
18896 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000018897 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000018898
Andrew Trickac6d9be2013-05-25 02:42:55 +000018899 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000018900 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000018901 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000018902 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000018903 }
Scott Michelfdc40a02009-02-17 22:15:04 +000018904
Gabor Greifba36cb52008-08-28 21:40:38 +000018905 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000018906 Ops.push_back(Result);
18907 return;
18908 }
Dale Johannesen1784d162010-06-25 21:55:36 +000018909 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000018910}
18911
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000018912std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000018913X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000018914 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000018915 // First, see if this is a constraint that directly corresponds to an LLVM
18916 // register class.
18917 if (Constraint.size() == 1) {
18918 // GCC Constraint Letters
18919 switch (Constraint[0]) {
18920 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000018921 // TODO: Slight differences here in allocation order and leaving
18922 // RIP in the class. Do they matter any more here than they do
18923 // in the normal allocation?
18924 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
18925 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000018926 if (VT == MVT::i32 || VT == MVT::f32)
18927 return std::make_pair(0U, &X86::GR32RegClass);
18928 if (VT == MVT::i16)
18929 return std::make_pair(0U, &X86::GR16RegClass);
18930 if (VT == MVT::i8 || VT == MVT::i1)
18931 return std::make_pair(0U, &X86::GR8RegClass);
18932 if (VT == MVT::i64 || VT == MVT::f64)
18933 return std::make_pair(0U, &X86::GR64RegClass);
18934 break;
Eric Christopherd176af82011-06-29 17:23:50 +000018935 }
18936 // 32-bit fallthrough
18937 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000018938 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000018939 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
18940 if (VT == MVT::i16)
18941 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
18942 if (VT == MVT::i8 || VT == MVT::i1)
18943 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
18944 if (VT == MVT::i64)
18945 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000018946 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000018947 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000018948 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000018949 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000018950 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000018951 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000018952 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000018953 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000018954 return std::make_pair(0U, &X86::GR32RegClass);
18955 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000018956 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000018957 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000018958 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000018959 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000018960 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000018961 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000018962 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
18963 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000018964 case 'f': // FP Stack registers.
18965 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
18966 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000018967 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000018968 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000018969 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000018970 return std::make_pair(0U, &X86::RFP64RegClass);
18971 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000018972 case 'y': // MMX_REGS if MMX allowed.
18973 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000018974 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000018975 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000018976 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000018977 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000018978 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000018979 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000018980
Chad Rosier5b3fca52013-06-22 18:37:38 +000018981 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000018982 default: break;
18983 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000018984 case MVT::f32:
18985 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000018986 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000018987 case MVT::f64:
18988 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000018989 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000018990 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000018991 case MVT::v16i8:
18992 case MVT::v8i16:
18993 case MVT::v4i32:
18994 case MVT::v2i64:
18995 case MVT::v4f32:
18996 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000018997 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000018998 // AVX types.
18999 case MVT::v32i8:
19000 case MVT::v16i16:
19001 case MVT::v8i32:
19002 case MVT::v4i64:
19003 case MVT::v8f32:
19004 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019005 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019006 case MVT::v8f64:
19007 case MVT::v16f32:
19008 case MVT::v16i32:
19009 case MVT::v8i64:
19010 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019011 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019012 break;
19013 }
19014 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019015
Chris Lattnerf76d1802006-07-31 23:26:50 +000019016 // Use the default implementation in TargetLowering to convert the register
19017 // constraint into a member of a register class.
19018 std::pair<unsigned, const TargetRegisterClass*> Res;
19019 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019020
19021 // Not found as a standard register?
19022 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019023 // Map st(0) -> st(7) -> ST0
19024 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19025 tolower(Constraint[1]) == 's' &&
19026 tolower(Constraint[2]) == 't' &&
19027 Constraint[3] == '(' &&
19028 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19029 Constraint[5] == ')' &&
19030 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019031
Chris Lattner56d77c72009-09-13 22:41:48 +000019032 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019033 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019034 return Res;
19035 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019036
Chris Lattner56d77c72009-09-13 22:41:48 +000019037 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019038 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019039 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019040 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019041 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019042 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019043
19044 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019045 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019046 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019047 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019048 return Res;
19049 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019050
Dale Johannesen330169f2008-11-13 21:52:36 +000019051 // 'A' means EAX + EDX.
19052 if (Constraint == "A") {
19053 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019054 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019055 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019056 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019057 return Res;
19058 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019059
Chris Lattnerf76d1802006-07-31 23:26:50 +000019060 // Otherwise, check to see if this is a register class of the wrong value
19061 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19062 // turn into {ax},{dx}.
19063 if (Res.second->hasType(VT))
19064 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019065
Chris Lattnerf76d1802006-07-31 23:26:50 +000019066 // All of the single-register GCC register classes map their values onto
19067 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19068 // really want an 8-bit or 32-bit register, map to the appropriate register
19069 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019070 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019071 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019072 unsigned DestReg = 0;
19073 switch (Res.first) {
19074 default: break;
19075 case X86::AX: DestReg = X86::AL; break;
19076 case X86::DX: DestReg = X86::DL; break;
19077 case X86::CX: DestReg = X86::CL; break;
19078 case X86::BX: DestReg = X86::BL; break;
19079 }
19080 if (DestReg) {
19081 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019082 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019083 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019084 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019085 unsigned DestReg = 0;
19086 switch (Res.first) {
19087 default: break;
19088 case X86::AX: DestReg = X86::EAX; break;
19089 case X86::DX: DestReg = X86::EDX; break;
19090 case X86::CX: DestReg = X86::ECX; break;
19091 case X86::BX: DestReg = X86::EBX; break;
19092 case X86::SI: DestReg = X86::ESI; break;
19093 case X86::DI: DestReg = X86::EDI; break;
19094 case X86::BP: DestReg = X86::EBP; break;
19095 case X86::SP: DestReg = X86::ESP; break;
19096 }
19097 if (DestReg) {
19098 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019099 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019100 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019101 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019102 unsigned DestReg = 0;
19103 switch (Res.first) {
19104 default: break;
19105 case X86::AX: DestReg = X86::RAX; break;
19106 case X86::DX: DestReg = X86::RDX; break;
19107 case X86::CX: DestReg = X86::RCX; break;
19108 case X86::BX: DestReg = X86::RBX; break;
19109 case X86::SI: DestReg = X86::RSI; break;
19110 case X86::DI: DestReg = X86::RDI; break;
19111 case X86::BP: DestReg = X86::RBP; break;
19112 case X86::SP: DestReg = X86::RSP; break;
19113 }
19114 if (DestReg) {
19115 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019116 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019117 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019118 }
Craig Topperc9099502012-04-20 06:31:50 +000019119 } else if (Res.second == &X86::FR32RegClass ||
19120 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019121 Res.second == &X86::VR128RegClass ||
19122 Res.second == &X86::VR256RegClass ||
19123 Res.second == &X86::FR32XRegClass ||
19124 Res.second == &X86::FR64XRegClass ||
19125 Res.second == &X86::VR128XRegClass ||
19126 Res.second == &X86::VR256XRegClass ||
19127 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019128 // Handle references to XMM physical registers that got mapped into the
19129 // wrong class. This can happen with constraints like {xmm0} where the
19130 // target independent register mapper will just pick the first match it can
19131 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019132
19133 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019134 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019135 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019136 Res.second = &X86::FR64RegClass;
19137 else if (X86::VR128RegClass.hasType(VT))
19138 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019139 else if (X86::VR256RegClass.hasType(VT))
19140 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019141 else if (X86::VR512RegClass.hasType(VT))
19142 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019143 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019144
Chris Lattnerf76d1802006-07-31 23:26:50 +000019145 return Res;
19146}