blob: d222ba1032675fca750c1fde0987896b9466770e [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.
Owen Andersone50ed302009-08-10 22:56:29 +000058static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000059 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000060
David Greenea5f26012011-02-07 19:36:54 +000061/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
62/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000063/// simple subregister reference. Idx is an index in the 128 bits we
64/// want. It need not be aligned to a 128-bit bounday. That makes
65/// lowering EXTRACT_VECTOR_ELT operations easier.
Craig Topperb14940a2012-04-22 20:55:18 +000066static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
67 SelectionDAG &DAG, DebugLoc dl) {
David Greenea5f26012011-02-07 19:36:54 +000068 EVT VT = Vec.getValueType();
Craig Topper7a9a28b2012-08-12 02:23:29 +000069 assert(VT.is256BitVector() && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000070 EVT ElVT = VT.getVectorElementType();
Craig Topper66ddd152012-04-27 22:54:43 +000071 unsigned Factor = VT.getSizeInBits()/128;
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000072 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
73 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000074
75 // Extract from UNDEF is UNDEF.
76 if (Vec.getOpcode() == ISD::UNDEF)
Craig Topper767b4f62012-04-22 19:29:34 +000077 return DAG.getUNDEF(ResultVT);
David Greenea5f26012011-02-07 19:36:54 +000078
Craig Topperb14940a2012-04-22 20:55:18 +000079 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
80 // we can match to VEXTRACTF128.
81 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +000082
Craig Topperb14940a2012-04-22 20:55:18 +000083 // This is the index of the first element of the 128-bit chunk
84 // we want.
85 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
86 * ElemsPerChunk);
David Greenea5f26012011-02-07 19:36:54 +000087
Craig Topperb8d9da12012-09-06 06:09:01 +000088 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
Craig Topperb14940a2012-04-22 20:55:18 +000089 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
90 VecIdx);
David Greenea5f26012011-02-07 19:36:54 +000091
Craig Topperb14940a2012-04-22 20:55:18 +000092 return Result;
David Greenea5f26012011-02-07 19:36:54 +000093}
94
95/// Generate a DAG to put 128-bits into a vector > 128 bits. This
96/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +000097/// simple superregister reference. Idx is an index in the 128 bits
98/// we want. It need not be aligned to a 128-bit bounday. That makes
99/// lowering INSERT_VECTOR_ELT operations easier.
Craig Topperb14940a2012-04-22 20:55:18 +0000100static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
101 unsigned IdxVal, SelectionDAG &DAG,
David Greenea5f26012011-02-07 19:36:54 +0000102 DebugLoc dl) {
Craig Topper703c38b2012-06-20 05:39:26 +0000103 // Inserting UNDEF is Result
104 if (Vec.getOpcode() == ISD::UNDEF)
105 return Result;
106
Craig Topperb14940a2012-04-22 20:55:18 +0000107 EVT VT = Vec.getValueType();
Craig Topper7a9a28b2012-08-12 02:23:29 +0000108 assert(VT.is128BitVector() && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +0000109
Craig Topperb14940a2012-04-22 20:55:18 +0000110 EVT ElVT = VT.getVectorElementType();
111 EVT ResultVT = Result.getValueType();
David Greenea5f26012011-02-07 19:36:54 +0000112
Craig Topperb14940a2012-04-22 20:55:18 +0000113 // Insert the relevant 128 bits.
114 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000115
Craig Topperb14940a2012-04-22 20:55:18 +0000116 // This is the index of the first element of the 128-bit chunk
117 // we want.
118 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
119 * ElemsPerChunk);
David Greenea5f26012011-02-07 19:36:54 +0000120
Craig Topperb8d9da12012-09-06 06:09:01 +0000121 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
Craig Topper703c38b2012-06-20 05:39:26 +0000122 return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
123 VecIdx);
David Greenea5f26012011-02-07 19:36:54 +0000124}
125
Craig Topper4c7972d2012-04-22 18:15:59 +0000126/// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
127/// instructions. This is used because creating CONCAT_VECTOR nodes of
128/// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
129/// large BUILD_VECTORS.
130static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
131 unsigned NumElems, SelectionDAG &DAG,
132 DebugLoc dl) {
Craig Topperb14940a2012-04-22 20:55:18 +0000133 SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
134 return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
Craig Topper4c7972d2012-04-22 18:15:59 +0000135}
136
Chris Lattnerf0144122009-07-28 03:13:23 +0000137static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000138 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
139 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000140
Evan Cheng2bffee22011-02-01 01:14:13 +0000141 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000142 if (is64Bit)
Bill Wendlinga44489d2012-06-26 10:05:06 +0000143 return new X86_64MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000144 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000145 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000146
Rafael Espindolad6b43a32012-06-19 00:48:28 +0000147 if (Subtarget->isTargetLinux())
148 return new X86LinuxTargetObjectFile();
Evan Cheng203576a2011-07-20 19:50:42 +0000149 if (Subtarget->isTargetELF())
150 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000151 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000152 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000153 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000154}
155
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000156X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000157 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000158 Subtarget = &TM.getSubtarget<X86Subtarget>();
Craig Topper1accb7e2012-01-10 06:54:16 +0000159 X86ScalarSSEf64 = Subtarget->hasSSE2();
160 X86ScalarSSEf32 = Subtarget->hasSSE1();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000161
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000162 RegInfo = TM.getRegisterInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +0000163 TD = getDataLayout();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000164
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000165 // Set up the TargetLowering object.
Craig Topper9e401f22012-04-21 18:58:38 +0000166 static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000167
168 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000169 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000170 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
171 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000172
Eric Christopherde5e1012011-03-11 01:05:58 +0000173 // For 64-bit since we have so many registers use the ILP scheduler, for
174 // 32-bit code use the register pressure specific scheduling.
Preston Gurdc0f0a932012-05-02 22:02:02 +0000175 // For Atom, always use ILP scheduling.
Chad Rosiera20e1e72012-08-01 18:39:17 +0000176 if (Subtarget->isAtom())
Eric Christopherde5e1012011-03-11 01:05:58 +0000177 setSchedulingPreference(Sched::ILP);
Preston Gurdc0f0a932012-05-02 22:02:02 +0000178 else if (Subtarget->is64Bit())
179 setSchedulingPreference(Sched::ILP);
Eric Christopherde5e1012011-03-11 01:05:58 +0000180 else
181 setSchedulingPreference(Sched::RegPressure);
Michael Liaoc5c970e2012-10-31 04:14:09 +0000182 setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
Evan Cheng714554d2006-03-16 21:47:42 +0000183
Preston Gurd2e2efd92012-09-04 18:22:17 +0000184 // Bypass i32 with i8 on Atom when compiling with O2
185 if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default)
Preston Gurd8d662b52012-10-04 21:33:40 +0000186 addBypassSlowDiv(32, 8);
Preston Gurd2e2efd92012-09-04 18:22:17 +0000187
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000188 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000189 // Setup Windows compiler runtime calls.
190 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000191 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000192 setLibcallName(RTLIB::SREM_I64, "_allrem");
193 setLibcallName(RTLIB::UREM_I64, "_aullrem");
194 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000195 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000196 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000197 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
198 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
199 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000200
201 // The _ftol2 runtime function has an unusual calling conv, which
202 // is modeled by a special pseudo-instruction.
203 setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
204 setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
205 setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
206 setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000207 }
208
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000209 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000210 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000211 setUseUnderscoreSetJmp(false);
212 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000213 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000214 // MS runtime is weird: it exports _setjmp, but longjmp!
215 setUseUnderscoreSetJmp(true);
216 setUseUnderscoreLongJmp(false);
217 } else {
218 setUseUnderscoreSetJmp(true);
219 setUseUnderscoreLongJmp(true);
220 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000221
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000222 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000223 addRegisterClass(MVT::i8, &X86::GR8RegClass);
224 addRegisterClass(MVT::i16, &X86::GR16RegClass);
225 addRegisterClass(MVT::i32, &X86::GR32RegClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000226 if (Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +0000227 addRegisterClass(MVT::i64, &X86::GR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000228
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000230
Scott Michelfdc40a02009-02-17 22:15:04 +0000231 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000232 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000233 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000234 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000235 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000236 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
237 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000238
239 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000240 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
241 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
242 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
243 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
244 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
245 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000246
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000247 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
248 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000249 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
250 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
251 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000252
Evan Cheng25ab6902006-09-08 06:48:29 +0000253 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling397ae212012-01-05 02:13:20 +0000255 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000256 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000257 // We have an algorithm for SSE2->double, and we turn this into a
258 // 64-bit FILD followed by conditional FADD for other targets.
259 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000260 // We have an algorithm for SSE2, and we turn this into a 64-bit
261 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000262 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000263 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000264
265 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
266 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
268 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000269
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000270 if (!TM.Options.UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000271 // SSE has no i16 to fp conversion, only i32
272 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000274 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000275 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000276 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
278 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000279 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000280 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
282 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000283 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000284
Dale Johannesen73328d12007-09-19 23:55:34 +0000285 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
286 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000287 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
288 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000289
Evan Cheng02568ff2006-01-30 22:13:22 +0000290 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
291 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
293 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000294
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000295 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000297 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000299 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000300 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
301 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000302 }
303
304 // Handle FP_TO_UINT by promoting the destination to a larger signed
305 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000306 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
307 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
308 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000309
Evan Cheng25ab6902006-09-08 06:48:29 +0000310 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
312 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000313 } else if (!TM.Options.UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000314 // Since AVX is a superset of SSE3, only check for SSE here.
315 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 // Expand FP_TO_UINT into a select.
317 // FIXME: We would like to use a Custom expander here eventually to do
318 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000319 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000321 // With SSE3 we can use fisttpll to convert to a signed i64; without
322 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000325
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000326 if (isTargetFTOL()) {
327 // Use the _ftol2 runtime function, which has a pseudo-instruction
328 // to handle its weird calling convention.
329 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Custom);
330 }
331
Chris Lattner399610a2006-12-05 18:22:22 +0000332 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000333 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000334 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
335 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000336 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000337 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000338 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000339 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000340 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000341 }
Chris Lattner21f66852005-12-23 05:15:23 +0000342
Dan Gohmanb00ee212008-02-18 19:34:53 +0000343 // Scalar integer divide and remainder are lowered to use operations that
344 // produce two results, to match the available instructions. This exposes
345 // the two-result form to trivial CSE, which is able to combine x/y and x%y
346 // into a single instruction.
347 //
348 // Scalar integer multiply-high is also lowered to use two-result
349 // operations, to match the available instructions. However, plain multiply
350 // (low) operations are left as Legal, as there are single-result
351 // instructions for this in x86. Using the two-result multiply instructions
352 // when both high and low results are needed must be arranged by dagcombine.
Craig Topper9e401f22012-04-21 18:58:38 +0000353 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000354 MVT VT = IntVTs[i];
355 setOperationAction(ISD::MULHS, VT, Expand);
356 setOperationAction(ISD::MULHU, VT, Expand);
357 setOperationAction(ISD::SDIV, VT, Expand);
358 setOperationAction(ISD::UDIV, VT, Expand);
359 setOperationAction(ISD::SREM, VT, Expand);
360 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000361
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000362 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000363 setOperationAction(ISD::ADDC, VT, Custom);
364 setOperationAction(ISD::ADDE, VT, Custom);
365 setOperationAction(ISD::SUBC, VT, Custom);
366 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000367 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000368
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
370 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
371 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
372 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000373 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000374 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
375 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
376 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
377 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
378 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
379 setOperationAction(ISD::FREM , MVT::f32 , Expand);
380 setOperationAction(ISD::FREM , MVT::f64 , Expand);
381 setOperationAction(ISD::FREM , MVT::f80 , Expand);
382 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000383
Chandler Carruth77821022011-12-24 12:12:34 +0000384 // Promote the i8 variants and force them on up to i32 which has a shorter
385 // encoding.
386 setOperationAction(ISD::CTTZ , MVT::i8 , Promote);
387 AddPromotedToType (ISD::CTTZ , MVT::i8 , MVT::i32);
388 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i8 , Promote);
389 AddPromotedToType (ISD::CTTZ_ZERO_UNDEF , MVT::i8 , MVT::i32);
Craig Topper909652f2011-10-14 03:21:46 +0000390 if (Subtarget->hasBMI()) {
Chandler Carruthd873a4b2011-12-24 11:11:38 +0000391 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16 , Expand);
392 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32 , Expand);
393 if (Subtarget->is64Bit())
394 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper909652f2011-10-14 03:21:46 +0000395 } else {
Craig Topper909652f2011-10-14 03:21:46 +0000396 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
397 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
398 if (Subtarget->is64Bit())
399 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
400 }
Craig Topper37f21672011-10-11 06:44:02 +0000401
402 if (Subtarget->hasLZCNT()) {
Chandler Carruth77821022011-12-24 12:12:34 +0000403 // When promoting the i8 variants, force them to i32 for a shorter
404 // encoding.
Craig Topper37f21672011-10-11 06:44:02 +0000405 setOperationAction(ISD::CTLZ , MVT::i8 , Promote);
Chandler Carruth77821022011-12-24 12:12:34 +0000406 AddPromotedToType (ISD::CTLZ , MVT::i8 , MVT::i32);
407 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Promote);
408 AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8 , MVT::i32);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000409 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Expand);
410 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Expand);
411 if (Subtarget->is64Bit())
412 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper37f21672011-10-11 06:44:02 +0000413 } else {
414 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
415 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
416 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000417 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Custom);
418 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Custom);
419 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Custom);
420 if (Subtarget->is64Bit()) {
Craig Topper37f21672011-10-11 06:44:02 +0000421 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000422 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
423 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000424 }
425
Benjamin Kramer1292c222010-12-04 20:32:23 +0000426 if (Subtarget->hasPOPCNT()) {
427 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
428 } else {
429 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
430 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
431 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
432 if (Subtarget->is64Bit())
433 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
434 }
435
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
437 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000438
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000439 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000440 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000441 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000442 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000443 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
445 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
446 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
447 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
448 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000449 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
451 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
452 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
453 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000454 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000455 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000456 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000457 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000458 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Michael Liao6c0e04c2012-10-15 22:39:43 +0000459 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intened to support
460 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
Michael Liao281ae5a2012-10-17 02:22:27 +0000461 // support continuation, user-level threading, and etc.. As a result, no
Michael Liao6c0e04c2012-10-15 22:39:43 +0000462 // other SjLj exception interfaces are implemented and please don't build
463 // your own exception handling based on them.
464 // LLVM/Clang supports zero-cost DWARF exception handling.
465 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
466 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000467
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000468 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
470 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
471 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
472 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000473 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000474 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
475 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000476 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000477 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000478 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
479 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
480 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
481 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000482 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000483 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000484 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000485 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
486 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
487 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000488 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000489 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
490 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
491 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000492 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000493
Craig Topper1accb7e2012-01-10 06:54:16 +0000494 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000495 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000496
Eric Christopher9a9d2752010-07-22 02:48:34 +0000497 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000498 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000499
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000500 // On X86 and X86-64, atomic operations are lowered to locked instructions.
501 // Locked instructions, in turn, have implicit fence semantics (all memory
502 // operations are flushed before issuing the locked instruction, and they
503 // are not buffered), so we can fold away the common pattern of
504 // fence-atomic-fence.
505 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000506
Mon P Wang63307c32008-05-05 19:05:59 +0000507 // Expand certain atomics
Craig Topper9e401f22012-04-21 18:58:38 +0000508 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000509 MVT VT = IntVTs[i];
510 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
511 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000512 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000513 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000514
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000515 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000516 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000517 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
518 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
519 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
520 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
521 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
522 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
523 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Michael Liaoe5e8f762012-09-25 18:08:13 +0000524 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
525 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
526 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
527 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000528 }
529
Eli Friedman43f51ae2011-08-26 21:21:21 +0000530 if (Subtarget->hasCmpxchg16b()) {
531 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
532 }
533
Evan Cheng3c992d22006-03-07 02:02:57 +0000534 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000535 if (!Subtarget->isTargetDarwin() &&
536 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000537 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000539 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000540
Owen Anderson825b72b2009-08-11 20:47:22 +0000541 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
542 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
543 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
544 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000545 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000546 setExceptionPointerRegister(X86::RAX);
547 setExceptionSelectorRegister(X86::RDX);
548 } else {
549 setExceptionPointerRegister(X86::EAX);
550 setExceptionSelectorRegister(X86::EDX);
551 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000552 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
553 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000554
Duncan Sands4a544a72011-09-06 13:37:06 +0000555 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
556 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000557
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Shuxin Yang970755e2012-10-19 20:11:16 +0000559 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000560
Nate Begemanacc398c2006-01-25 18:21:52 +0000561 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setOperationAction(ISD::VASTART , MVT::Other, Custom);
563 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000564 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::VAARG , MVT::Other, Custom);
566 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000567 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000568 setOperationAction(ISD::VAARG , MVT::Other, Expand);
569 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000570 }
Evan Chengae642192007-03-02 23:16:35 +0000571
Owen Anderson825b72b2009-08-11 20:47:22 +0000572 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
573 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000574
575 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
576 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
577 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000578 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000579 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
580 MVT::i64 : MVT::i32, Custom);
581 else
582 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
583 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000584
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000585 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000586 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000587 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000588 addRegisterClass(MVT::f32, &X86::FR32RegClass);
589 addRegisterClass(MVT::f64, &X86::FR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000590
Evan Cheng223547a2006-01-31 22:28:30 +0000591 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000592 setOperationAction(ISD::FABS , MVT::f64, Custom);
593 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000594
595 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000596 setOperationAction(ISD::FNEG , MVT::f64, Custom);
597 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000598
Evan Cheng68c47cb2007-01-05 07:55:56 +0000599 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
601 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000602
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000603 // Lower this to FGETSIGNx86 plus an AND.
604 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
605 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
606
Evan Chengd25e9e82006-02-02 00:28:23 +0000607 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000608 setOperationAction(ISD::FSIN , MVT::f64, Expand);
609 setOperationAction(ISD::FCOS , MVT::f64, Expand);
610 setOperationAction(ISD::FSIN , MVT::f32, Expand);
611 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000612
Chris Lattnera54aa942006-01-29 06:26:08 +0000613 // Expand FP immediates into loads from the stack, except for the special
614 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000615 addLegalFPImmediate(APFloat(+0.0)); // xorpd
616 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000617 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000618 // Use SSE for f32, x87 for f64.
619 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000620 addRegisterClass(MVT::f32, &X86::FR32RegClass);
621 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000622
623 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000624 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000625
626 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000628
Owen Anderson825b72b2009-08-11 20:47:22 +0000629 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000630
631 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000632 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
633 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000634
635 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000636 setOperationAction(ISD::FSIN , MVT::f32, Expand);
637 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000638
Nate Begemane1795842008-02-14 08:57:00 +0000639 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000640 addLegalFPImmediate(APFloat(+0.0f)); // xorps
641 addLegalFPImmediate(APFloat(+0.0)); // FLD0
642 addLegalFPImmediate(APFloat(+1.0)); // FLD1
643 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
644 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
645
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000646 if (!TM.Options.UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000647 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
648 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000649 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000650 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000651 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000652 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000653 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
654 addRegisterClass(MVT::f32, &X86::RFP32RegClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000655
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
657 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
658 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
659 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000660
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000661 if (!TM.Options.UnsafeFPMath) {
Benjamin Kramer562b2402012-09-15 12:44:27 +0000662 setOperationAction(ISD::FSIN , MVT::f32 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
Benjamin Kramer562b2402012-09-15 12:44:27 +0000664 setOperationAction(ISD::FCOS , MVT::f32 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000666 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000667 addLegalFPImmediate(APFloat(+0.0)); // FLD0
668 addLegalFPImmediate(APFloat(+1.0)); // FLD1
669 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
670 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000671 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
672 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
673 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
674 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000675 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000676
Cameron Zwarich33390842011-07-08 21:39:21 +0000677 // We don't support FMA.
678 setOperationAction(ISD::FMA, MVT::f64, Expand);
679 setOperationAction(ISD::FMA, MVT::f32, Expand);
680
Dale Johannesen59a58732007-08-05 18:49:15 +0000681 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000682 if (!TM.Options.UseSoftFloat) {
Craig Topperc9099502012-04-20 06:31:50 +0000683 addRegisterClass(MVT::f80, &X86::RFP80RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
685 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000686 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000687 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000688 addLegalFPImmediate(TmpFlt); // FLD0
689 TmpFlt.changeSign();
690 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000691
692 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000693 APFloat TmpFlt2(+1.0);
694 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
695 &ignored);
696 addLegalFPImmediate(TmpFlt2); // FLD1
697 TmpFlt2.changeSign();
698 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
699 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000700
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000701 if (!TM.Options.UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000702 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
703 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000704 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000705
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000706 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
707 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
708 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
709 setOperationAction(ISD::FRINT, MVT::f80, Expand);
710 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000711 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000712 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000713
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000714 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000715 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
716 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
717 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::FLOG, MVT::f80, Expand);
720 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
721 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
722 setOperationAction(ISD::FEXP, MVT::f80, Expand);
723 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000724
Mon P Wangf007a8b2008-11-06 05:31:54 +0000725 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000726 // (for widening) or expand (for scalarization). Then we will selectively
727 // turn on ones that can be effectively codegen'd.
Craig Topper55de3392012-11-14 06:41:09 +0000728 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
729 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper49010472012-11-15 06:51:10 +0000730 MVT VT = (MVT::SimpleValueType)i;
Craig Topper55de3392012-11-14 06:41:09 +0000731 setOperationAction(ISD::ADD , VT, Expand);
732 setOperationAction(ISD::SUB , VT, Expand);
733 setOperationAction(ISD::FADD, VT, Expand);
734 setOperationAction(ISD::FNEG, VT, Expand);
735 setOperationAction(ISD::FSUB, VT, Expand);
736 setOperationAction(ISD::MUL , VT, Expand);
737 setOperationAction(ISD::FMUL, VT, Expand);
738 setOperationAction(ISD::SDIV, VT, Expand);
739 setOperationAction(ISD::UDIV, VT, Expand);
740 setOperationAction(ISD::FDIV, VT, Expand);
741 setOperationAction(ISD::SREM, VT, Expand);
742 setOperationAction(ISD::UREM, VT, Expand);
743 setOperationAction(ISD::LOAD, VT, Expand);
744 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
745 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
746 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
747 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
748 setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
749 setOperationAction(ISD::FABS, VT, Expand);
750 setOperationAction(ISD::FSIN, VT, Expand);
751 setOperationAction(ISD::FCOS, VT, Expand);
752 setOperationAction(ISD::FREM, VT, Expand);
753 setOperationAction(ISD::FMA, VT, Expand);
754 setOperationAction(ISD::FPOWI, VT, Expand);
755 setOperationAction(ISD::FSQRT, VT, Expand);
756 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
757 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000758 setOperationAction(ISD::FCEIL, VT, Expand);
759 setOperationAction(ISD::FTRUNC, VT, Expand);
760 setOperationAction(ISD::FRINT, VT, Expand);
761 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000762 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
763 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
764 setOperationAction(ISD::SDIVREM, VT, Expand);
765 setOperationAction(ISD::UDIVREM, VT, Expand);
766 setOperationAction(ISD::FPOW, VT, Expand);
767 setOperationAction(ISD::CTPOP, VT, Expand);
768 setOperationAction(ISD::CTTZ, VT, Expand);
769 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
770 setOperationAction(ISD::CTLZ, VT, Expand);
771 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
772 setOperationAction(ISD::SHL, VT, Expand);
773 setOperationAction(ISD::SRA, VT, Expand);
774 setOperationAction(ISD::SRL, VT, Expand);
775 setOperationAction(ISD::ROTL, VT, Expand);
776 setOperationAction(ISD::ROTR, VT, Expand);
777 setOperationAction(ISD::BSWAP, VT, Expand);
778 setOperationAction(ISD::SETCC, VT, Expand);
779 setOperationAction(ISD::FLOG, VT, Expand);
780 setOperationAction(ISD::FLOG2, VT, Expand);
781 setOperationAction(ISD::FLOG10, VT, Expand);
782 setOperationAction(ISD::FEXP, VT, Expand);
783 setOperationAction(ISD::FEXP2, VT, Expand);
784 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
785 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
786 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
787 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
788 setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
789 setOperationAction(ISD::TRUNCATE, VT, Expand);
790 setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
791 setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
792 setOperationAction(ISD::ANY_EXTEND, VT, Expand);
793 setOperationAction(ISD::VSELECT, VT, Expand);
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000794 for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
795 InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
Craig Topper55de3392012-11-14 06:41:09 +0000796 setTruncStoreAction(VT,
Dan Gohman2e141d72009-12-14 23:40:38 +0000797 (MVT::SimpleValueType)InnerVT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000798 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
799 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
800 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000801 }
802
Evan Chengc7ce29b2009-02-13 22:36:38 +0000803 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
804 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000805 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Craig Topperc9099502012-04-20 06:31:50 +0000806 addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000807 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000808 }
809
Dale Johannesen0488fb62010-09-30 23:57:10 +0000810 // MMX-sized vectors (other than x86mmx) are expected to be expanded
811 // into smaller operations.
812 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
813 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
814 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
815 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
816 setOperationAction(ISD::AND, MVT::v8i8, Expand);
817 setOperationAction(ISD::AND, MVT::v4i16, Expand);
818 setOperationAction(ISD::AND, MVT::v2i32, Expand);
819 setOperationAction(ISD::AND, MVT::v1i64, Expand);
820 setOperationAction(ISD::OR, MVT::v8i8, Expand);
821 setOperationAction(ISD::OR, MVT::v4i16, Expand);
822 setOperationAction(ISD::OR, MVT::v2i32, Expand);
823 setOperationAction(ISD::OR, MVT::v1i64, Expand);
824 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
825 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
826 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
827 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
828 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
829 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
830 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
831 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
832 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
833 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
834 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
835 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
836 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000837 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
838 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
839 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
840 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000841
Craig Topper1accb7e2012-01-10 06:54:16 +0000842 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
Craig Topperc9099502012-04-20 06:31:50 +0000843 addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000844
Owen Anderson825b72b2009-08-11 20:47:22 +0000845 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
846 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
847 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
848 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
849 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
850 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000851 setOperationAction(ISD::FABS, MVT::v4f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000852 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
853 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
854 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
855 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
856 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000857 }
858
Craig Topper1accb7e2012-01-10 06:54:16 +0000859 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
Craig Topperc9099502012-04-20 06:31:50 +0000860 addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000861
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000862 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
863 // registers cannot be used even for integer operations.
Craig Topperc9099502012-04-20 06:31:50 +0000864 addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
865 addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
866 addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
867 addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000868
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
870 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
871 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
872 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +0000873 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
875 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
876 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
877 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
878 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
879 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
880 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
881 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
882 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
883 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
884 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
885 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000886 setOperationAction(ISD::FABS, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000887
Nadav Rotem354efd82011-09-18 14:57:03 +0000888 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000889 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
890 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
891 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000892
Owen Anderson825b72b2009-08-11 20:47:22 +0000893 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
894 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
895 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
896 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
897 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000898
Evan Cheng2c3ae372006-04-12 21:21:57 +0000899 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000900 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000901 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000902 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000903 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000904 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000905 // Do not attempt to custom lower non-128-bit vectors
906 if (!VT.is128BitVector())
907 continue;
Craig Topper0d1f1762012-08-12 00:34:56 +0000908 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
909 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
910 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000911 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000912
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
914 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
915 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
916 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
917 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
918 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000919
Nate Begemancdd1eec2008-02-12 22:51:28 +0000920 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000921 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
922 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000923 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000924
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000925 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Craig Topper31a207a2012-05-04 06:39:13 +0000926 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000927 MVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000928
929 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000930 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000931 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000932
Craig Topper0d1f1762012-08-12 00:34:56 +0000933 setOperationAction(ISD::AND, VT, Promote);
934 AddPromotedToType (ISD::AND, VT, MVT::v2i64);
935 setOperationAction(ISD::OR, VT, Promote);
936 AddPromotedToType (ISD::OR, VT, MVT::v2i64);
937 setOperationAction(ISD::XOR, VT, Promote);
938 AddPromotedToType (ISD::XOR, VT, MVT::v2i64);
939 setOperationAction(ISD::LOAD, VT, Promote);
940 AddPromotedToType (ISD::LOAD, VT, MVT::v2i64);
941 setOperationAction(ISD::SELECT, VT, Promote);
942 AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000943 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000944
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000946
Evan Cheng2c3ae372006-04-12 21:21:57 +0000947 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000948 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
949 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
950 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
951 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000952
Owen Anderson825b72b2009-08-11 20:47:22 +0000953 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
954 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Michael Liaob8150d82012-09-10 18:33:51 +0000955
Michael Liaoa7554632012-10-23 17:36:08 +0000956 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom);
957 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Michael Liao991b6a22012-10-24 04:09:32 +0000958 // As there is no 64-bit GPR available, we need build a special custom
959 // sequence to convert from v2i32 to v2f32.
960 if (!Subtarget->is64Bit())
961 setOperationAction(ISD::UINT_TO_FP, MVT::v2f32, Custom);
Michael Liaoa7554632012-10-23 17:36:08 +0000962
Michael Liao9d796db2012-10-10 16:32:15 +0000963 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom);
Michael Liao44c2d612012-10-10 16:53:28 +0000964 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Custom);
Michael Liao9d796db2012-10-10 16:32:15 +0000965
Michael Liaob8150d82012-09-10 18:33:51 +0000966 setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000967 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000968
Craig Topperd0a31172012-01-10 06:37:29 +0000969 if (Subtarget->hasSSE41()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +0000970 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
971 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
972 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
973 setOperationAction(ISD::FRINT, MVT::f32, Legal);
974 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
975 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
976 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
977 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
978 setOperationAction(ISD::FRINT, MVT::f64, Legal);
979 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
980
Craig Topper12fb5c62012-09-08 17:42:27 +0000981 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +0000982 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
983 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
984 setOperationAction(ISD::FRINT, MVT::v4f32, Legal);
985 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +0000986 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +0000987 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
988 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
989 setOperationAction(ISD::FRINT, MVT::v2f64, Legal);
990 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +0000991
Nate Begeman14d12ca2008-02-11 04:19:36 +0000992 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000993 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000994
Nadav Rotemfbad25e2011-09-11 15:02:23 +0000995 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
996 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
997 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
998 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
999 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +00001000
Nate Begeman14d12ca2008-02-11 04:19:36 +00001001 // i8 and i16 vectors are custom , because the source register and source
1002 // source memory operand types are not the same width. f32 vectors are
1003 // custom since the immediate controlling the insert encodes additional
1004 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +00001005 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
1006 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
1007 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
1008 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001009
Owen Anderson825b72b2009-08-11 20:47:22 +00001010 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1011 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1012 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1013 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001014
Pete Coopera77214a2011-11-14 19:38:42 +00001015 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +00001016 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +00001017 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +00001018 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
1019 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001020 }
1021 }
Evan Cheng470a6ad2006-02-22 02:26:30 +00001022
Craig Topper1accb7e2012-01-10 06:54:16 +00001023 if (Subtarget->hasSSE2()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001024 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001025 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001026
Nadav Rotem43012222011-05-11 08:12:09 +00001027 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001028 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001029
Nadav Rotem43012222011-05-11 08:12:09 +00001030 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +00001031 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001032
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001033 if (Subtarget->hasInt256()) {
Craig Topper7be5dfd2011-11-12 09:58:49 +00001034 setOperationAction(ISD::SRL, MVT::v2i64, Legal);
1035 setOperationAction(ISD::SRL, MVT::v4i32, Legal);
1036
1037 setOperationAction(ISD::SHL, MVT::v2i64, Legal);
1038 setOperationAction(ISD::SHL, MVT::v4i32, Legal);
1039
1040 setOperationAction(ISD::SRA, MVT::v4i32, Legal);
1041 } else {
1042 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
1043 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
1044
1045 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
1046 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
1047
1048 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
1049 }
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001050 setOperationAction(ISD::SDIV, MVT::v8i16, Custom);
1051 setOperationAction(ISD::SDIV, MVT::v4i32, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001052 }
1053
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001054 if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
Craig Topperc9099502012-04-20 06:31:50 +00001055 addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
1056 addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1057 addRegisterClass(MVT::v8i32, &X86::VR256RegClass);
1058 addRegisterClass(MVT::v8f32, &X86::VR256RegClass);
1059 addRegisterClass(MVT::v4i64, &X86::VR256RegClass);
1060 addRegisterClass(MVT::v4f64, &X86::VR256RegClass);
David Greened94c1012009-06-29 22:50:51 +00001061
Owen Anderson825b72b2009-08-11 20:47:22 +00001062 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001063 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1064 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001065
Owen Anderson825b72b2009-08-11 20:47:22 +00001066 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1067 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1068 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1069 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1070 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001071 setOperationAction(ISD::FFLOOR, MVT::v8f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001072 setOperationAction(ISD::FCEIL, MVT::v8f32, Legal);
1073 setOperationAction(ISD::FTRUNC, MVT::v8f32, Legal);
1074 setOperationAction(ISD::FRINT, MVT::v8f32, Legal);
1075 setOperationAction(ISD::FNEARBYINT, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001076 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001077 setOperationAction(ISD::FABS, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001078
Owen Anderson825b72b2009-08-11 20:47:22 +00001079 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1080 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1081 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1082 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1083 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001084 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001085 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
1086 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
1087 setOperationAction(ISD::FRINT, MVT::v4f64, Legal);
1088 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001089 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001090 setOperationAction(ISD::FABS, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001091
Michael Liaobedcbd42012-10-16 18:14:11 +00001092 setOperationAction(ISD::TRUNCATE, MVT::v8i16, Custom);
Nadav Rotem3c22a442012-12-27 07:45:10 +00001093 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Michael Liaobedcbd42012-10-16 18:14:11 +00001094
1095 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1096
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001097 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
1098 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001099 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001100
Michael Liaoa7554632012-10-23 17:36:08 +00001101 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1102 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1103 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1104
Michael Liaob8150d82012-09-10 18:33:51 +00001105 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1106
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001107 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1108 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1109
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001110 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1111 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1112
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001113 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001114 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001115
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001116 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1117
Duncan Sands28b77e92011-09-06 19:07:46 +00001118 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1119 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1120 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1121 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001122
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001123 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1124 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1125 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1126
Craig Topperaaa643c2011-11-09 07:28:55 +00001127 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1128 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1129 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1130 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001131
Nadav Rotem0509db22012-12-28 05:45:24 +00001132 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1133 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
1134 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1135 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
1136 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1137 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001138
Craig Topperbf404372012-08-31 15:40:30 +00001139 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001140 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1141 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1142 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1143 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1144 setOperationAction(ISD::FMA, MVT::f32, Legal);
1145 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001146 }
Craig Topper880ef452012-08-11 22:34:26 +00001147
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001148 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001149 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1150 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1151 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1152 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001153
Craig Topperaaa643c2011-11-09 07:28:55 +00001154 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1155 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1156 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1157 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001158
Craig Topperaaa643c2011-11-09 07:28:55 +00001159 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1160 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1161 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001162 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001163
1164 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001165
1166 setOperationAction(ISD::SRL, MVT::v4i64, Legal);
1167 setOperationAction(ISD::SRL, MVT::v8i32, Legal);
1168
1169 setOperationAction(ISD::SHL, MVT::v4i64, Legal);
1170 setOperationAction(ISD::SHL, MVT::v8i32, Legal);
1171
1172 setOperationAction(ISD::SRA, MVT::v8i32, Legal);
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001173
1174 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001175 } else {
1176 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1177 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1178 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1179 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1180
1181 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1182 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1183 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1184 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1185
1186 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1187 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1188 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1189 // Don't lower v32i8 because there is no 128-bit byte mul
Craig Topper7be5dfd2011-11-12 09:58:49 +00001190
1191 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1192 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1193
1194 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1195 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1196
1197 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001198 }
Craig Topper13894fa2011-08-24 06:14:18 +00001199
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001200 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001201 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1202 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001203 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001204
1205 // Extract subvector is special because the value type
1206 // (result) is 128-bit but the source is 256-bit wide.
1207 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001208 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001209
1210 // Do not attempt to custom lower other non-256-bit vectors
1211 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001212 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001213
Craig Topper0d1f1762012-08-12 00:34:56 +00001214 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1215 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1216 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1217 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1218 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1219 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1220 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001221 }
1222
David Greene54d8eba2011-01-27 22:38:56 +00001223 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001224 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001225 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001226
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001227 // Do not attempt to promote non-256-bit vectors
1228 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001229 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001230
Craig Topper0d1f1762012-08-12 00:34:56 +00001231 setOperationAction(ISD::AND, VT, Promote);
1232 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1233 setOperationAction(ISD::OR, VT, Promote);
1234 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1235 setOperationAction(ISD::XOR, VT, Promote);
1236 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1237 setOperationAction(ISD::LOAD, VT, Promote);
1238 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1239 setOperationAction(ISD::SELECT, VT, Promote);
1240 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001241 }
David Greene9b9838d2009-06-29 16:47:10 +00001242 }
1243
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001244 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1245 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001246 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1247 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001248 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1249 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001250 }
1251
Evan Cheng6be2c582006-04-05 23:38:46 +00001252 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001253 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001254 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001255
Eli Friedman962f5492010-06-02 19:35:46 +00001256 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1257 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001258 //
Eli Friedman962f5492010-06-02 19:35:46 +00001259 // FIXME: We really should do custom legalization for addition and
1260 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1261 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001262 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1263 // Add/Sub/Mul with overflow operations are custom lowered.
1264 MVT VT = IntVTs[i];
1265 setOperationAction(ISD::SADDO, VT, Custom);
1266 setOperationAction(ISD::UADDO, VT, Custom);
1267 setOperationAction(ISD::SSUBO, VT, Custom);
1268 setOperationAction(ISD::USUBO, VT, Custom);
1269 setOperationAction(ISD::SMULO, VT, Custom);
1270 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001271 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001272
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001273 // There are no 8-bit 3-address imul/mul instructions
1274 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1275 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001276
Evan Chengd54f2d52009-03-31 19:38:51 +00001277 if (!Subtarget->is64Bit()) {
1278 // These libcalls are not available in 32-bit.
1279 setLibcallName(RTLIB::SHL_I128, 0);
1280 setLibcallName(RTLIB::SRL_I128, 0);
1281 setLibcallName(RTLIB::SRA_I128, 0);
1282 }
1283
Evan Cheng206ee9d2006-07-07 08:33:52 +00001284 // We have target-specific dag combine patterns for the following nodes:
1285 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001286 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001287 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001288 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001289 setTargetDAGCombine(ISD::SHL);
1290 setTargetDAGCombine(ISD::SRA);
1291 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001292 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001293 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001294 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001295 setTargetDAGCombine(ISD::FADD);
1296 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001297 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001298 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001299 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001300 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001301 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001302 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001303 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001304 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001305 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001306 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001307 if (Subtarget->is64Bit())
1308 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001309 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001310
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001311 computeRegisterProperties();
1312
Evan Cheng05219282011-01-06 06:52:41 +00001313 // On Darwin, -Os means optimize for size without hurting performance,
1314 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001315 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001316 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001317 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001318 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1319 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1320 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001321 setPrefLoopAlignment(4); // 2^4 bytes.
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001322 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001323
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001324 // Predictable cmov don't hurt on atom because it's in-order.
1325 predictableSelectIsExpensive = !Subtarget->isAtom();
1326
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001327 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001328}
1329
Duncan Sands28b77e92011-09-06 19:07:46 +00001330EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1331 if (!VT.isVector()) return MVT::i8;
1332 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001333}
1334
Evan Cheng29286502008-01-23 23:17:41 +00001335/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1336/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001337static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001338 if (MaxAlign == 16)
1339 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001340 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001341 if (VTy->getBitWidth() == 128)
1342 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001343 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001344 unsigned EltAlign = 0;
1345 getMaxByValAlign(ATy->getElementType(), EltAlign);
1346 if (EltAlign > MaxAlign)
1347 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001348 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001349 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1350 unsigned EltAlign = 0;
1351 getMaxByValAlign(STy->getElementType(i), EltAlign);
1352 if (EltAlign > MaxAlign)
1353 MaxAlign = EltAlign;
1354 if (MaxAlign == 16)
1355 break;
1356 }
1357 }
Evan Cheng29286502008-01-23 23:17:41 +00001358}
1359
1360/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1361/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001362/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1363/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001364unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001365 if (Subtarget->is64Bit()) {
1366 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001367 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001368 if (TyAlign > 8)
1369 return TyAlign;
1370 return 8;
1371 }
1372
Evan Cheng29286502008-01-23 23:17:41 +00001373 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001374 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001375 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001376 return Align;
1377}
Chris Lattner2b02a442007-02-25 08:29:00 +00001378
Evan Chengf0df0312008-05-15 08:39:06 +00001379/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001380/// and store operations as a result of memset, memcpy, and memmove
1381/// lowering. If DstAlign is zero that means it's safe to destination
1382/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1383/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001384/// probably because the source does not need to be loaded. If 'IsMemset' is
1385/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1386/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1387/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001388/// It returns EVT::Other if the type should be determined using generic
1389/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001390EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001391X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1392 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001393 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001394 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001395 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001396 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001397 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001398 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1399 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001400 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001401 (Subtarget->isUnalignedMemAccessFast() ||
1402 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001403 (SrcAlign == 0 || SrcAlign >= 16)))) {
1404 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001405 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001406 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001407 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001408 return MVT::v8f32;
1409 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001410 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001411 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001412 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001413 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001414 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001415 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001416 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001417 // Do not use f64 to lower memcpy if source is string constant. It's
1418 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001419 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001420 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001421 }
Evan Chengf0df0312008-05-15 08:39:06 +00001422 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001423 return MVT::i64;
1424 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001425}
1426
Evan Cheng7d342672012-12-12 01:32:07 +00001427bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001428 if (VT == MVT::f32)
1429 return X86ScalarSSEf32;
1430 else if (VT == MVT::f64)
1431 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001432 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001433}
1434
Evan Cheng376642e2012-12-10 23:21:26 +00001435bool
1436X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1437 if (Fast)
1438 *Fast = Subtarget->isUnalignedMemAccessFast();
1439 return true;
1440}
1441
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001442/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1443/// current function. The returned value is a member of the
1444/// MachineJumpTableInfo::JTEntryKind enum.
1445unsigned X86TargetLowering::getJumpTableEncoding() const {
1446 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1447 // symbol.
1448 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1449 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001450 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001451
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001452 // Otherwise, use the normal jump table encoding heuristics.
1453 return TargetLowering::getJumpTableEncoding();
1454}
1455
Chris Lattnerc64daab2010-01-26 05:02:42 +00001456const MCExpr *
1457X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1458 const MachineBasicBlock *MBB,
1459 unsigned uid,MCContext &Ctx) const{
1460 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1461 Subtarget->isPICStyleGOT());
1462 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1463 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001464 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1465 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001466}
1467
Evan Chengcc415862007-11-09 01:32:10 +00001468/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1469/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001470SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001471 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001472 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001473 // This doesn't have DebugLoc associated with it, but is not really the
1474 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001475 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001476 return Table;
1477}
1478
Chris Lattner589c6f62010-01-26 06:28:43 +00001479/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1480/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1481/// MCExpr.
1482const MCExpr *X86TargetLowering::
1483getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1484 MCContext &Ctx) const {
1485 // X86-64 uses RIP relative addressing based on the jump table label.
1486 if (Subtarget->isPICStyleRIPRel())
1487 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1488
1489 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001490 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001491}
1492
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001493// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001494std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001495X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001496 const TargetRegisterClass *RRC = 0;
1497 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001498 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001499 default:
1500 return TargetLowering::findRepresentativeClass(VT);
1501 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001502 RRC = Subtarget->is64Bit() ?
1503 (const TargetRegisterClass*)&X86::GR64RegClass :
1504 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001505 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001506 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001507 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001508 break;
1509 case MVT::f32: case MVT::f64:
1510 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1511 case MVT::v4f32: case MVT::v2f64:
1512 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1513 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001514 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001515 break;
1516 }
1517 return std::make_pair(RRC, Cost);
1518}
1519
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001520bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1521 unsigned &Offset) const {
1522 if (!Subtarget->isTargetLinux())
1523 return false;
1524
1525 if (Subtarget->is64Bit()) {
1526 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1527 Offset = 0x28;
1528 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1529 AddressSpace = 256;
1530 else
1531 AddressSpace = 257;
1532 } else {
1533 // %gs:0x14 on i386
1534 Offset = 0x14;
1535 AddressSpace = 256;
1536 }
1537 return true;
1538}
1539
Chris Lattner2b02a442007-02-25 08:29:00 +00001540//===----------------------------------------------------------------------===//
1541// Return Value Calling Convention Implementation
1542//===----------------------------------------------------------------------===//
1543
Chris Lattner59ed56b2007-02-28 04:55:35 +00001544#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001545
Michael J. Spencerec38de22010-10-10 22:04:20 +00001546bool
Eric Christopher471e4222011-06-08 23:55:35 +00001547X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001548 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001549 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001550 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001551 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001552 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001553 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001554 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001555}
1556
Dan Gohman98ca4f22009-08-05 01:29:28 +00001557SDValue
1558X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001559 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001560 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001561 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001562 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001563 MachineFunction &MF = DAG.getMachineFunction();
1564 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001565
Chris Lattner9774c912007-02-27 05:28:59 +00001566 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001567 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001568 RVLocs, *DAG.getContext());
1569 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Evan Chengdcea1632010-02-04 02:40:39 +00001571 // Add the regs to the liveout set for the function.
1572 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1573 for (unsigned i = 0; i != RVLocs.size(); ++i)
1574 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1575 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001576
Dan Gohman475871a2008-07-27 21:46:04 +00001577 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001578
Dan Gohman475871a2008-07-27 21:46:04 +00001579 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001580 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1581 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001582 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1583 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001584
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001585 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001586 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1587 CCValAssign &VA = RVLocs[i];
1588 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001589 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001590 EVT ValVT = ValToCopy.getValueType();
1591
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001592 // Promote values to the appropriate types
1593 if (VA.getLocInfo() == CCValAssign::SExt)
1594 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1595 else if (VA.getLocInfo() == CCValAssign::ZExt)
1596 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1597 else if (VA.getLocInfo() == CCValAssign::AExt)
1598 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1599 else if (VA.getLocInfo() == CCValAssign::BCvt)
1600 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1601
Dale Johannesenc4510512010-09-24 19:05:48 +00001602 // If this is x86-64, and we disabled SSE, we can't return FP values,
1603 // or SSE or MMX vectors.
1604 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1605 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001606 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001607 report_fatal_error("SSE register return with SSE disabled");
1608 }
1609 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1610 // llvm-gcc has never done it right and no one has noticed, so this
1611 // should be OK for now.
1612 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001613 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001614 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001615
Chris Lattner447ff682008-03-11 03:23:40 +00001616 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1617 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001618 if (VA.getLocReg() == X86::ST0 ||
1619 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001620 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1621 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001622 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001623 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001624 RetOps.push_back(ValToCopy);
1625 // Don't emit a copytoreg.
1626 continue;
1627 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001628
Evan Cheng242b38b2009-02-23 09:03:22 +00001629 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1630 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001631 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001632 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001633 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001634 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001635 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1636 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001637 // If we don't have SSE2 available, convert to v4f32 so the generated
1638 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001639 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001640 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001641 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001642 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001643 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001644
Dale Johannesendd64c412009-02-04 00:33:20 +00001645 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001646 Flag = Chain.getValue(1);
1647 }
Dan Gohman61a92132008-04-21 23:59:07 +00001648
1649 // The x86-64 ABI for returning structs by value requires that we copy
1650 // the sret argument into %rax for the return. We saved the argument into
1651 // a virtual register in the entry block, so now we copy the value out
1652 // and into %rax.
1653 if (Subtarget->is64Bit() &&
1654 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1655 MachineFunction &MF = DAG.getMachineFunction();
1656 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1657 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001658 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001659 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001660 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001661
Dale Johannesendd64c412009-02-04 00:33:20 +00001662 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001663 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001664
1665 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001666 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001667 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001668
Chris Lattner447ff682008-03-11 03:23:40 +00001669 RetOps[0] = Chain; // Update chain.
1670
1671 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001672 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001673 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001674
1675 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001676 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001677}
1678
Evan Chengbf010eb2012-04-10 01:51:00 +00001679bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001680 if (N->getNumValues() != 1)
1681 return false;
1682 if (!N->hasNUsesOfValue(1, 0))
1683 return false;
1684
Evan Chengbf010eb2012-04-10 01:51:00 +00001685 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001686 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001687 if (Copy->getOpcode() == ISD::CopyToReg) {
1688 // If the copy has a glue operand, we conservatively assume it isn't safe to
1689 // perform a tail call.
1690 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1691 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001692 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001693 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001694 return false;
1695
Evan Cheng1bf891a2010-12-01 22:59:46 +00001696 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001697 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001698 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001699 if (UI->getOpcode() != X86ISD::RET_FLAG)
1700 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001701 HasRet = true;
1702 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001703
Evan Chengbf010eb2012-04-10 01:51:00 +00001704 if (!HasRet)
1705 return false;
1706
1707 Chain = TCChain;
1708 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001709}
1710
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001711MVT
1712X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001713 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001714 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001715 // TODO: Is this also valid on 32-bit?
1716 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001717 ReturnMVT = MVT::i8;
1718 else
1719 ReturnMVT = MVT::i32;
1720
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001721 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001722 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001723}
1724
Dan Gohman98ca4f22009-08-05 01:29:28 +00001725/// LowerCallResult - Lower the result values of a call into the
1726/// appropriate copies out of appropriate physical registers.
1727///
1728SDValue
1729X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001730 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001731 const SmallVectorImpl<ISD::InputArg> &Ins,
1732 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001733 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001734
Chris Lattnere32bbf62007-02-28 07:09:55 +00001735 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001736 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001737 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001738 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001739 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001740 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001741
Chris Lattner3085e152007-02-25 08:59:22 +00001742 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001743 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001744 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001745 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001746
Torok Edwin3f142c32009-02-01 18:15:56 +00001747 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001748 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001749 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001750 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001751 }
1752
Evan Cheng79fb3b42009-02-20 20:43:02 +00001753 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001754
1755 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001756 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001757 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001758 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001759 // instead.
1760 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1761 // If we prefer to use the value in xmm registers, copy it out as f80 and
1762 // use a truncate to move it from fp stack reg to xmm reg.
1763 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001764 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001765 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1766 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001767 Val = Chain.getValue(0);
1768
1769 // Round the f80 to the right size, which also moves it to the appropriate
1770 // xmm register.
1771 if (CopyVT != VA.getValVT())
1772 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1773 // This truncation won't change the value.
1774 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001775 } else {
1776 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1777 CopyVT, InFlag).getValue(1);
1778 Val = Chain.getValue(0);
1779 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001780 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001781 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001782 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001783
Dan Gohman98ca4f22009-08-05 01:29:28 +00001784 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001785}
1786
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001787//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001788// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001789//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001790// StdCall calling convention seems to be standard for many Windows' API
1791// routines and around. It differs from C calling convention just a little:
1792// callee should clean up the stack, not caller. Symbols should be also
1793// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001794// For info on fast calling convention see Fast Calling Convention (tail call)
1795// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001796
Dan Gohman98ca4f22009-08-05 01:29:28 +00001797/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001798/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00001799enum StructReturnType {
1800 NotStructReturn,
1801 RegStructReturn,
1802 StackStructReturn
1803};
1804static StructReturnType
1805callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001806 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00001807 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001808
Rafael Espindola1cee7102012-07-25 13:41:10 +00001809 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
1810 if (!Flags.isSRet())
1811 return NotStructReturn;
1812 if (Flags.isInReg())
1813 return RegStructReturn;
1814 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00001815}
1816
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001817/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001818/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00001819static StructReturnType
1820argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001821 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00001822 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001823
Rafael Espindola1cee7102012-07-25 13:41:10 +00001824 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
1825 if (!Flags.isSRet())
1826 return NotStructReturn;
1827 if (Flags.isInReg())
1828 return RegStructReturn;
1829 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00001830}
1831
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001832/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1833/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001834/// the specific parameter attribute. The copy will be passed as a byval
1835/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001836static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001837CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001838 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1839 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001840 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001841
Dale Johannesendd64c412009-02-04 00:33:20 +00001842 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001843 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001844 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001845}
1846
Chris Lattner29689432010-03-11 00:22:57 +00001847/// IsTailCallConvention - Return true if the calling convention is one that
1848/// supports tail call optimization.
1849static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00001850 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
1851 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00001852}
1853
Evan Cheng485fafc2011-03-21 01:19:09 +00001854bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00001855 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00001856 return false;
1857
1858 CallSite CS(CI);
1859 CallingConv::ID CalleeCC = CS.getCallingConv();
1860 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1861 return false;
1862
1863 return true;
1864}
1865
Evan Cheng0c439eb2010-01-27 00:07:07 +00001866/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1867/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001868static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
1869 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00001870 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001871}
1872
Dan Gohman98ca4f22009-08-05 01:29:28 +00001873SDValue
1874X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001875 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001876 const SmallVectorImpl<ISD::InputArg> &Ins,
1877 DebugLoc dl, SelectionDAG &DAG,
1878 const CCValAssign &VA,
1879 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001880 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001881 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001882 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001883 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
1884 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001885 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001886 EVT ValVT;
1887
1888 // If value is passed by pointer we have address passed instead of the value
1889 // itself.
1890 if (VA.getLocInfo() == CCValAssign::Indirect)
1891 ValVT = VA.getLocVT();
1892 else
1893 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001894
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001895 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001896 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001897 // In case of tail call optimization mark all arguments mutable. Since they
1898 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001899 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001900 unsigned Bytes = Flags.getByValSize();
1901 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1902 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001903 return DAG.getFrameIndex(FI, getPointerTy());
1904 } else {
1905 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001906 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001907 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1908 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001909 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001910 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001911 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001912}
1913
Dan Gohman475871a2008-07-27 21:46:04 +00001914SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001915X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001916 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001917 bool isVarArg,
1918 const SmallVectorImpl<ISD::InputArg> &Ins,
1919 DebugLoc dl,
1920 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001921 SmallVectorImpl<SDValue> &InVals)
1922 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001923 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001924 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001925
Gordon Henriksen86737662008-01-05 16:56:59 +00001926 const Function* Fn = MF.getFunction();
1927 if (Fn->hasExternalLinkage() &&
1928 Subtarget->isTargetCygMing() &&
1929 Fn->getName() == "main")
1930 FuncInfo->setForceFramePointer(true);
1931
Evan Cheng1bc78042006-04-26 01:20:17 +00001932 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001933 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00001934 bool IsWindows = Subtarget->isTargetWindows();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001935 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001936
Chris Lattner29689432010-03-11 00:22:57 +00001937 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00001938 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001939
Chris Lattner638402b2007-02-28 07:00:42 +00001940 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001941 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001942 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001943 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001944
1945 // Allocate shadow area for Win64
1946 if (IsWin64) {
1947 CCInfo.AllocateStack(32, 8);
1948 }
1949
Duncan Sands45907662010-10-31 13:21:44 +00001950 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001951
Chris Lattnerf39f7712007-02-28 05:46:49 +00001952 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001953 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001954 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1955 CCValAssign &VA = ArgLocs[i];
1956 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1957 // places.
1958 assert(VA.getValNo() != LastVal &&
1959 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00001960 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001961 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001962
Chris Lattnerf39f7712007-02-28 05:46:49 +00001963 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001964 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00001965 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001966 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00001967 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001968 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00001969 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001970 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00001971 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001972 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00001973 RC = &X86::FR64RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00001974 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00001975 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00001976 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00001977 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001978 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00001979 RC = &X86::VR64RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001980 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001981 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001982
Devang Patel68e6bee2011-02-21 23:21:26 +00001983 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001984 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001985
Chris Lattnerf39f7712007-02-28 05:46:49 +00001986 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1987 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1988 // right size.
1989 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001990 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001991 DAG.getValueType(VA.getValVT()));
1992 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001993 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001994 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001995 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001996 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001997
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001998 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001999 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002000 if (RegVT.isVector())
2001 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2002 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002003 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002004 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002005 } else {
2006 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002007 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002008 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002009
2010 // If value is passed via pointer - do a load.
2011 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002012 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002013 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002014
Dan Gohman98ca4f22009-08-05 01:29:28 +00002015 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002016 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002017
Dan Gohman61a92132008-04-21 23:59:07 +00002018 // The x86-64 ABI for returning structs by value requires that we copy
2019 // the sret argument into %rax for the return. Save the argument into
2020 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002021 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00002022 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2023 unsigned Reg = FuncInfo->getSRetReturnReg();
2024 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002025 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00002026 FuncInfo->setSRetReturnReg(Reg);
2027 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002028 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002029 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002030 }
2031
Chris Lattnerf39f7712007-02-28 05:46:49 +00002032 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002033 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002034 if (FuncIsMadeTailCallSafe(CallConv,
2035 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002036 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002037
Evan Cheng1bc78042006-04-26 01:20:17 +00002038 // If the function takes variable number of arguments, make a frame index for
2039 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002040 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002041 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2042 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002043 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002044 }
2045 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002046 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2047
2048 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002049 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002050 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002051 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002052 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002053 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2054 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002055 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002056 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2057 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2058 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002059 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002060 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002061
2062 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002063 // The XMM registers which might contain var arg parameters are shadowed
2064 // in their paired GPR. So we only need to save the GPR to their home
2065 // slots.
2066 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002067 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002068 } else {
2069 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2070 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002071
Chad Rosier30450e82011-12-22 22:35:21 +00002072 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2073 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002074 }
2075 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2076 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002077
Bill Wendling831737d2012-12-30 10:32:01 +00002078 bool NoImplicitFloatOps = Fn->getAttributes().
2079 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002080 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002081 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002082 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2083 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002084 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002085 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002086 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002087 // Kernel mode asks for SSE to be disabled, so don't push them
2088 // on the stack.
2089 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002090
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002091 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002092 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002093 // Get to the caller-allocated home save location. Add 8 to account
2094 // for the return address.
2095 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002096 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002097 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002098 // Fixup to set vararg frame on shadow area (4 x i64).
2099 if (NumIntRegs < 4)
2100 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002101 } else {
2102 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002103 // registers, then we must store them to their spots on the stack so
2104 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002105 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2106 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2107 FuncInfo->setRegSaveFrameIndex(
2108 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002109 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002110 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002111
Gordon Henriksen86737662008-01-05 16:56:59 +00002112 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002113 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002114 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2115 getPointerTy());
2116 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002117 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002118 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2119 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002120 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002121 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002122 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002123 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002124 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002125 MachinePointerInfo::getFixedStack(
2126 FuncInfo->getRegSaveFrameIndex(), Offset),
2127 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002128 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002129 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002130 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002131
Dan Gohmanface41a2009-08-16 21:24:25 +00002132 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2133 // Now store the XMM (fp + vector) parameter registers.
2134 SmallVector<SDValue, 11> SaveXMMOps;
2135 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002136
Craig Topperc9099502012-04-20 06:31:50 +00002137 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002138 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2139 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002140
Dan Gohman1e93df62010-04-17 14:41:14 +00002141 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2142 FuncInfo->getRegSaveFrameIndex()));
2143 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2144 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002145
Dan Gohmanface41a2009-08-16 21:24:25 +00002146 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002147 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002148 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002149 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2150 SaveXMMOps.push_back(Val);
2151 }
2152 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2153 MVT::Other,
2154 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002155 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002156
2157 if (!MemOps.empty())
2158 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2159 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002160 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002161 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002162
Gordon Henriksen86737662008-01-05 16:56:59 +00002163 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002164 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2165 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002166 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002167 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002168 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002169 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002170 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002171 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002172 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002173 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002174
Gordon Henriksen86737662008-01-05 16:56:59 +00002175 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002176 // RegSaveFrameIndex is X86-64 only.
2177 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002178 if (CallConv == CallingConv::X86_FastCall ||
2179 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002180 // fastcc functions can't have varargs.
2181 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002182 }
Evan Cheng25caf632006-05-23 21:06:34 +00002183
Rafael Espindola76927d752011-08-30 19:39:58 +00002184 FuncInfo->setArgumentStackSize(StackSize);
2185
Dan Gohman98ca4f22009-08-05 01:29:28 +00002186 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002187}
2188
Dan Gohman475871a2008-07-27 21:46:04 +00002189SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002190X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2191 SDValue StackPtr, SDValue Arg,
2192 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002193 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002194 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002195 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002196 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002197 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002198 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002199 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002200
2201 return DAG.getStore(Chain, dl, Arg, PtrOff,
2202 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002203 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002204}
2205
Bill Wendling64e87322009-01-16 19:25:27 +00002206/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002207/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002208SDValue
2209X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002210 SDValue &OutRetAddr, SDValue Chain,
2211 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00002212 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002213 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002214 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002215 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002216
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002217 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002218 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002219 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002220 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002221}
2222
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002223/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002224/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002225static SDValue
2226EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002227 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2228 unsigned SlotSize, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002229 // Store the return address to the appropriate stack slot.
2230 if (!FPDiff) return Chain;
2231 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002232 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00002233 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002234 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002235 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002236 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002237 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002238 return Chain;
2239}
2240
Dan Gohman98ca4f22009-08-05 01:29:28 +00002241SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002242X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002243 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002244 SelectionDAG &DAG = CLI.DAG;
2245 DebugLoc &dl = CLI.DL;
2246 SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
2247 SmallVector<SDValue, 32> &OutVals = CLI.OutVals;
2248 SmallVector<ISD::InputArg, 32> &Ins = CLI.Ins;
2249 SDValue Chain = CLI.Chain;
2250 SDValue Callee = CLI.Callee;
2251 CallingConv::ID CallConv = CLI.CallConv;
2252 bool &isTailCall = CLI.IsTailCall;
2253 bool isVarArg = CLI.IsVarArg;
2254
Dan Gohman98ca4f22009-08-05 01:29:28 +00002255 MachineFunction &MF = DAG.getMachineFunction();
2256 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002257 bool IsWin64 = Subtarget->isTargetWin64();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002258 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002259 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002260 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002261
Nick Lewycky22de16d2012-01-19 00:34:10 +00002262 if (MF.getTarget().Options.DisableTailCalls)
2263 isTailCall = false;
2264
Evan Cheng5f941932010-02-05 02:21:12 +00002265 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002266 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002267 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002268 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002269 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002270 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002271
2272 // Sibcalls are automatically detected tailcalls which do not require
2273 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002274 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002275 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002276
2277 if (isTailCall)
2278 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002279 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002280
Chris Lattner29689432010-03-11 00:22:57 +00002281 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002282 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002283
Chris Lattner638402b2007-02-28 07:00:42 +00002284 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002285 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002286 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002287 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002288
2289 // Allocate shadow area for Win64
2290 if (IsWin64) {
2291 CCInfo.AllocateStack(32, 8);
2292 }
2293
Duncan Sands45907662010-10-31 13:21:44 +00002294 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002295
Chris Lattner423c5f42007-02-28 05:31:48 +00002296 // Get a count of how many bytes are to be pushed on the stack.
2297 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002298 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002299 // This is a sibcall. The memory operands are available in caller's
2300 // own caller's stack.
2301 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002302 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2303 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002304 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002305
Gordon Henriksen86737662008-01-05 16:56:59 +00002306 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002307 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002308 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002309 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2310 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2311
Gordon Henriksen86737662008-01-05 16:56:59 +00002312 FPDiff = NumBytesCallerPushed - NumBytes;
2313
2314 // Set the delta of movement of the returnaddr stackslot.
2315 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002316 if (FPDiff < X86Info->getTCReturnAddrDelta())
2317 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002318 }
2319
Evan Chengf22f9b32010-02-06 03:28:46 +00002320 if (!IsSibcall)
2321 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002322
Dan Gohman475871a2008-07-27 21:46:04 +00002323 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002324 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002325 if (isTailCall && FPDiff)
2326 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2327 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002328
Dan Gohman475871a2008-07-27 21:46:04 +00002329 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2330 SmallVector<SDValue, 8> MemOpChains;
2331 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002332
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002333 // Walk the register/memloc assignments, inserting copies/loads. In the case
2334 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002335 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2336 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002337 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002338 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002339 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002340 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002341
Chris Lattner423c5f42007-02-28 05:31:48 +00002342 // Promote the value if needed.
2343 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002344 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002345 case CCValAssign::Full: break;
2346 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002347 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002348 break;
2349 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002350 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002351 break;
2352 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002353 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002354 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002355 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002356 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2357 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002358 } else
2359 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2360 break;
2361 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002362 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002363 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002364 case CCValAssign::Indirect: {
2365 // Store the argument.
2366 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002367 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002368 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002369 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002370 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002371 Arg = SpillSlot;
2372 break;
2373 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002374 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002375
Chris Lattner423c5f42007-02-28 05:31:48 +00002376 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002377 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2378 if (isVarArg && IsWin64) {
2379 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2380 // shadow reg if callee is a varargs function.
2381 unsigned ShadowReg = 0;
2382 switch (VA.getLocReg()) {
2383 case X86::XMM0: ShadowReg = X86::RCX; break;
2384 case X86::XMM1: ShadowReg = X86::RDX; break;
2385 case X86::XMM2: ShadowReg = X86::R8; break;
2386 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002387 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002388 if (ShadowReg)
2389 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002390 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002391 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002392 assert(VA.isMemLoc());
2393 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002394 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2395 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002396 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2397 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002398 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002399 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002400
Evan Cheng32fe1032006-05-25 00:59:30 +00002401 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002402 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002403 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002404
Chris Lattner88e1fd52009-07-09 04:24:46 +00002405 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002406 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2407 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002408 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002409 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2410 DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002411 } else {
2412 // If we are tail calling and generating PIC/GOT style code load the
2413 // address of the callee into ECX. The value in ecx is used as target of
2414 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2415 // for tail calls on PIC/GOT architectures. Normally we would just put the
2416 // address of GOT into ebx and then call target@PLT. But for tail calls
2417 // ebx would be restored (since ebx is callee saved) before jumping to the
2418 // target@PLT.
2419
2420 // Note: The actual moving to ECX is done further down.
2421 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2422 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2423 !G->getGlobal()->hasProtectedVisibility())
2424 Callee = LowerGlobalAddress(Callee, DAG);
2425 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002426 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002427 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002428 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002429
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002430 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002431 // From AMD64 ABI document:
2432 // For calls that may call functions that use varargs or stdargs
2433 // (prototype-less calls or calls to functions containing ellipsis (...) in
2434 // the declaration) %al is used as hidden argument to specify the number
2435 // of SSE registers used. The contents of %al do not need to match exactly
2436 // the number of registers, but must be an ubound on the number of SSE
2437 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002438
Gordon Henriksen86737662008-01-05 16:56:59 +00002439 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002440 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002441 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2442 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2443 };
2444 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002445 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002446 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002447
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002448 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2449 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002450 }
2451
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002452 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002453 if (isTailCall) {
2454 // Force all the incoming stack arguments to be loaded from the stack
2455 // before any new outgoing arguments are stored to the stack, because the
2456 // outgoing stack slots may alias the incoming argument stack slots, and
2457 // the alias isn't otherwise explicit. This is slightly more conservative
2458 // than necessary, because it means that each store effectively depends
2459 // on every argument instead of just those arguments it would clobber.
2460 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2461
Dan Gohman475871a2008-07-27 21:46:04 +00002462 SmallVector<SDValue, 8> MemOpChains2;
2463 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002464 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002465 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002466 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2467 CCValAssign &VA = ArgLocs[i];
2468 if (VA.isRegLoc())
2469 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002470 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002471 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002472 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002473 // Create frame index.
2474 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002475 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002476 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002477 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002478
Duncan Sands276dcbd2008-03-21 09:14:45 +00002479 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002480 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002481 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002482 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002483 StackPtr = DAG.getCopyFromReg(Chain, dl,
2484 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002485 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002486 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002487
Dan Gohman98ca4f22009-08-05 01:29:28 +00002488 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2489 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002490 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002491 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002492 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002493 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002494 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002495 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002496 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002497 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002498 }
2499 }
2500
2501 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002502 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002503 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002504
2505 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002506 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2507 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002508 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002509 }
2510
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002511 // Build a sequence of copy-to-reg nodes chained together with token chain
2512 // and flag operands which copy the outgoing args into registers.
2513 SDValue InFlag;
2514 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2515 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2516 RegsToPass[i].second, InFlag);
2517 InFlag = Chain.getValue(1);
2518 }
2519
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002520 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2521 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2522 // In the 64-bit large code model, we have to make all calls
2523 // through a register, since the call instruction's 32-bit
2524 // pc-relative offset may not be large enough to hold the whole
2525 // address.
2526 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002527 // If the callee is a GlobalAddress node (quite common, every direct call
2528 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2529 // it.
2530
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002531 // We should use extra load for direct calls to dllimported functions in
2532 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002533 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002534 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002535 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002536 bool ExtraLoad = false;
2537 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002538
Chris Lattner48a7d022009-07-09 05:02:21 +00002539 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2540 // external symbols most go through the PLT in PIC mode. If the symbol
2541 // has hidden or protected visibility, or if it is static or local, then
2542 // we don't need to use the PLT - we can directly call it.
2543 if (Subtarget->isTargetELF() &&
2544 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002545 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002546 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002547 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002548 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002549 (!Subtarget->getTargetTriple().isMacOSX() ||
2550 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002551 // PC-relative references to external symbols should go through $stub,
2552 // unless we're building with the leopard linker or later, which
2553 // automatically synthesizes these stubs.
2554 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002555 } else if (Subtarget->isPICStyleRIPRel() &&
2556 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002557 cast<Function>(GV)->getAttributes().
2558 hasAttribute(AttributeSet::FunctionIndex,
2559 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002560 // If the function is marked as non-lazy, generate an indirect call
2561 // which loads from the GOT directly. This avoids runtime overhead
2562 // at the cost of eager binding (and one extra byte of encoding).
2563 OpFlags = X86II::MO_GOTPCREL;
2564 WrapperKind = X86ISD::WrapperRIP;
2565 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002566 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002567
Devang Patel0d881da2010-07-06 22:08:15 +00002568 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002569 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002570
2571 // Add a wrapper if needed.
2572 if (WrapperKind != ISD::DELETED_NODE)
2573 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2574 // Add extra indirection if needed.
2575 if (ExtraLoad)
2576 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2577 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002578 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002579 }
Bill Wendling056292f2008-09-16 21:48:12 +00002580 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002581 unsigned char OpFlags = 0;
2582
Evan Cheng1bf891a2010-12-01 22:59:46 +00002583 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2584 // external symbols should go through the PLT.
2585 if (Subtarget->isTargetELF() &&
2586 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2587 OpFlags = X86II::MO_PLT;
2588 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002589 (!Subtarget->getTargetTriple().isMacOSX() ||
2590 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002591 // PC-relative references to external symbols should go through $stub,
2592 // unless we're building with the leopard linker or later, which
2593 // automatically synthesizes these stubs.
2594 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002595 }
Eric Christopherfd179292009-08-27 18:07:15 +00002596
Chris Lattner48a7d022009-07-09 05:02:21 +00002597 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2598 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002599 }
2600
Chris Lattnerd96d0722007-02-25 06:40:16 +00002601 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002602 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002603 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002604
Evan Chengf22f9b32010-02-06 03:28:46 +00002605 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002606 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2607 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002608 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002610
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002611 Ops.push_back(Chain);
2612 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002613
Dan Gohman98ca4f22009-08-05 01:29:28 +00002614 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002615 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002616
Gordon Henriksen86737662008-01-05 16:56:59 +00002617 // Add argument registers to the end of the list so that they are known live
2618 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002619 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2620 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2621 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002622
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002623 // Add a register mask operand representing the call-preserved registers.
2624 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2625 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2626 assert(Mask && "Missing call preserved mask for calling convention");
2627 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002628
Gabor Greifba36cb52008-08-28 21:40:38 +00002629 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002630 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002631
Dan Gohman98ca4f22009-08-05 01:29:28 +00002632 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002633 // We used to do:
2634 //// If this is the first return lowered for this function, add the regs
2635 //// to the liveout set for the function.
2636 // This isn't right, although it's probably harmless on x86; liveouts
2637 // should be computed from returns not tail calls. Consider a void
2638 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002639 return DAG.getNode(X86ISD::TC_RETURN, dl,
2640 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002641 }
2642
Dale Johannesenace16102009-02-03 19:33:06 +00002643 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002644 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002645
Chris Lattner2d297092006-05-23 18:50:38 +00002646 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002647 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002648 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2649 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002650 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002651 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002652 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002653 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002654 // pops the hidden struct pointer, so we have to push it back.
2655 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002656 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002657 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002658 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002659 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002660
Gordon Henriksenae636f82008-01-03 16:47:34 +00002661 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002662 if (!IsSibcall) {
2663 Chain = DAG.getCALLSEQ_END(Chain,
2664 DAG.getIntPtrConstant(NumBytes, true),
2665 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2666 true),
2667 InFlag);
2668 InFlag = Chain.getValue(1);
2669 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002670
Chris Lattner3085e152007-02-25 08:59:22 +00002671 // Handle result values, copying them out of physregs into vregs that we
2672 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002673 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2674 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002675}
2676
Evan Cheng25ab6902006-09-08 06:48:29 +00002677//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002678// Fast Calling Convention (tail call) implementation
2679//===----------------------------------------------------------------------===//
2680
2681// Like std call, callee cleans arguments, convention except that ECX is
2682// reserved for storing the tail called function address. Only 2 registers are
2683// free for argument passing (inreg). Tail call optimization is performed
2684// provided:
2685// * tailcallopt is enabled
2686// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002687// On X86_64 architecture with GOT-style position independent code only local
2688// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002689// To keep the stack aligned according to platform abi the function
2690// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2691// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002692// If a tail called function callee has more arguments than the caller the
2693// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002694// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002695// original REtADDR, but before the saved framepointer or the spilled registers
2696// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2697// stack layout:
2698// arg1
2699// arg2
2700// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002701// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002702// move area ]
2703// (possible EBP)
2704// ESI
2705// EDI
2706// local1 ..
2707
2708/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2709/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002710unsigned
2711X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2712 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002713 MachineFunction &MF = DAG.getMachineFunction();
2714 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002715 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002716 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002717 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002718 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002719 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002720 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2721 // Number smaller than 12 so just add the difference.
2722 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2723 } else {
2724 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002725 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002726 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002727 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002728 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002729}
2730
Evan Cheng5f941932010-02-05 02:21:12 +00002731/// MatchingStackOffset - Return true if the given stack call argument is
2732/// already available in the same position (relatively) of the caller's
2733/// incoming argument stack.
2734static
2735bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2736 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2737 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002738 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2739 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002740 if (Arg.getOpcode() == ISD::CopyFromReg) {
2741 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002742 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002743 return false;
2744 MachineInstr *Def = MRI->getVRegDef(VR);
2745 if (!Def)
2746 return false;
2747 if (!Flags.isByVal()) {
2748 if (!TII->isLoadFromStackSlot(Def, FI))
2749 return false;
2750 } else {
2751 unsigned Opcode = Def->getOpcode();
2752 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2753 Def->getOperand(1).isFI()) {
2754 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002755 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002756 } else
2757 return false;
2758 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002759 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2760 if (Flags.isByVal())
2761 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002762 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002763 // define @foo(%struct.X* %A) {
2764 // tail call @bar(%struct.X* byval %A)
2765 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002766 return false;
2767 SDValue Ptr = Ld->getBasePtr();
2768 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2769 if (!FINode)
2770 return false;
2771 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002772 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002773 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002774 FI = FINode->getIndex();
2775 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002776 } else
2777 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002778
Evan Cheng4cae1332010-03-05 08:38:04 +00002779 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002780 if (!MFI->isFixedObjectIndex(FI))
2781 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002782 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002783}
2784
Dan Gohman98ca4f22009-08-05 01:29:28 +00002785/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2786/// for tail call optimization. Targets which want to do tail call
2787/// optimization should implement this function.
2788bool
2789X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002790 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002791 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002792 bool isCalleeStructRet,
2793 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00002794 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00002795 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002796 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002797 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002798 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002799 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002800 CalleeCC != CallingConv::C)
2801 return false;
2802
Evan Cheng7096ae42010-01-29 06:45:59 +00002803 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002804 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002805 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00002806
2807 // If the function return type is x86_fp80 and the callee return type is not,
2808 // then the FP_EXTEND of the call result is not a nop. It's not safe to
2809 // perform a tailcall optimization here.
2810 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
2811 return false;
2812
Evan Cheng13617962010-04-30 01:12:32 +00002813 CallingConv::ID CallerCC = CallerF->getCallingConv();
2814 bool CCMatch = CallerCC == CalleeCC;
2815
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002816 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002817 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002818 return true;
2819 return false;
2820 }
2821
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002822 // Look for obvious safe cases to perform tail call optimization that do not
2823 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002824
Evan Cheng2c12cb42010-03-26 16:26:03 +00002825 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2826 // emit a special epilogue.
2827 if (RegInfo->needsStackRealignment(MF))
2828 return false;
2829
Evan Chenga375d472010-03-15 18:54:48 +00002830 // Also avoid sibcall optimization if either caller or callee uses struct
2831 // return semantics.
2832 if (isCalleeStructRet || isCallerStructRet)
2833 return false;
2834
Chad Rosier2416da32011-06-24 21:15:36 +00002835 // An stdcall caller is expected to clean up its arguments; the callee
2836 // isn't going to do that.
2837 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2838 return false;
2839
Chad Rosier871f6642011-05-18 19:59:50 +00002840 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002841 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002842 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002843
2844 // Optimizing for varargs on Win64 is unlikely to be safe without
2845 // additional testing.
2846 if (Subtarget->isTargetWin64())
2847 return false;
2848
Chad Rosier871f6642011-05-18 19:59:50 +00002849 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002850 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00002851 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002852
Chad Rosier871f6642011-05-18 19:59:50 +00002853 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2854 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2855 if (!ArgLocs[i].isRegLoc())
2856 return false;
2857 }
2858
Chad Rosier30450e82011-12-22 22:35:21 +00002859 // If the call result is in ST0 / ST1, it needs to be popped off the x87
2860 // stack. Therefore, if it's not used by the call it is not safe to optimize
2861 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002862 bool Unused = false;
2863 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2864 if (!Ins[i].Used) {
2865 Unused = true;
2866 break;
2867 }
2868 }
2869 if (Unused) {
2870 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002871 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00002872 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002873 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002874 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002875 CCValAssign &VA = RVLocs[i];
2876 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2877 return false;
2878 }
2879 }
2880
Evan Cheng13617962010-04-30 01:12:32 +00002881 // If the calling conventions do not match, then we'd better make sure the
2882 // results are returned in the same way as what the caller expects.
2883 if (!CCMatch) {
2884 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002885 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00002886 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002887 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2888
2889 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002890 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00002891 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002892 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2893
2894 if (RVLocs1.size() != RVLocs2.size())
2895 return false;
2896 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2897 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2898 return false;
2899 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2900 return false;
2901 if (RVLocs1[i].isRegLoc()) {
2902 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2903 return false;
2904 } else {
2905 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2906 return false;
2907 }
2908 }
2909 }
2910
Evan Chenga6bff982010-01-30 01:22:00 +00002911 // If the callee takes no arguments then go on to check the results of the
2912 // call.
2913 if (!Outs.empty()) {
2914 // Check if stack adjustment is needed. For now, do not do this if any
2915 // argument is passed on the stack.
2916 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002917 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00002918 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002919
2920 // Allocate shadow area for Win64
2921 if (Subtarget->isTargetWin64()) {
2922 CCInfo.AllocateStack(32, 8);
2923 }
2924
Duncan Sands45907662010-10-31 13:21:44 +00002925 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002926 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002927 MachineFunction &MF = DAG.getMachineFunction();
2928 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2929 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002930
2931 // Check if the arguments are already laid out in the right way as
2932 // the caller's fixed stack objects.
2933 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002934 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2935 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00002936 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002937 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2938 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002939 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002940 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002941 if (VA.getLocInfo() == CCValAssign::Indirect)
2942 return false;
2943 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002944 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2945 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002946 return false;
2947 }
2948 }
2949 }
Evan Cheng9c044672010-05-29 01:35:22 +00002950
2951 // If the tailcall address may be in a register, then make sure it's
2952 // possible to register allocate for it. In 32-bit, the call address can
2953 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002954 // callee-saved registers are restored. These happen to be the same
2955 // registers used to pass 'inreg' arguments so watch out for those.
2956 if (!Subtarget->is64Bit() &&
2957 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002958 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002959 unsigned NumInRegs = 0;
2960 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2961 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002962 if (!VA.isRegLoc())
2963 continue;
2964 unsigned Reg = VA.getLocReg();
2965 switch (Reg) {
2966 default: break;
2967 case X86::EAX: case X86::EDX: case X86::ECX:
2968 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002969 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002970 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002971 }
2972 }
2973 }
Evan Chenga6bff982010-01-30 01:22:00 +00002974 }
Evan Chengb1712452010-01-27 06:25:16 +00002975
Evan Cheng86809cc2010-02-03 03:28:02 +00002976 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002977}
2978
Dan Gohman3df24e62008-09-03 23:12:08 +00002979FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00002980X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
2981 const TargetLibraryInfo *libInfo) const {
2982 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002983}
2984
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002985//===----------------------------------------------------------------------===//
2986// Other Lowering Hooks
2987//===----------------------------------------------------------------------===//
2988
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002989static bool MayFoldLoad(SDValue Op) {
2990 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2991}
2992
2993static bool MayFoldIntoStore(SDValue Op) {
2994 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2995}
2996
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002997static bool isTargetShuffle(unsigned Opcode) {
2998 switch(Opcode) {
2999 default: return false;
3000 case X86ISD::PSHUFD:
3001 case X86ISD::PSHUFHW:
3002 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003003 case X86ISD::SHUFP:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00003004 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003005 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003006 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003007 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003008 case X86ISD::MOVLPS:
3009 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003010 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003011 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003012 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003013 case X86ISD::MOVSS:
3014 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003015 case X86ISD::UNPCKL:
3016 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003017 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003018 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003019 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003020 return true;
3021 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003022}
3023
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003024static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003025 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003026 switch(Opc) {
3027 default: llvm_unreachable("Unknown x86 shuffle node");
3028 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003029 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003030 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003031 return DAG.getNode(Opc, dl, VT, V1);
3032 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003033}
3034
3035static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003036 SDValue V1, unsigned TargetMask,
3037 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003038 switch(Opc) {
3039 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003040 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003041 case X86ISD::PSHUFHW:
3042 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003043 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003044 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003045 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3046 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003047}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003048
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003049static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003050 SDValue V1, SDValue V2, unsigned TargetMask,
3051 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003052 switch(Opc) {
3053 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00003054 case X86ISD::PALIGN:
Craig Topperb3982da2011-12-31 23:50:21 +00003055 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003056 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003057 return DAG.getNode(Opc, dl, VT, V1, V2,
3058 DAG.getConstant(TargetMask, MVT::i8));
3059 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003060}
3061
3062static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
3063 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3064 switch(Opc) {
3065 default: llvm_unreachable("Unknown x86 shuffle node");
3066 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003067 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003068 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003069 case X86ISD::MOVLPS:
3070 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003071 case X86ISD::MOVSS:
3072 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003073 case X86ISD::UNPCKL:
3074 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003075 return DAG.getNode(Opc, dl, VT, V1, V2);
3076 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003077}
3078
Dan Gohmand858e902010-04-17 15:26:15 +00003079SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003080 MachineFunction &MF = DAG.getMachineFunction();
3081 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3082 int ReturnAddrIndex = FuncInfo->getRAIndex();
3083
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003084 if (ReturnAddrIndex == 0) {
3085 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003086 unsigned SlotSize = RegInfo->getSlotSize();
David Greene3f2bf852009-11-12 20:49:22 +00003087 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003088 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003089 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003090 }
3091
Evan Cheng25ab6902006-09-08 06:48:29 +00003092 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003093}
3094
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003095bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3096 bool hasSymbolicDisplacement) {
3097 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003098 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003099 return false;
3100
3101 // If we don't have a symbolic displacement - we don't have any extra
3102 // restrictions.
3103 if (!hasSymbolicDisplacement)
3104 return true;
3105
3106 // FIXME: Some tweaks might be needed for medium code model.
3107 if (M != CodeModel::Small && M != CodeModel::Kernel)
3108 return false;
3109
3110 // For small code model we assume that latest object is 16MB before end of 31
3111 // bits boundary. We may also accept pretty large negative constants knowing
3112 // that all objects are in the positive half of address space.
3113 if (M == CodeModel::Small && Offset < 16*1024*1024)
3114 return true;
3115
3116 // For kernel code model we know that all object resist in the negative half
3117 // of 32bits address space. We may not accept negative offsets, since they may
3118 // be just off and we may accept pretty large positive ones.
3119 if (M == CodeModel::Kernel && Offset > 0)
3120 return true;
3121
3122 return false;
3123}
3124
Evan Chengef41ff62011-06-23 17:54:54 +00003125/// isCalleePop - Determines whether the callee is required to pop its
3126/// own arguments. Callee pop is necessary to support tail calls.
3127bool X86::isCalleePop(CallingConv::ID CallingConv,
3128 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3129 if (IsVarArg)
3130 return false;
3131
3132 switch (CallingConv) {
3133 default:
3134 return false;
3135 case CallingConv::X86_StdCall:
3136 return !is64Bit;
3137 case CallingConv::X86_FastCall:
3138 return !is64Bit;
3139 case CallingConv::X86_ThisCall:
3140 return !is64Bit;
3141 case CallingConv::Fast:
3142 return TailCallOpt;
3143 case CallingConv::GHC:
3144 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003145 case CallingConv::HiPE:
3146 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003147 }
3148}
3149
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003150/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3151/// specific condition code, returning the condition code and the LHS/RHS of the
3152/// comparison to make.
3153static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3154 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003155 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003156 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3157 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3158 // X > -1 -> X == 0, jump !sign.
3159 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003160 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003161 }
3162 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003163 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003164 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003165 }
3166 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003167 // X < 1 -> X <= 0
3168 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003169 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003170 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003171 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003172
Evan Chengd9558e02006-01-06 00:43:03 +00003173 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003174 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003175 case ISD::SETEQ: return X86::COND_E;
3176 case ISD::SETGT: return X86::COND_G;
3177 case ISD::SETGE: return X86::COND_GE;
3178 case ISD::SETLT: return X86::COND_L;
3179 case ISD::SETLE: return X86::COND_LE;
3180 case ISD::SETNE: return X86::COND_NE;
3181 case ISD::SETULT: return X86::COND_B;
3182 case ISD::SETUGT: return X86::COND_A;
3183 case ISD::SETULE: return X86::COND_BE;
3184 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003185 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003187
Chris Lattner4c78e022008-12-23 23:42:27 +00003188 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003189
Chris Lattner4c78e022008-12-23 23:42:27 +00003190 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003191 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3192 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003193 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3194 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003195 }
3196
Chris Lattner4c78e022008-12-23 23:42:27 +00003197 switch (SetCCOpcode) {
3198 default: break;
3199 case ISD::SETOLT:
3200 case ISD::SETOLE:
3201 case ISD::SETUGT:
3202 case ISD::SETUGE:
3203 std::swap(LHS, RHS);
3204 break;
3205 }
3206
3207 // On a floating point condition, the flags are set as follows:
3208 // ZF PF CF op
3209 // 0 | 0 | 0 | X > Y
3210 // 0 | 0 | 1 | X < Y
3211 // 1 | 0 | 0 | X == Y
3212 // 1 | 1 | 1 | unordered
3213 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003214 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003215 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003216 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003217 case ISD::SETOLT: // flipped
3218 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003219 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003220 case ISD::SETOLE: // flipped
3221 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003222 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003223 case ISD::SETUGT: // flipped
3224 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003225 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003226 case ISD::SETUGE: // flipped
3227 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003228 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003229 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003230 case ISD::SETNE: return X86::COND_NE;
3231 case ISD::SETUO: return X86::COND_P;
3232 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003233 case ISD::SETOEQ:
3234 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003235 }
Evan Chengd9558e02006-01-06 00:43:03 +00003236}
3237
Evan Cheng4a460802006-01-11 00:33:36 +00003238/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3239/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003240/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003241static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003242 switch (X86CC) {
3243 default:
3244 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003245 case X86::COND_B:
3246 case X86::COND_BE:
3247 case X86::COND_E:
3248 case X86::COND_P:
3249 case X86::COND_A:
3250 case X86::COND_AE:
3251 case X86::COND_NE:
3252 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003253 return true;
3254 }
3255}
3256
Evan Chengeb2f9692009-10-27 19:56:55 +00003257/// isFPImmLegal - Returns true if the target can instruction select the
3258/// specified FP immediate natively. If false, the legalizer will
3259/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003260bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003261 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3262 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3263 return true;
3264 }
3265 return false;
3266}
3267
Nate Begeman9008ca62009-04-27 18:41:29 +00003268/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3269/// the specified range (L, H].
3270static bool isUndefOrInRange(int Val, int Low, int Hi) {
3271 return (Val < 0) || (Val >= Low && Val < Hi);
3272}
3273
3274/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3275/// specified value.
3276static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003277 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003278}
3279
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003280/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003281/// from position Pos and ending in Pos+Size, falls within the specified
3282/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003283static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003284 unsigned Pos, unsigned Size, int Low) {
3285 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003286 if (!isUndefOrEqual(Mask[i], Low))
3287 return false;
3288 return true;
3289}
3290
Nate Begeman9008ca62009-04-27 18:41:29 +00003291/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3292/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3293/// the second operand.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003294static bool isPSHUFDMask(ArrayRef<int> Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003295 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003296 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003297 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003298 return (Mask[0] < 2 && Mask[1] < 2);
3299 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003300}
3301
Nate Begeman9008ca62009-04-27 18:41:29 +00003302/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3303/// is suitable for input to PSHUFHW.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003304static bool isPSHUFHWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3305 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003306 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003307
Nate Begeman9008ca62009-04-27 18:41:29 +00003308 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003309 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3310 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003311
Evan Cheng506d3df2006-03-29 23:07:14 +00003312 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003313 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003314 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003315 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003316
Craig Toppera9a568a2012-05-02 08:03:44 +00003317 if (VT == MVT::v16i16) {
3318 // Lower quadword copied in order or undef.
3319 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3320 return false;
3321
3322 // Upper quadword shuffled.
3323 for (unsigned i = 12; i != 16; ++i)
3324 if (!isUndefOrInRange(Mask[i], 12, 16))
3325 return false;
3326 }
3327
Evan Cheng506d3df2006-03-29 23:07:14 +00003328 return true;
3329}
3330
Nate Begeman9008ca62009-04-27 18:41:29 +00003331/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3332/// is suitable for input to PSHUFLW.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003333static bool isPSHUFLWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3334 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003335 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003336
Rafael Espindola15684b22009-04-24 12:40:33 +00003337 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003338 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3339 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003340
Rafael Espindola15684b22009-04-24 12:40:33 +00003341 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003342 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003343 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003344 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003345
Craig Toppera9a568a2012-05-02 08:03:44 +00003346 if (VT == MVT::v16i16) {
3347 // Upper quadword copied in order.
3348 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3349 return false;
3350
3351 // Lower quadword shuffled.
3352 for (unsigned i = 8; i != 12; ++i)
3353 if (!isUndefOrInRange(Mask[i], 8, 12))
3354 return false;
3355 }
3356
Rafael Espindola15684b22009-04-24 12:40:33 +00003357 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003358}
3359
Nate Begemana09008b2009-10-19 02:17:23 +00003360/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3361/// is suitable for input to PALIGNR.
Craig Topper0e2037b2012-01-20 05:53:00 +00003362static bool isPALIGNRMask(ArrayRef<int> Mask, EVT VT,
3363 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003364 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3365 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003366 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003367
Craig Topper0e2037b2012-01-20 05:53:00 +00003368 unsigned NumElts = VT.getVectorNumElements();
3369 unsigned NumLanes = VT.getSizeInBits()/128;
3370 unsigned NumLaneElts = NumElts/NumLanes;
3371
3372 // Do not handle 64-bit element shuffles with palignr.
3373 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003374 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003375
Craig Topper0e2037b2012-01-20 05:53:00 +00003376 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3377 unsigned i;
3378 for (i = 0; i != NumLaneElts; ++i) {
3379 if (Mask[i+l] >= 0)
3380 break;
3381 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003382
Craig Topper0e2037b2012-01-20 05:53:00 +00003383 // Lane is all undef, go to next lane
3384 if (i == NumLaneElts)
3385 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003386
Craig Topper0e2037b2012-01-20 05:53:00 +00003387 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003388
Craig Topper0e2037b2012-01-20 05:53:00 +00003389 // Make sure its in this lane in one of the sources
3390 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3391 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003392 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003393
3394 // If not lane 0, then we must match lane 0
3395 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3396 return false;
3397
3398 // Correct second source to be contiguous with first source
3399 if (Start >= (int)NumElts)
3400 Start -= NumElts - NumLaneElts;
3401
3402 // Make sure we're shifting in the right direction.
3403 if (Start <= (int)(i+l))
3404 return false;
3405
3406 Start -= i;
3407
3408 // Check the rest of the elements to see if they are consecutive.
3409 for (++i; i != NumLaneElts; ++i) {
3410 int Idx = Mask[i+l];
3411
3412 // Make sure its in this lane
3413 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3414 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3415 return false;
3416
3417 // If not lane 0, then we must match lane 0
3418 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3419 return false;
3420
3421 if (Idx >= (int)NumElts)
3422 Idx -= NumElts - NumLaneElts;
3423
3424 if (!isUndefOrEqual(Idx, Start+i))
3425 return false;
3426
3427 }
Nate Begemana09008b2009-10-19 02:17:23 +00003428 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003429
Nate Begemana09008b2009-10-19 02:17:23 +00003430 return true;
3431}
3432
Craig Topper1a7700a2012-01-19 08:19:12 +00003433/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3434/// the two vector operands have swapped position.
3435static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3436 unsigned NumElems) {
3437 for (unsigned i = 0; i != NumElems; ++i) {
3438 int idx = Mask[i];
3439 if (idx < 0)
3440 continue;
3441 else if (idx < (int)NumElems)
3442 Mask[i] = idx + NumElems;
3443 else
3444 Mask[i] = idx - NumElems;
3445 }
3446}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003447
Craig Topper1a7700a2012-01-19 08:19:12 +00003448/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3449/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3450/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3451/// reverse of what x86 shuffles want.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003452static bool isSHUFPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256,
Craig Topper1a7700a2012-01-19 08:19:12 +00003453 bool Commuted = false) {
Craig Topper5a529e42013-01-18 06:44:29 +00003454 if (!HasFp256 && VT.is256BitVector())
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003455 return false;
3456
Craig Topper1a7700a2012-01-19 08:19:12 +00003457 unsigned NumElems = VT.getVectorNumElements();
3458 unsigned NumLanes = VT.getSizeInBits()/128;
3459 unsigned NumLaneElems = NumElems/NumLanes;
3460
3461 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003462 return false;
3463
3464 // VSHUFPSY divides the resulting vector into 4 chunks.
3465 // The sources are also splitted into 4 chunks, and each destination
3466 // chunk must come from a different source chunk.
3467 //
3468 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3469 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3470 //
3471 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3472 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3473 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003474 // VSHUFPDY divides the resulting vector into 4 chunks.
3475 // The sources are also splitted into 4 chunks, and each destination
3476 // chunk must come from a different source chunk.
3477 //
3478 // SRC1 => X3 X2 X1 X0
3479 // SRC2 => Y3 Y2 Y1 Y0
3480 //
3481 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3482 //
Craig Topper1a7700a2012-01-19 08:19:12 +00003483 unsigned HalfLaneElems = NumLaneElems/2;
3484 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3485 for (unsigned i = 0; i != NumLaneElems; ++i) {
3486 int Idx = Mask[i+l];
3487 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3488 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3489 return false;
3490 // For VSHUFPSY, the mask of the second half must be the same as the
3491 // first but with the appropriate offsets. This works in the same way as
3492 // VPERMILPS works with masks.
3493 if (NumElems != 8 || l == 0 || Mask[i] < 0)
3494 continue;
3495 if (!isUndefOrEqual(Idx, Mask[i]+l))
3496 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003497 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003498 }
3499
3500 return true;
3501}
3502
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003503/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3504/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Topperdd637ae2012-02-19 05:41:45 +00003505static bool isMOVHLPSMask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003506 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003507 return false;
3508
Craig Topper7a9a28b2012-08-12 02:23:29 +00003509 unsigned NumElems = VT.getVectorNumElements();
3510
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003511 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003512 return false;
3513
Evan Cheng2064a2b2006-03-28 06:50:32 +00003514 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003515 return isUndefOrEqual(Mask[0], 6) &&
3516 isUndefOrEqual(Mask[1], 7) &&
3517 isUndefOrEqual(Mask[2], 2) &&
3518 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003519}
3520
Nate Begeman0b10b912009-11-07 23:17:15 +00003521/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3522/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3523/// <2, 3, 2, 3>
Craig Topperdd637ae2012-02-19 05:41:45 +00003524static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003525 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003526 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003527
Craig Topper7a9a28b2012-08-12 02:23:29 +00003528 unsigned NumElems = VT.getVectorNumElements();
3529
Nate Begeman0b10b912009-11-07 23:17:15 +00003530 if (NumElems != 4)
3531 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003532
Craig Topperdd637ae2012-02-19 05:41:45 +00003533 return isUndefOrEqual(Mask[0], 2) &&
3534 isUndefOrEqual(Mask[1], 3) &&
3535 isUndefOrEqual(Mask[2], 2) &&
3536 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003537}
3538
Evan Cheng5ced1d82006-04-06 23:23:56 +00003539/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3540/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Topperdd637ae2012-02-19 05:41:45 +00003541static bool isMOVLPMask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003542 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003543 return false;
3544
Craig Topperdd637ae2012-02-19 05:41:45 +00003545 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003546
Evan Cheng5ced1d82006-04-06 23:23:56 +00003547 if (NumElems != 2 && NumElems != 4)
3548 return false;
3549
Chad Rosier238ae312012-04-30 17:47:15 +00003550 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003551 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003552 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003553
Chad Rosier238ae312012-04-30 17:47:15 +00003554 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003555 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003556 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003557
3558 return true;
3559}
3560
Nate Begeman0b10b912009-11-07 23:17:15 +00003561/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3562/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Topperdd637ae2012-02-19 05:41:45 +00003563static bool isMOVLHPSMask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003564 if (!VT.is128BitVector())
3565 return false;
3566
Craig Topperdd637ae2012-02-19 05:41:45 +00003567 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003568
Craig Topper7a9a28b2012-08-12 02:23:29 +00003569 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003570 return false;
3571
Chad Rosier238ae312012-04-30 17:47:15 +00003572 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003573 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003574 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003575
Chad Rosier238ae312012-04-30 17:47:15 +00003576 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3577 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003578 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003579
3580 return true;
3581}
3582
Elena Demikhovsky15963732012-06-26 08:04:10 +00003583//
3584// Some special combinations that can be optimized.
3585//
3586static
3587SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3588 SelectionDAG &DAG) {
Craig Topper657a99c2013-01-19 23:36:09 +00003589 MVT VT = SVOp->getValueType(0).getSimpleVT();
Elena Demikhovsky15963732012-06-26 08:04:10 +00003590 DebugLoc dl = SVOp->getDebugLoc();
3591
3592 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3593 return SDValue();
3594
3595 ArrayRef<int> Mask = SVOp->getMask();
3596
3597 // These are the special masks that may be optimized.
3598 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3599 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3600 bool MatchEvenMask = true;
3601 bool MatchOddMask = true;
3602 for (int i=0; i<8; ++i) {
3603 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3604 MatchEvenMask = false;
3605 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3606 MatchOddMask = false;
3607 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003608
Elena Demikhovsky32510202012-09-04 12:49:02 +00003609 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003610 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003611
Elena Demikhovsky15963732012-06-26 08:04:10 +00003612 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3613
Elena Demikhovsky32510202012-09-04 12:49:02 +00003614 SDValue Op0 = SVOp->getOperand(0);
3615 SDValue Op1 = SVOp->getOperand(1);
3616
3617 if (MatchEvenMask) {
3618 // Shift the second operand right to 32 bits.
3619 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3620 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3621 } else {
3622 // Shift the first operand left to 32 bits.
3623 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3624 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3625 }
3626 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3627 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003628}
3629
Evan Cheng0038e592006-03-28 00:39:58 +00003630/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3631/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003632static bool isUNPCKLMask(ArrayRef<int> Mask, EVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003633 bool HasInt256, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003634 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003635
3636 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3637 "Unsupported vector type for unpckh");
3638
Craig Topper5a529e42013-01-18 06:44:29 +00003639 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003640 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003641 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003642
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003643 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3644 // independently on 128-bit lanes.
3645 unsigned NumLanes = VT.getSizeInBits()/128;
3646 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003647
Craig Topper94438ba2011-12-16 08:06:31 +00003648 for (unsigned l = 0; l != NumLanes; ++l) {
3649 for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3650 i != (l+1)*NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003651 i += 2, ++j) {
3652 int BitI = Mask[i];
3653 int BitI1 = Mask[i+1];
3654 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003655 return false;
David Greenea20244d2011-03-02 17:23:43 +00003656 if (V2IsSplat) {
3657 if (!isUndefOrEqual(BitI1, NumElts))
3658 return false;
3659 } else {
3660 if (!isUndefOrEqual(BitI1, j + NumElts))
3661 return false;
3662 }
Evan Cheng39623da2006-04-20 08:58:49 +00003663 }
Evan Cheng0038e592006-03-28 00:39:58 +00003664 }
David Greenea20244d2011-03-02 17:23:43 +00003665
Evan Cheng0038e592006-03-28 00:39:58 +00003666 return true;
3667}
3668
Evan Cheng4fcb9222006-03-28 02:43:26 +00003669/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3670/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003671static bool isUNPCKHMask(ArrayRef<int> Mask, EVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003672 bool HasInt256, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003673 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003674
3675 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3676 "Unsupported vector type for unpckh");
3677
Craig Topper5a529e42013-01-18 06:44:29 +00003678 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003679 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003680 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003681
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003682 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3683 // independently on 128-bit lanes.
3684 unsigned NumLanes = VT.getSizeInBits()/128;
3685 unsigned NumLaneElts = NumElts/NumLanes;
3686
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003687 for (unsigned l = 0; l != NumLanes; ++l) {
Craig Topper94438ba2011-12-16 08:06:31 +00003688 for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3689 i != (l+1)*NumLaneElts; i += 2, ++j) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003690 int BitI = Mask[i];
3691 int BitI1 = Mask[i+1];
3692 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003693 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003694 if (V2IsSplat) {
3695 if (isUndefOrEqual(BitI1, NumElts))
3696 return false;
3697 } else {
3698 if (!isUndefOrEqual(BitI1, j+NumElts))
3699 return false;
3700 }
Evan Cheng39623da2006-04-20 08:58:49 +00003701 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003702 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003703 return true;
3704}
3705
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003706/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3707/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3708/// <0, 0, 1, 1>
Craig Topper5a529e42013-01-18 06:44:29 +00003709static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003710 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003711 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003712
3713 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3714 "Unsupported vector type for unpckh");
3715
Craig Topper5a529e42013-01-18 06:44:29 +00003716 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003717 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003718 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003719
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003720 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3721 // FIXME: Need a better way to get rid of this, there's no latency difference
3722 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3723 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00003724 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003725 return false;
3726
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003727 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3728 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00003729 unsigned NumLanes = VT.getSizeInBits()/128;
3730 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003731
Craig Topper94438ba2011-12-16 08:06:31 +00003732 for (unsigned l = 0; l != NumLanes; ++l) {
3733 for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3734 i != (l+1)*NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003735 i += 2, ++j) {
3736 int BitI = Mask[i];
3737 int BitI1 = Mask[i+1];
3738
3739 if (!isUndefOrEqual(BitI, j))
3740 return false;
3741 if (!isUndefOrEqual(BitI1, j))
3742 return false;
3743 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003744 }
David Greenea20244d2011-03-02 17:23:43 +00003745
Rafael Espindola15684b22009-04-24 12:40:33 +00003746 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003747}
3748
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003749/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3750/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3751/// <2, 2, 3, 3>
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003752static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003753 unsigned NumElts = VT.getVectorNumElements();
3754
3755 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3756 "Unsupported vector type for unpckh");
3757
Craig Topper5a529e42013-01-18 06:44:29 +00003758 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003759 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003760 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003761
Craig Topper94438ba2011-12-16 08:06:31 +00003762 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3763 // independently on 128-bit lanes.
3764 unsigned NumLanes = VT.getSizeInBits()/128;
3765 unsigned NumLaneElts = NumElts/NumLanes;
3766
3767 for (unsigned l = 0; l != NumLanes; ++l) {
3768 for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3769 i != (l+1)*NumLaneElts; i += 2, ++j) {
3770 int BitI = Mask[i];
3771 int BitI1 = Mask[i+1];
3772 if (!isUndefOrEqual(BitI, j))
3773 return false;
3774 if (!isUndefOrEqual(BitI1, j))
3775 return false;
3776 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003777 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003778 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003779}
3780
Evan Cheng017dcc62006-04-21 01:05:10 +00003781/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3782/// specifies a shuffle of elements that is suitable for input to MOVSS,
3783/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003784static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003785 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003786 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00003787 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003788 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003789
Craig Topperc612d792012-01-02 09:17:37 +00003790 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003791
Nate Begeman9008ca62009-04-27 18:41:29 +00003792 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003793 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003794
Craig Topperc612d792012-01-02 09:17:37 +00003795 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003796 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003797 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003798
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003799 return true;
3800}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003801
Craig Topper70b883b2011-11-28 10:14:51 +00003802/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003803/// as permutations between 128-bit chunks or halves. As an example: this
3804/// shuffle bellow:
3805/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3806/// The first half comes from the second half of V1 and the second half from the
3807/// the second half of V2.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003808static bool isVPERM2X128Mask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3809 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003810 return false;
3811
3812 // The shuffle result is divided into half A and half B. In total the two
3813 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3814 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00003815 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003816 bool MatchA = false, MatchB = false;
3817
3818 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00003819 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003820 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3821 MatchA = true;
3822 break;
3823 }
3824 }
3825
3826 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00003827 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003828 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3829 MatchB = true;
3830 break;
3831 }
3832 }
3833
3834 return MatchA && MatchB;
3835}
3836
Craig Topper70b883b2011-11-28 10:14:51 +00003837/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
3838/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00003839static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Toppercfcab212013-01-19 08:27:45 +00003840 MVT VT = SVOp->getValueType(0).getSimpleVT();
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003841
Craig Topperc612d792012-01-02 09:17:37 +00003842 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003843
Craig Topperc612d792012-01-02 09:17:37 +00003844 unsigned FstHalf = 0, SndHalf = 0;
3845 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003846 if (SVOp->getMaskElt(i) > 0) {
3847 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3848 break;
3849 }
3850 }
Craig Topperc612d792012-01-02 09:17:37 +00003851 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003852 if (SVOp->getMaskElt(i) > 0) {
3853 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3854 break;
3855 }
3856 }
3857
3858 return (FstHalf | (SndHalf << 4));
3859}
3860
Craig Topper70b883b2011-11-28 10:14:51 +00003861/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003862/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3863/// Note that VPERMIL mask matching is different depending whether theunderlying
3864/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3865/// to the same elements of the low, but to the higher half of the source.
3866/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00003867/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003868static bool isVPERMILPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3869 if (!HasFp256)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003870 return false;
3871
Craig Topperc612d792012-01-02 09:17:37 +00003872 unsigned NumElts = VT.getVectorNumElements();
Craig Topper70b883b2011-11-28 10:14:51 +00003873 // Only match 256-bit with 32/64-bit types
Craig Topper5a529e42013-01-18 06:44:29 +00003874 if (!VT.is256BitVector() || (NumElts != 4 && NumElts != 8))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003875 return false;
3876
Craig Topperc612d792012-01-02 09:17:37 +00003877 unsigned NumLanes = VT.getSizeInBits()/128;
3878 unsigned LaneSize = NumElts/NumLanes;
Craig Topper1a7700a2012-01-19 08:19:12 +00003879 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00003880 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00003881 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00003882 return false;
Craig Topper1a7700a2012-01-19 08:19:12 +00003883 if (NumElts != 8 || l == 0)
Craig Topper70b883b2011-11-28 10:14:51 +00003884 continue;
3885 // VPERMILPS handling
3886 if (Mask[i] < 0)
3887 continue;
Craig Topper1a7700a2012-01-19 08:19:12 +00003888 if (!isUndefOrEqual(Mask[i+l], Mask[i]+l))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003889 return false;
3890 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003891 }
3892
3893 return true;
3894}
3895
Craig Topper5aaffa82012-02-19 02:53:47 +00003896/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00003897/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003898/// element of vector 2 and the other elements to come from vector 1 in order.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003899static bool isCommutedMOVLMask(ArrayRef<int> Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003900 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003901 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00003902 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00003903
3904 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003905 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003906 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003907
Nate Begeman9008ca62009-04-27 18:41:29 +00003908 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003909 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003910
Craig Topperc612d792012-01-02 09:17:37 +00003911 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003912 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3913 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3914 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003915 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003916
Evan Cheng39623da2006-04-20 08:58:49 +00003917 return true;
3918}
3919
Evan Chengd9539472006-04-14 21:59:03 +00003920/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3921/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003922/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Topperdd637ae2012-02-19 05:41:45 +00003923static bool isMOVSHDUPMask(ArrayRef<int> Mask, EVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00003924 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00003925 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00003926 return false;
3927
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003928 unsigned NumElems = VT.getVectorNumElements();
3929
Craig Topper5a529e42013-01-18 06:44:29 +00003930 if ((VT.is128BitVector() && NumElems != 4) ||
3931 (VT.is256BitVector() && NumElems != 8))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003932 return false;
3933
3934 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00003935 for (unsigned i = 0; i != NumElems; i += 2)
3936 if (!isUndefOrEqual(Mask[i], i+1) ||
3937 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003938 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003939
3940 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003941}
3942
3943/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3944/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003945/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Topperdd637ae2012-02-19 05:41:45 +00003946static bool isMOVSLDUPMask(ArrayRef<int> Mask, EVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00003947 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00003948 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00003949 return false;
3950
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003951 unsigned NumElems = VT.getVectorNumElements();
3952
Craig Topper5a529e42013-01-18 06:44:29 +00003953 if ((VT.is128BitVector() && NumElems != 4) ||
3954 (VT.is256BitVector() && NumElems != 8))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003955 return false;
3956
3957 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00003958 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00003959 if (!isUndefOrEqual(Mask[i], i) ||
3960 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003961 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003962
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003963 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003964}
3965
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003966/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3967/// specifies a shuffle of elements that is suitable for input to 256-bit
3968/// version of MOVDDUP.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003969static bool isMOVDDUPYMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3970 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00003971 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003972
Craig Topper7a9a28b2012-08-12 02:23:29 +00003973 unsigned NumElts = VT.getVectorNumElements();
3974 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003975 return false;
3976
Craig Topperc612d792012-01-02 09:17:37 +00003977 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00003978 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003979 return false;
Craig Topperc612d792012-01-02 09:17:37 +00003980 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00003981 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003982 return false;
3983 return true;
3984}
3985
Evan Cheng0b457f02008-09-25 20:50:48 +00003986/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003987/// specifies a shuffle of elements that is suitable for input to 128-bit
3988/// version of MOVDDUP.
Craig Topperdd637ae2012-02-19 05:41:45 +00003989static bool isMOVDDUPMask(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003990 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003991 return false;
3992
Craig Topperc612d792012-01-02 09:17:37 +00003993 unsigned e = VT.getVectorNumElements() / 2;
3994 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003995 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003996 return false;
Craig Topperc612d792012-01-02 09:17:37 +00003997 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003998 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003999 return false;
4000 return true;
4001}
4002
David Greenec38a03e2011-02-03 15:50:00 +00004003/// isVEXTRACTF128Index - Return true if the specified
4004/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4005/// suitable for input to VEXTRACTF128.
4006bool X86::isVEXTRACTF128Index(SDNode *N) {
4007 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4008 return false;
4009
4010 // The index should be aligned on a 128-bit boundary.
4011 uint64_t Index =
4012 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4013
Craig Topper5141d972013-01-18 08:41:28 +00004014 MVT VT = N->getValueType(0).getSimpleVT();
4015 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004016 bool Result = (Index * ElSize) % 128 == 0;
4017
4018 return Result;
4019}
4020
David Greeneccacdc12011-02-04 16:08:29 +00004021/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
4022/// operand specifies a subvector insert that is suitable for input to
4023/// VINSERTF128.
4024bool X86::isVINSERTF128Index(SDNode *N) {
4025 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4026 return false;
4027
4028 // The index should be aligned on a 128-bit boundary.
4029 uint64_t Index =
4030 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4031
Craig Topper5141d972013-01-18 08:41:28 +00004032 MVT VT = N->getValueType(0).getSimpleVT();
4033 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004034 bool Result = (Index * ElSize) % 128 == 0;
4035
4036 return Result;
4037}
4038
Evan Cheng63d33002006-03-22 08:01:21 +00004039/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004040/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004041/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004042static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004043 MVT VT = N->getValueType(0).getSimpleVT();
Nate Begeman9008ca62009-04-27 18:41:29 +00004044
Craig Topper1a7700a2012-01-19 08:19:12 +00004045 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4046 "Unsupported vector type for PSHUF/SHUFP");
4047
4048 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4049 // independently on 128-bit lanes.
4050 unsigned NumElts = VT.getVectorNumElements();
4051 unsigned NumLanes = VT.getSizeInBits()/128;
4052 unsigned NumLaneElts = NumElts/NumLanes;
4053
4054 assert((NumLaneElts == 2 || NumLaneElts == 4) &&
4055 "Only supports 2 or 4 elements per lane");
4056
4057 unsigned Shift = (NumLaneElts == 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004058 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004059 for (unsigned i = 0; i != NumElts; ++i) {
4060 int Elt = N->getMaskElt(i);
4061 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004062 Elt &= NumLaneElts - 1;
4063 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004064 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004065 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004066
Evan Cheng63d33002006-03-22 08:01:21 +00004067 return Mask;
4068}
4069
Evan Cheng506d3df2006-03-29 23:07:14 +00004070/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004071/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004072static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004073 MVT VT = N->getValueType(0).getSimpleVT();
Craig Topper6b28d352012-05-03 07:12:59 +00004074
4075 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4076 "Unsupported vector type for PSHUFHW");
4077
4078 unsigned NumElts = VT.getVectorNumElements();
4079
Evan Cheng506d3df2006-03-29 23:07:14 +00004080 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004081 for (unsigned l = 0; l != NumElts; l += 8) {
4082 // 8 nodes per lane, but we only care about the last 4.
4083 for (unsigned i = 0; i < 4; ++i) {
4084 int Elt = N->getMaskElt(l+i+4);
4085 if (Elt < 0) continue;
4086 Elt &= 0x3; // only 2-bits.
4087 Mask |= Elt << (i * 2);
4088 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004089 }
Craig Topper6b28d352012-05-03 07:12:59 +00004090
Evan Cheng506d3df2006-03-29 23:07:14 +00004091 return Mask;
4092}
4093
4094/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004095/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004096static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004097 MVT VT = N->getValueType(0).getSimpleVT();
Craig Topper6b28d352012-05-03 07:12:59 +00004098
4099 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4100 "Unsupported vector type for PSHUFHW");
4101
4102 unsigned NumElts = VT.getVectorNumElements();
4103
Evan Cheng506d3df2006-03-29 23:07:14 +00004104 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004105 for (unsigned l = 0; l != NumElts; l += 8) {
4106 // 8 nodes per lane, but we only care about the first 4.
4107 for (unsigned i = 0; i < 4; ++i) {
4108 int Elt = N->getMaskElt(l+i);
4109 if (Elt < 0) continue;
4110 Elt &= 0x3; // only 2-bits
4111 Mask |= Elt << (i * 2);
4112 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004113 }
Craig Topper6b28d352012-05-03 07:12:59 +00004114
Evan Cheng506d3df2006-03-29 23:07:14 +00004115 return Mask;
4116}
4117
Nate Begemana09008b2009-10-19 02:17:23 +00004118/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4119/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004120static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Toppercfcab212013-01-19 08:27:45 +00004121 MVT VT = SVOp->getValueType(0).getSimpleVT();
Craig Topperd93e4c32011-12-11 19:12:35 +00004122 unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004123
Craig Topper0e2037b2012-01-20 05:53:00 +00004124 unsigned NumElts = VT.getVectorNumElements();
4125 unsigned NumLanes = VT.getSizeInBits()/128;
4126 unsigned NumLaneElts = NumElts/NumLanes;
4127
4128 int Val = 0;
4129 unsigned i;
4130 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004131 Val = SVOp->getMaskElt(i);
4132 if (Val >= 0)
4133 break;
4134 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004135 if (Val >= (int)NumElts)
4136 Val -= NumElts - NumLaneElts;
4137
Eli Friedman63f8dde2011-07-25 21:36:45 +00004138 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004139 return (Val - i) * EltSize;
4140}
4141
David Greenec38a03e2011-02-03 15:50:00 +00004142/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4143/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4144/// instructions.
4145unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4146 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4147 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4148
4149 uint64_t Index =
4150 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4151
Craig Toppercfcab212013-01-19 08:27:45 +00004152 MVT VecVT = N->getOperand(0).getValueType().getSimpleVT();
4153 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004154
4155 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004156 return Index / NumElemsPerChunk;
4157}
4158
David Greeneccacdc12011-02-04 16:08:29 +00004159/// getInsertVINSERTF128Immediate - Return the appropriate immediate
4160/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4161/// instructions.
4162unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4163 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4164 llvm_unreachable("Illegal insert subvector for VINSERTF128");
4165
4166 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004167 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004168
Craig Toppercfcab212013-01-19 08:27:45 +00004169 MVT VecVT = N->getValueType(0).getSimpleVT();
4170 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004171
4172 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004173 return Index / NumElemsPerChunk;
4174}
4175
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004176/// getShuffleCLImmediate - Return the appropriate immediate to shuffle
4177/// the specified VECTOR_SHUFFLE mask with VPERMQ and VPERMPD instructions.
4178/// Handles 256-bit.
4179static unsigned getShuffleCLImmediate(ShuffleVectorSDNode *N) {
Craig Toppercfcab212013-01-19 08:27:45 +00004180 MVT VT = N->getValueType(0).getSimpleVT();
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004181
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004182 unsigned NumElts = VT.getVectorNumElements();
4183
Craig Topper095c5282012-04-15 23:48:57 +00004184 assert((VT.is256BitVector() && NumElts == 4) &&
4185 "Unsupported vector type for VPERMQ/VPERMPD");
4186
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004187 unsigned Mask = 0;
4188 for (unsigned i = 0; i != NumElts; ++i) {
4189 int Elt = N->getMaskElt(i);
Craig Topper095c5282012-04-15 23:48:57 +00004190 if (Elt < 0)
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00004191 continue;
4192 Mask |= Elt << (i*2);
4193 }
4194
4195 return Mask;
4196}
Evan Cheng37b73872009-07-30 08:33:02 +00004197/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4198/// constant +0.0.
4199bool X86::isZeroNode(SDValue Elt) {
4200 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00004201 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00004202 (isa<ConstantFPSDNode>(Elt) &&
4203 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4204}
4205
Nate Begeman9008ca62009-04-27 18:41:29 +00004206/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4207/// their permute mask.
4208static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4209 SelectionDAG &DAG) {
Craig Topper657a99c2013-01-19 23:36:09 +00004210 MVT VT = SVOp->getValueType(0).getSimpleVT();
Nate Begeman5a5ca152009-04-29 05:20:52 +00004211 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004212 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004213
Nate Begeman5a5ca152009-04-29 05:20:52 +00004214 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004215 int Idx = SVOp->getMaskElt(i);
4216 if (Idx >= 0) {
4217 if (Idx < (int)NumElems)
4218 Idx += NumElems;
4219 else
4220 Idx -= NumElems;
4221 }
4222 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004223 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004224 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4225 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004226}
4227
Evan Cheng533a0aa2006-04-19 20:35:22 +00004228/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4229/// match movhlps. The lower half elements should come from upper half of
4230/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004231/// half of V2 (and in order).
Craig Topperdd637ae2012-02-19 05:41:45 +00004232static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004233 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004234 return false;
4235 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004236 return false;
4237 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004238 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004239 return false;
4240 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004241 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004242 return false;
4243 return true;
4244}
4245
Evan Cheng5ced1d82006-04-06 23:23:56 +00004246/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004247/// is promoted to a vector. It also returns the LoadSDNode by reference if
4248/// required.
4249static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004250 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4251 return false;
4252 N = N->getOperand(0).getNode();
4253 if (!ISD::isNON_EXTLoad(N))
4254 return false;
4255 if (LD)
4256 *LD = cast<LoadSDNode>(N);
4257 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004258}
4259
Dan Gohman65fd6562011-11-03 21:49:52 +00004260// Test whether the given value is a vector value which will be legalized
4261// into a load.
4262static bool WillBeConstantPoolLoad(SDNode *N) {
4263 if (N->getOpcode() != ISD::BUILD_VECTOR)
4264 return false;
4265
4266 // Check for any non-constant elements.
4267 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4268 switch (N->getOperand(i).getNode()->getOpcode()) {
4269 case ISD::UNDEF:
4270 case ISD::ConstantFP:
4271 case ISD::Constant:
4272 break;
4273 default:
4274 return false;
4275 }
4276
4277 // Vectors of all-zeros and all-ones are materialized with special
4278 // instructions rather than being loaded.
4279 return !ISD::isBuildVectorAllZeros(N) &&
4280 !ISD::isBuildVectorAllOnes(N);
4281}
4282
Evan Cheng533a0aa2006-04-19 20:35:22 +00004283/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4284/// match movlp{s|d}. The lower half elements should come from lower half of
4285/// V1 (and in order), and the upper half elements should come from the upper
4286/// half of V2 (and in order). And since V1 will become the source of the
4287/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004288static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Topperdd637ae2012-02-19 05:41:45 +00004289 ArrayRef<int> Mask, EVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004290 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004291 return false;
4292
Evan Cheng466685d2006-10-09 20:57:25 +00004293 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004294 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004295 // Is V2 is a vector load, don't do this transformation. We will try to use
4296 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004297 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004298 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004299
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004300 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004301
Evan Cheng533a0aa2006-04-19 20:35:22 +00004302 if (NumElems != 2 && NumElems != 4)
4303 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004304 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004305 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004306 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004307 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004308 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004309 return false;
4310 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004311}
4312
Evan Cheng39623da2006-04-20 08:58:49 +00004313/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4314/// all the same.
4315static bool isSplatVector(SDNode *N) {
4316 if (N->getOpcode() != ISD::BUILD_VECTOR)
4317 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004318
Dan Gohman475871a2008-07-27 21:46:04 +00004319 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004320 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4321 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004322 return false;
4323 return true;
4324}
4325
Evan Cheng213d2cf2007-05-17 18:45:50 +00004326/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004327/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004328/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004329static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004330 SDValue V1 = N->getOperand(0);
4331 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004332 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4333 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004334 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004335 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004336 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004337 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4338 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004339 if (Opc != ISD::BUILD_VECTOR ||
4340 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004341 return false;
4342 } else if (Idx >= 0) {
4343 unsigned Opc = V1.getOpcode();
4344 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4345 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004346 if (Opc != ISD::BUILD_VECTOR ||
4347 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004348 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004349 }
4350 }
4351 return true;
4352}
4353
4354/// getZeroVector - Returns a vector of specified type with all zero elements.
4355///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004356static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Craig Topper12216172012-01-13 08:12:35 +00004357 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004358 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004359
Dale Johannesen0488fb62010-09-30 23:57:10 +00004360 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004361 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004362 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004363 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004364 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004365 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4366 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4367 } else { // SSE1
4368 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4369 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4370 }
Craig Topper5a529e42013-01-18 06:44:29 +00004371 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004372 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004373 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4374 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4375 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4376 } else {
4377 // 256-bit logic and arithmetic instructions in AVX are all
4378 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4379 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4380 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4381 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
4382 }
Craig Topper9d352402012-04-23 07:24:41 +00004383 } else
4384 llvm_unreachable("Unexpected vector type");
4385
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004386 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004387}
4388
Chris Lattner8a594482007-11-25 00:24:49 +00004389/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004390/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4391/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4392/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004393static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Craig Topper745a86b2011-11-19 22:34:59 +00004394 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004395 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004396
Owen Anderson825b72b2009-08-11 20:47:22 +00004397 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004398 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004399 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004400 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004401 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4402 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4403 } else { // AVX
4404 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004405 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004406 }
Craig Topper5a529e42013-01-18 06:44:29 +00004407 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004408 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004409 } else
4410 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004411
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004412 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004413}
4414
Evan Cheng39623da2006-04-20 08:58:49 +00004415/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4416/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004417static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004418 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004419 if (Mask[i] > (int)NumElems) {
4420 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004421 }
Evan Cheng39623da2006-04-20 08:58:49 +00004422 }
Evan Cheng39623da2006-04-20 08:58:49 +00004423}
4424
Evan Cheng017dcc62006-04-21 01:05:10 +00004425/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4426/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004427static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004428 SDValue V2) {
4429 unsigned NumElems = VT.getVectorNumElements();
4430 SmallVector<int, 8> Mask;
4431 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004432 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004433 Mask.push_back(i);
4434 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004435}
4436
Nate Begeman9008ca62009-04-27 18:41:29 +00004437/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004438static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004439 SDValue V2) {
4440 unsigned NumElems = VT.getVectorNumElements();
4441 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004442 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004443 Mask.push_back(i);
4444 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004445 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004446 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004447}
4448
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004449/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004450static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004451 SDValue V2) {
4452 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004453 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004454 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004455 Mask.push_back(i + Half);
4456 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004457 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004458 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004459}
4460
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004461// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004462// a generic shuffle instruction because the target has no such instructions.
4463// Generate shuffles which repeat i16 and i8 several times until they can be
4464// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004465static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004466 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004467 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004468 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004469
Nate Begeman9008ca62009-04-27 18:41:29 +00004470 while (NumElems > 4) {
4471 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004472 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004473 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004474 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004475 EltNo -= NumElems/2;
4476 }
4477 NumElems >>= 1;
4478 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004479 return V;
4480}
Eric Christopherfd179292009-08-27 18:07:15 +00004481
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004482/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4483static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4484 EVT VT = V.getValueType();
4485 DebugLoc dl = V.getDebugLoc();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004486
Craig Topper5a529e42013-01-18 06:44:29 +00004487 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004488 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004489 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004490 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4491 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004492 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004493 // To use VPERMILPS to splat scalars, the second half of indicies must
4494 // refer to the higher part, which is a duplication of the lower one,
4495 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004496 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4497 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004498
4499 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4500 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4501 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004502 } else
4503 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004504
4505 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4506}
4507
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004508/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004509static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4510 EVT SrcVT = SV->getValueType(0);
4511 SDValue V1 = SV->getOperand(0);
4512 DebugLoc dl = SV->getDebugLoc();
4513
4514 int EltNo = SV->getSplatIndex();
4515 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004516 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004517
Craig Topper5a529e42013-01-18 06:44:29 +00004518 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4519 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004520
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004521 // Extract the 128-bit part containing the splat element and update
4522 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004523 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004524 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4525 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004526 EltNo -= NumElems/2;
4527 }
4528
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004529 // All i16 and i8 vector types can't be used directly by a generic shuffle
4530 // instruction because the target has no such instruction. Generate shuffles
4531 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004532 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004533 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004534 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004535 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004536
4537 // Recreate the 256-bit vector and place the same 128-bit vector
4538 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004539 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004540 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004541 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004542 }
4543
4544 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004545}
4546
Evan Chengba05f722006-04-21 23:03:30 +00004547/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004548/// vector of zero or undef vector. This produces a shuffle where the low
4549/// element of V2 is swizzled into the zero/undef vector, landing at element
4550/// 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 +00004551static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004552 bool IsZero,
4553 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004554 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004555 EVT VT = V2.getValueType();
Craig Topper12216172012-01-13 08:12:35 +00004556 SDValue V1 = IsZero
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004557 ? getZeroVector(VT, Subtarget, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004558 unsigned NumElems = VT.getVectorNumElements();
4559 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004560 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004561 // If this is the insertion idx, put the low elt of V2 here.
4562 MaskVec.push_back(i == Idx ? NumElems : i);
4563 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004564}
4565
Craig Toppera1ffc682012-03-20 06:42:26 +00004566/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4567/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004568/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004569static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004570 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004571 unsigned NumElems = VT.getVectorNumElements();
4572 SDValue ImmN;
4573
Craig Topper89f4e662012-03-20 07:17:59 +00004574 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004575 switch(N->getOpcode()) {
4576 case X86ISD::SHUFP:
4577 ImmN = N->getOperand(N->getNumOperands()-1);
4578 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4579 break;
4580 case X86ISD::UNPCKH:
4581 DecodeUNPCKHMask(VT, Mask);
4582 break;
4583 case X86ISD::UNPCKL:
4584 DecodeUNPCKLMask(VT, Mask);
4585 break;
4586 case X86ISD::MOVHLPS:
4587 DecodeMOVHLPSMask(NumElems, Mask);
4588 break;
4589 case X86ISD::MOVLHPS:
4590 DecodeMOVLHPSMask(NumElems, Mask);
4591 break;
4592 case X86ISD::PSHUFD:
4593 case X86ISD::VPERMILP:
4594 ImmN = N->getOperand(N->getNumOperands()-1);
4595 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004596 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004597 break;
4598 case X86ISD::PSHUFHW:
4599 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004600 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004601 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004602 break;
4603 case X86ISD::PSHUFLW:
4604 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004605 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004606 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004607 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004608 case X86ISD::VPERMI:
4609 ImmN = N->getOperand(N->getNumOperands()-1);
4610 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4611 IsUnary = true;
4612 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004613 case X86ISD::MOVSS:
4614 case X86ISD::MOVSD: {
4615 // The index 0 always comes from the first element of the second source,
4616 // this is why MOVSS and MOVSD are used in the first place. The other
4617 // elements come from the other positions of the first source vector
4618 Mask.push_back(NumElems);
4619 for (unsigned i = 1; i != NumElems; ++i) {
4620 Mask.push_back(i);
4621 }
4622 break;
4623 }
4624 case X86ISD::VPERM2X128:
4625 ImmN = N->getOperand(N->getNumOperands()-1);
4626 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004627 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004628 break;
4629 case X86ISD::MOVDDUP:
4630 case X86ISD::MOVLHPD:
4631 case X86ISD::MOVLPD:
4632 case X86ISD::MOVLPS:
4633 case X86ISD::MOVSHDUP:
4634 case X86ISD::MOVSLDUP:
4635 case X86ISD::PALIGN:
4636 // Not yet implemented
4637 return false;
4638 default: llvm_unreachable("unknown target shuffle node");
4639 }
4640
4641 return true;
4642}
4643
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004644/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4645/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00004646static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00004647 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004648 if (Depth == 6)
4649 return SDValue(); // Limit search depth.
4650
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004651 SDValue V = SDValue(N, 0);
4652 EVT VT = V.getValueType();
4653 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004654
4655 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4656 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00004657 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004658
Craig Topper3d092db2012-03-21 02:14:01 +00004659 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004660 return DAG.getUNDEF(VT.getVectorElementType());
4661
Craig Topperd156dc12012-02-06 07:17:51 +00004662 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00004663 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4664 : SV->getOperand(1);
4665 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004666 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004667
4668 // Recurse into target specific vector shuffles to find scalars.
4669 if (isTargetShuffle(Opcode)) {
Craig Topperd978c542012-05-06 19:46:21 +00004670 MVT ShufVT = V.getValueType().getSimpleVT();
4671 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00004672 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00004673 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004674
Craig Topperd978c542012-05-06 19:46:21 +00004675 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00004676 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004677
Craig Topper3d092db2012-03-21 02:14:01 +00004678 int Elt = ShuffleMask[Index];
4679 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00004680 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004681
Craig Topper3d092db2012-03-21 02:14:01 +00004682 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00004683 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00004684 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004685 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004686 }
4687
4688 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004689 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004690 V = V.getOperand(0);
4691 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004692 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004693
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004694 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004695 return SDValue();
4696 }
4697
4698 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4699 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00004700 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004701
4702 if (V.getOpcode() == ISD::BUILD_VECTOR)
4703 return V.getOperand(Index);
4704
4705 return SDValue();
4706}
4707
4708/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4709/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004710/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004711static
Craig Topper3d092db2012-03-21 02:14:01 +00004712unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, unsigned NumElems,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004713 bool ZerosFromLeft, SelectionDAG &DAG) {
Craig Topper3d092db2012-03-21 02:14:01 +00004714 unsigned i;
4715 for (i = 0; i != NumElems; ++i) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004716 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Craig Topper3d092db2012-03-21 02:14:01 +00004717 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004718 if (!(Elt.getNode() &&
4719 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4720 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004721 }
4722
4723 return i;
4724}
4725
Craig Topper3d092db2012-03-21 02:14:01 +00004726/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
4727/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004728/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4729static
Craig Topper3d092db2012-03-21 02:14:01 +00004730bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
4731 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
4732 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004733 bool SeenV1 = false;
4734 bool SeenV2 = false;
4735
Craig Topper3d092db2012-03-21 02:14:01 +00004736 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004737 int Idx = SVOp->getMaskElt(i);
4738 // Ignore undef indicies
4739 if (Idx < 0)
4740 continue;
4741
Craig Topper3d092db2012-03-21 02:14:01 +00004742 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004743 SeenV1 = true;
4744 else
4745 SeenV2 = true;
4746
4747 // Only accept consecutive elements from the same vector
4748 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4749 return false;
4750 }
4751
4752 OpNum = SeenV1 ? 0 : 1;
4753 return true;
4754}
4755
4756/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4757/// logical left shift of a vector.
4758static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4759 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4760 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4761 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4762 false /* check zeros from right */, DAG);
4763 unsigned OpSrc;
4764
4765 if (!NumZeros)
4766 return false;
4767
4768 // Considering the elements in the mask that are not consecutive zeros,
4769 // check if they consecutively come from only one of the source vectors.
4770 //
4771 // V1 = {X, A, B, C} 0
4772 // \ \ \ /
4773 // vector_shuffle V1, V2 <1, 2, 3, X>
4774 //
4775 if (!isShuffleMaskConsecutive(SVOp,
4776 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00004777 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004778 NumZeros, // Where to start looking in the src vector
4779 NumElems, // Number of elements in vector
4780 OpSrc)) // Which source operand ?
4781 return false;
4782
4783 isLeft = false;
4784 ShAmt = NumZeros;
4785 ShVal = SVOp->getOperand(OpSrc);
4786 return true;
4787}
4788
4789/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4790/// logical left shift of a vector.
4791static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4792 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4793 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4794 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4795 true /* check zeros from left */, DAG);
4796 unsigned OpSrc;
4797
4798 if (!NumZeros)
4799 return false;
4800
4801 // Considering the elements in the mask that are not consecutive zeros,
4802 // check if they consecutively come from only one of the source vectors.
4803 //
4804 // 0 { A, B, X, X } = V2
4805 // / \ / /
4806 // vector_shuffle V1, V2 <X, X, 4, 5>
4807 //
4808 if (!isShuffleMaskConsecutive(SVOp,
4809 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00004810 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004811 0, // Where to start looking in the src vector
4812 NumElems, // Number of elements in vector
4813 OpSrc)) // Which source operand ?
4814 return false;
4815
4816 isLeft = true;
4817 ShAmt = NumZeros;
4818 ShVal = SVOp->getOperand(OpSrc);
4819 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004820}
4821
4822/// isVectorShift - Returns true if the shuffle can be implemented as a
4823/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004824static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004825 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004826 // Although the logic below support any bitwidth size, there are no
4827 // shift instructions which handle more than 128-bit vectors.
Craig Topper7a9a28b2012-08-12 02:23:29 +00004828 if (!SVOp->getValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004829 return false;
4830
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004831 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4832 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4833 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004834
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004835 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004836}
4837
Evan Chengc78d3b42006-04-24 18:01:45 +00004838/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4839///
Dan Gohman475871a2008-07-27 21:46:04 +00004840static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004841 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004842 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004843 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00004844 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004845 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004846 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004847
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004848 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004849 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004850 bool First = true;
4851 for (unsigned i = 0; i < 16; ++i) {
4852 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4853 if (ThisIsNonZero && First) {
4854 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004855 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004856 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004857 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004858 First = false;
4859 }
4860
4861 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004862 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004863 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4864 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004865 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004866 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004867 }
4868 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004869 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4870 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4871 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004872 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004873 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004874 } else
4875 ThisElt = LastElt;
4876
Gabor Greifba36cb52008-08-28 21:40:38 +00004877 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004878 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004879 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004880 }
4881 }
4882
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004883 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004884}
4885
Bill Wendlinga348c562007-03-22 18:42:45 +00004886/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004887///
Dan Gohman475871a2008-07-27 21:46:04 +00004888static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004889 unsigned NumNonZero, unsigned NumZero,
4890 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004891 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00004892 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004893 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004894 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004895
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004896 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004897 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004898 bool First = true;
4899 for (unsigned i = 0; i < 8; ++i) {
4900 bool isNonZero = (NonZeros & (1 << i)) != 0;
4901 if (isNonZero) {
4902 if (First) {
4903 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004904 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004905 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004906 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004907 First = false;
4908 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004909 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004910 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004911 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004912 }
4913 }
4914
4915 return V;
4916}
4917
Evan Chengf26ffe92008-05-29 08:22:04 +00004918/// getVShift - Return a vector logical shift node.
4919///
Owen Andersone50ed302009-08-10 22:56:29 +00004920static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004921 unsigned NumBits, SelectionDAG &DAG,
4922 const TargetLowering &TLI, DebugLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004923 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00004924 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00004925 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004926 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4927 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004928 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004929 DAG.getConstant(NumBits,
4930 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004931}
4932
Dan Gohman475871a2008-07-27 21:46:04 +00004933SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004934X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004935 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004936
Evan Chengc3630942009-12-09 21:00:30 +00004937 // Check if the scalar load can be widened into a vector load. And if
4938 // the address is "base + cst" see if the cst can be "absorbed" into
4939 // the shuffle mask.
4940 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4941 SDValue Ptr = LD->getBasePtr();
4942 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4943 return SDValue();
4944 EVT PVT = LD->getValueType(0);
4945 if (PVT != MVT::i32 && PVT != MVT::f32)
4946 return SDValue();
4947
4948 int FI = -1;
4949 int64_t Offset = 0;
4950 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4951 FI = FINode->getIndex();
4952 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004953 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004954 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4955 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4956 Offset = Ptr.getConstantOperandVal(1);
4957 Ptr = Ptr.getOperand(0);
4958 } else {
4959 return SDValue();
4960 }
4961
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004962 // FIXME: 256-bit vector instructions don't require a strict alignment,
4963 // improve this code to support it better.
4964 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004965 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004966 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004967 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004968 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004969 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004970 // Can't change the alignment. FIXME: It's possible to compute
4971 // the exact stack offset and reference FI + adjust offset instead.
4972 // If someone *really* cares about this. That's the way to implement it.
4973 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004974 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004975 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004976 }
4977 }
4978
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004979 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004980 // Ptr + (Offset & ~15).
4981 if (Offset < 0)
4982 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004983 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004984 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004985 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004986 if (StartOffset)
4987 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4988 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4989
4990 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00004991 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004992
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004993 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4994 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004995 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004996 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004997
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004998 SmallVector<int, 8> Mask;
Craig Topper66ddd152012-04-27 22:54:43 +00004999 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005000 Mask.push_back(EltNo);
5001
Craig Toppercc3000632012-01-30 07:50:31 +00005002 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005003 }
5004
5005 return SDValue();
5006}
5007
Michael J. Spencerec38de22010-10-10 22:04:20 +00005008/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5009/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005010/// load which has the same value as a build_vector whose operands are 'elts'.
5011///
5012/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005013///
Nate Begeman1449f292010-03-24 22:19:06 +00005014/// FIXME: we'd also like to handle the case where the last elements are zero
5015/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5016/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005017static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00005018 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005019 EVT EltVT = VT.getVectorElementType();
5020 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005021
Nate Begemanfdea31a2010-03-24 20:49:50 +00005022 LoadSDNode *LDBase = NULL;
5023 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005024
Nate Begeman1449f292010-03-24 22:19:06 +00005025 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005026 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005027 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005028 for (unsigned i = 0; i < NumElems; ++i) {
5029 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005030
Nate Begemanfdea31a2010-03-24 20:49:50 +00005031 if (!Elt.getNode() ||
5032 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5033 return SDValue();
5034 if (!LDBase) {
5035 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5036 return SDValue();
5037 LDBase = cast<LoadSDNode>(Elt.getNode());
5038 LastLoadedElt = i;
5039 continue;
5040 }
5041 if (Elt.getOpcode() == ISD::UNDEF)
5042 continue;
5043
5044 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5045 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5046 return SDValue();
5047 LastLoadedElt = i;
5048 }
Nate Begeman1449f292010-03-24 22:19:06 +00005049
5050 // If we have found an entire vector of loads and undefs, then return a large
5051 // load of the entire vector width starting at the base pointer. If we found
5052 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005053 if (LastLoadedElt == NumElems - 1) {
5054 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00005055 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005056 LDBase->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005057 LDBase->isVolatile(), LDBase->isNonTemporal(),
5058 LDBase->isInvariant(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00005059 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005060 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00005061 LDBase->isVolatile(), LDBase->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005062 LDBase->isInvariant(), LDBase->getAlignment());
Craig Topper69947b92012-04-23 06:57:04 +00005063 }
5064 if (NumElems == 4 && LastLoadedElt == 1 &&
5065 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005066 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5067 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005068 SDValue ResNode =
5069 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
5070 LDBase->getPointerInfo(),
5071 LDBase->getAlignment(),
5072 false/*isVolatile*/, true/*ReadMem*/,
5073 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005074
5075 // Make sure the newly-created LOAD is in the same position as LDBase in
5076 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5077 // update uses of LDBase's output chain to use the TokenFactor.
5078 if (LDBase->hasAnyUseOfValue(1)) {
5079 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5080 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5081 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5082 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5083 SDValue(ResNode.getNode(), 1));
5084 }
5085
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005086 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005087 }
5088 return SDValue();
5089}
5090
Nadav Rotem9d68b062012-04-08 12:54:54 +00005091/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5092/// to generate a splat value for the following cases:
5093/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005094/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005095/// a scalar load, or a constant.
5096/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005097/// or SDValue() otherwise.
Nadav Rotem154819d2012-04-09 07:45:58 +00005098SDValue
Craig Topper55b24052012-09-11 06:15:32 +00005099X86TargetLowering::LowerVectorBroadcast(SDValue Op, SelectionDAG &DAG) const {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005100 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005101 return SDValue();
5102
Craig Topper45e1c752013-01-20 00:38:18 +00005103 MVT VT = Op.getValueType().getSimpleVT();
Nadav Rotem154819d2012-04-09 07:45:58 +00005104 DebugLoc dl = Op.getDebugLoc();
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005105
Craig Topper5da8a802012-05-04 05:49:51 +00005106 assert((VT.is128BitVector() || VT.is256BitVector()) &&
5107 "Unsupported vector type for broadcast.");
5108
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005109 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005110 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005111
Nadav Rotem9d68b062012-04-08 12:54:54 +00005112 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005113 default:
5114 // Unknown pattern found.
5115 return SDValue();
5116
5117 case ISD::BUILD_VECTOR: {
5118 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005119 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005120 return SDValue();
5121
Nadav Rotem9d68b062012-04-08 12:54:54 +00005122 Ld = Op.getOperand(0);
5123 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5124 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005125
5126 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005127 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005128 // Constants may have multiple users.
5129 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005130 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005131 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005132 }
5133
5134 case ISD::VECTOR_SHUFFLE: {
5135 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5136
5137 // Shuffles must have a splat mask where the first element is
5138 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005139 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005140 return SDValue();
5141
5142 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005143 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005144 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5145
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005146 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005147 return SDValue();
5148
5149 // Use the register form of the broadcast instruction available on AVX2.
5150 if (VT.is256BitVector())
5151 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5152 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5153 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005154
5155 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005156 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005157 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005158
5159 // The scalar_to_vector node and the suspected
5160 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005161 // Constants may have multiple users.
5162 if (!ConstSplatVal && (!Sc.hasOneUse() || !Ld.hasOneUse()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005163 return SDValue();
5164 break;
5165 }
5166 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005167
Craig Topper7a9a28b2012-08-12 02:23:29 +00005168 bool Is256 = VT.is256BitVector();
Nadav Rotem9d68b062012-04-08 12:54:54 +00005169
5170 // Handle the broadcasting a single constant scalar from the constant pool
5171 // into a vector. On Sandybridge it is still better to load a constant vector
5172 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005173 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005174 EVT CVT = Ld.getValueType();
5175 assert(!CVT.isVector() && "Must not broadcast a vector type");
5176 unsigned ScalarSize = CVT.getSizeInBits();
5177
Craig Topper5da8a802012-05-04 05:49:51 +00005178 if (ScalarSize == 32 || (Is256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005179 const Constant *C = 0;
5180 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5181 C = CI->getConstantIntValue();
5182 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5183 C = CF->getConstantFPValue();
5184
5185 assert(C && "Invalid constant type");
5186
Nadav Rotem154819d2012-04-09 07:45:58 +00005187 SDValue CP = DAG.getConstantPool(C, getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005188 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005189 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005190 MachinePointerInfo::getConstantPool(),
5191 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005192
Nadav Rotem9d68b062012-04-08 12:54:54 +00005193 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5194 }
5195 }
5196
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005197 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005198 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5199
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005200 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005201 if (!IsLoad && Subtarget->hasInt256() &&
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005202 (ScalarSize == 32 || (Is256 && ScalarSize == 64)))
5203 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5204
5205 // The scalar source must be a normal load.
5206 if (!IsLoad)
5207 return SDValue();
5208
Craig Topper5da8a802012-05-04 05:49:51 +00005209 if (ScalarSize == 32 || (Is256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005210 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005211
Craig Toppera9376332012-01-10 08:23:59 +00005212 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005213 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005214 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005215 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005216 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005217 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005218
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005219 // Unsupported broadcast.
5220 return SDValue();
5221}
5222
Evan Chengc3630942009-12-09 21:00:30 +00005223SDValue
Michael Liaofacace82012-10-19 17:15:18 +00005224X86TargetLowering::buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) const {
5225 EVT VT = Op.getValueType();
5226
5227 // Skip if insert_vec_elt is not supported.
5228 if (!isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5229 return SDValue();
5230
5231 DebugLoc DL = Op.getDebugLoc();
5232 unsigned NumElems = Op.getNumOperands();
5233
5234 SDValue VecIn1;
5235 SDValue VecIn2;
5236 SmallVector<unsigned, 4> InsertIndices;
5237 SmallVector<int, 8> Mask(NumElems, -1);
5238
5239 for (unsigned i = 0; i != NumElems; ++i) {
5240 unsigned Opc = Op.getOperand(i).getOpcode();
5241
5242 if (Opc == ISD::UNDEF)
5243 continue;
5244
5245 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5246 // Quit if more than 1 elements need inserting.
5247 if (InsertIndices.size() > 1)
5248 return SDValue();
5249
5250 InsertIndices.push_back(i);
5251 continue;
5252 }
5253
5254 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5255 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5256
5257 // Quit if extracted from vector of different type.
5258 if (ExtractedFromVec.getValueType() != VT)
5259 return SDValue();
5260
5261 // Quit if non-constant index.
5262 if (!isa<ConstantSDNode>(ExtIdx))
5263 return SDValue();
5264
5265 if (VecIn1.getNode() == 0)
5266 VecIn1 = ExtractedFromVec;
5267 else if (VecIn1 != ExtractedFromVec) {
5268 if (VecIn2.getNode() == 0)
5269 VecIn2 = ExtractedFromVec;
5270 else if (VecIn2 != ExtractedFromVec)
5271 // Quit if more than 2 vectors to shuffle
5272 return SDValue();
5273 }
5274
5275 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5276
5277 if (ExtractedFromVec == VecIn1)
5278 Mask[i] = Idx;
5279 else if (ExtractedFromVec == VecIn2)
5280 Mask[i] = Idx + NumElems;
5281 }
5282
5283 if (VecIn1.getNode() == 0)
5284 return SDValue();
5285
5286 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5287 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5288 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5289 unsigned Idx = InsertIndices[i];
5290 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5291 DAG.getIntPtrConstant(Idx));
5292 }
5293
5294 return NV;
5295}
5296
5297SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005298X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005299 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00005300
Craig Topper45e1c752013-01-20 00:38:18 +00005301 MVT VT = Op.getValueType().getSimpleVT();
5302 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005303 unsigned NumElems = Op.getNumOperands();
5304
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005305 // Vectors containing all zeros can be matched by pxor and xorps later
5306 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5307 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5308 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Craig Topper07a27622012-01-22 03:07:48 +00005309 if (VT == MVT::v4i32 || VT == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005310 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005311
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005312 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005313 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005314
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005315 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005316 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5317 // vpcmpeqd on 256-bit vectors.
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005318 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005319 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005320 return Op;
5321
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005322 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005323 }
5324
Nadav Rotem154819d2012-04-09 07:45:58 +00005325 SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005326 if (Broadcast.getNode())
5327 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005328
Owen Andersone50ed302009-08-10 22:56:29 +00005329 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005330
Evan Cheng0db9fe62006-04-25 20:13:52 +00005331 unsigned NumZero = 0;
5332 unsigned NumNonZero = 0;
5333 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005334 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005335 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005336 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005337 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005338 if (Elt.getOpcode() == ISD::UNDEF)
5339 continue;
5340 Values.insert(Elt);
5341 if (Elt.getOpcode() != ISD::Constant &&
5342 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005343 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005344 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005345 NumZero++;
5346 else {
5347 NonZeros |= (1 << i);
5348 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005349 }
5350 }
5351
Chris Lattner97a2a562010-08-26 05:24:29 +00005352 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5353 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005354 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005355
Chris Lattner67f453a2008-03-09 05:42:06 +00005356 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005357 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005358 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005359 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005360
Chris Lattner62098042008-03-09 01:05:04 +00005361 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5362 // the value are obviously zero, truncate the value to i32 and do the
5363 // insertion that way. Only do this if the value is non-constant or if the
5364 // value is a constant being inserted into element 0. It is cheaper to do
5365 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005366 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005367 (!IsAllConstants || Idx == 0)) {
5368 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005369 // Handle SSE only.
5370 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5371 EVT VecVT = MVT::v4i32;
5372 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005373
Chris Lattner62098042008-03-09 01:05:04 +00005374 // Truncate the value (which may itself be a constant) to i32, and
5375 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005376 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005377 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005378 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005379
Chris Lattner62098042008-03-09 01:05:04 +00005380 // Now we have our 32-bit value zero extended in the low element of
5381 // a vector. If Idx != 0, swizzle it into place.
5382 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005383 SmallVector<int, 4> Mask;
5384 Mask.push_back(Idx);
5385 for (unsigned i = 1; i != VecElts; ++i)
5386 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005387 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005388 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005389 }
Craig Topper07a27622012-01-22 03:07:48 +00005390 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005391 }
5392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005393
Chris Lattner19f79692008-03-08 22:59:52 +00005394 // If we have a constant or non-constant insertion into the low element of
5395 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5396 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005397 // depending on what the source datatype is.
5398 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005399 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005400 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005401
5402 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005403 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005404 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005405 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005406 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5407 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005408 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005409 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005410 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5411 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005412 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005413 }
5414
5415 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005416 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005417 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005418 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005419 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005420 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005421 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005422 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005423 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005424 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005425 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005426 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005427 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005428
5429 // Is it a vector logical left shift?
5430 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005431 X86::isZeroNode(Op.getOperand(0)) &&
5432 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005433 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005434 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005435 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005436 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005437 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005438 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005439
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005440 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005441 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005442
Chris Lattner19f79692008-03-08 22:59:52 +00005443 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5444 // is a non-constant being inserted into an element other than the low one,
5445 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5446 // movd/movss) to move this into the low element, then shuffle it into
5447 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005448 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005449 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005450
Evan Cheng0db9fe62006-04-25 20:13:52 +00005451 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005452 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005453 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005454 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005455 MaskVec.push_back(i == Idx ? 0 : 1);
5456 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005457 }
5458 }
5459
Chris Lattner67f453a2008-03-09 05:42:06 +00005460 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005461 if (Values.size() == 1) {
5462 if (EVTBits == 32) {
5463 // Instead of a shuffle like this:
5464 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5465 // Check if it's possible to issue this instead.
5466 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5467 unsigned Idx = CountTrailingZeros_32(NonZeros);
5468 SDValue Item = Op.getOperand(Idx);
5469 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5470 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5471 }
Dan Gohman475871a2008-07-27 21:46:04 +00005472 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005473 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005474
Dan Gohmana3941172007-07-24 22:55:08 +00005475 // A vector full of immediates; various special cases are already
5476 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005477 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005478 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005479
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005480 // For AVX-length vectors, build the individual 128-bit pieces and use
5481 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005482 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005483 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005484 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005485 V.push_back(Op.getOperand(i));
5486
5487 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5488
5489 // Build both the lower and upper subvector.
5490 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5491 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5492 NumElems/2);
5493
5494 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005495 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005496 }
5497
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005498 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005499 if (EVTBits == 64) {
5500 if (NumNonZero == 1) {
5501 // One half is zero or undef.
5502 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005503 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005504 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00005505 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005506 }
Dan Gohman475871a2008-07-27 21:46:04 +00005507 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005508 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005509
5510 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005511 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005512 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005513 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005514 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005515 }
5516
Bill Wendling826f36f2007-03-28 00:57:11 +00005517 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005518 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005519 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005520 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005521 }
5522
5523 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00005524 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005525 if (NumElems == 4 && NumZero > 0) {
5526 for (unsigned i = 0; i < 4; ++i) {
5527 bool isZero = !(NonZeros & (1 << i));
5528 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005529 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005530 else
Dale Johannesenace16102009-02-03 19:33:06 +00005531 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005532 }
5533
5534 for (unsigned i = 0; i < 2; ++i) {
5535 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5536 default: break;
5537 case 0:
5538 V[i] = V[i*2]; // Must be a zero vector.
5539 break;
5540 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005541 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005542 break;
5543 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005544 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005545 break;
5546 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005547 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005548 break;
5549 }
5550 }
5551
Benjamin Kramer9c683542012-01-30 15:16:21 +00005552 bool Reverse1 = (NonZeros & 0x3) == 2;
5553 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5554 int MaskVec[] = {
5555 Reverse1 ? 1 : 0,
5556 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00005557 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
5558 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00005559 };
Nate Begeman9008ca62009-04-27 18:41:29 +00005560 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005561 }
5562
Craig Topper7a9a28b2012-08-12 02:23:29 +00005563 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005564 // Check for a build vector of consecutive loads.
5565 for (unsigned i = 0; i < NumElems; ++i)
5566 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005567
Nate Begemanfdea31a2010-03-24 20:49:50 +00005568 // Check for elements which are consecutive loads.
5569 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5570 if (LD.getNode())
5571 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005572
Michael Liaofacace82012-10-19 17:15:18 +00005573 // Check for a build vector from mostly shuffle plus few inserting.
5574 SDValue Sh = buildFromShuffleMostly(Op, DAG);
5575 if (Sh.getNode())
5576 return Sh;
5577
Michael J. Spencerec38de22010-10-10 22:04:20 +00005578 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00005579 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005580 SDValue Result;
5581 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5582 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5583 else
5584 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005585
Chris Lattner24faf612010-08-28 17:59:08 +00005586 for (unsigned i = 1; i < NumElems; ++i) {
5587 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5588 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005589 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005590 }
5591 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005592 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005593
Chris Lattner6e80e442010-08-28 17:15:43 +00005594 // Otherwise, expand into a number of unpckl*, start by extending each of
5595 // our (non-undef) elements to the full vector width with the element in the
5596 // bottom slot of the vector (which generates no code for SSE).
5597 for (unsigned i = 0; i < NumElems; ++i) {
5598 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5599 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5600 else
5601 V[i] = DAG.getUNDEF(VT);
5602 }
5603
5604 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005605 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5606 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5607 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005608 unsigned EltStride = NumElems >> 1;
5609 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005610 for (unsigned i = 0; i < EltStride; ++i) {
5611 // If V[i+EltStride] is undef and this is the first round of mixing,
5612 // then it is safe to just drop this shuffle: V[i] is already in the
5613 // right place, the one element (since it's the first round) being
5614 // inserted as undef can be dropped. This isn't safe for successive
5615 // rounds because they will permute elements within both vectors.
5616 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5617 EltStride == NumElems/2)
5618 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005619
Chris Lattner6e80e442010-08-28 17:15:43 +00005620 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005621 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005622 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005623 }
5624 return V[0];
5625 }
Dan Gohman475871a2008-07-27 21:46:04 +00005626 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005627}
5628
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005629// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5630// to create 256-bit vectors from two other 128-bit ones.
5631static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5632 DebugLoc dl = Op.getDebugLoc();
Craig Topper45e1c752013-01-20 00:38:18 +00005633 MVT ResVT = Op.getValueType().getSimpleVT();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005634
Craig Topper7a9a28b2012-08-12 02:23:29 +00005635 assert(ResVT.is256BitVector() && "Value type must be 256-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005636
5637 SDValue V1 = Op.getOperand(0);
5638 SDValue V2 = Op.getOperand(1);
5639 unsigned NumElems = ResVT.getVectorNumElements();
5640
Craig Topper4c7972d2012-04-22 18:15:59 +00005641 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005642}
5643
Craig Topper55b24052012-09-11 06:15:32 +00005644static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005645 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005646
5647 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5648 // from two other 128-bit ones.
5649 return LowerAVXCONCAT_VECTORS(Op, DAG);
5650}
5651
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005652// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00005653static SDValue
5654LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
5655 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005656 SDValue V1 = SVOp->getOperand(0);
5657 SDValue V2 = SVOp->getOperand(1);
5658 DebugLoc dl = SVOp->getDebugLoc();
Craig Topper657a99c2013-01-19 23:36:09 +00005659 MVT VT = SVOp->getValueType(0).getSimpleVT();
5660 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00005661 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005662
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005663 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
5664 return SDValue();
5665 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005666 return SDValue();
5667
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005668 // Check the mask for BLEND and build the value.
5669 unsigned MaskValue = 0;
5670 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
5671 unsigned NumLanes = (NumElems-1)/8 + 1;
5672 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00005673
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005674 // Blend for v16i16 should be symetric for the both lanes.
5675 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00005676
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005677 int SndLaneEltIdx = (NumLanes == 2) ?
5678 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005679 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005680
5681 if ((EltIdx == -1 || EltIdx == (int)i) &&
5682 (SndLaneEltIdx == -1 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
5683 continue;
5684
5685 if (((unsigned)EltIdx == (i + NumElems)) &&
5686 (SndLaneEltIdx == -1 ||
5687 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
5688 MaskValue |= (1<<i);
5689 else
Craig Topper1842ba02012-04-23 06:38:28 +00005690 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005691 }
5692
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00005693 // Convert i32 vectors to floating point if it is not AVX2.
5694 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
5695 EVT BlendVT = VT;
5696 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
5697 BlendVT = EVT::getVectorVT(*DAG.getContext(),
5698 EVT::getFloatingPointVT(EltVT.getSizeInBits()),
5699 NumElems);
5700 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
5701 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
5702 }
5703
5704 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
5705 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00005706 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00005707}
5708
Nate Begemanb9a47b82009-02-23 08:49:38 +00005709// v8i16 shuffles - Prefer shuffles in the following order:
5710// 1. [all] pshuflw, pshufhw, optional move
5711// 2. [ssse3] 1 x pshufb
5712// 3. [ssse3] 2 x pshufb + 1 x por
5713// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00005714static SDValue
5715LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
5716 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005717 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005718 SDValue V1 = SVOp->getOperand(0);
5719 SDValue V2 = SVOp->getOperand(1);
5720 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005721 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005722
Nate Begemanb9a47b82009-02-23 08:49:38 +00005723 // Determine if more than 1 of the words in each of the low and high quadwords
5724 // of the result come from the same quadword of one of the two inputs. Undef
5725 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00005726 unsigned LoQuad[] = { 0, 0, 0, 0 };
5727 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00005728 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005729 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00005730 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005731 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005732 MaskVals.push_back(EltIdx);
5733 if (EltIdx < 0) {
5734 ++Quad[0];
5735 ++Quad[1];
5736 ++Quad[2];
5737 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005738 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005739 }
5740 ++Quad[EltIdx / 4];
5741 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005742 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005743
Nate Begemanb9a47b82009-02-23 08:49:38 +00005744 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005745 unsigned MaxQuad = 1;
5746 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005747 if (LoQuad[i] > MaxQuad) {
5748 BestLoQuad = i;
5749 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005750 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005751 }
5752
Nate Begemanb9a47b82009-02-23 08:49:38 +00005753 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005754 MaxQuad = 1;
5755 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005756 if (HiQuad[i] > MaxQuad) {
5757 BestHiQuad = i;
5758 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005759 }
5760 }
5761
Nate Begemanb9a47b82009-02-23 08:49:38 +00005762 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005763 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005764 // single pshufb instruction is necessary. If There are more than 2 input
5765 // quads, disable the next transformation since it does not help SSSE3.
5766 bool V1Used = InputQuads[0] || InputQuads[1];
5767 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00005768 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005769 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00005770 BestLoQuad = InputQuads[0] ? 0 : 1;
5771 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005772 }
5773 if (InputQuads.count() > 2) {
5774 BestLoQuad = -1;
5775 BestHiQuad = -1;
5776 }
5777 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005778
Nate Begemanb9a47b82009-02-23 08:49:38 +00005779 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5780 // the shuffle mask. If a quad is scored as -1, that means that it contains
5781 // words from all 4 input quadwords.
5782 SDValue NewV;
5783 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00005784 int MaskV[] = {
5785 BestLoQuad < 0 ? 0 : BestLoQuad,
5786 BestHiQuad < 0 ? 1 : BestHiQuad
5787 };
Eric Christopherfd179292009-08-27 18:07:15 +00005788 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005789 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5790 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5791 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005792
Nate Begemanb9a47b82009-02-23 08:49:38 +00005793 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5794 // source words for the shuffle, to aid later transformations.
5795 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005796 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005797 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005798 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005799 if (idx != (int)i)
5800 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005801 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005802 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005803 AllWordsInNewV = false;
5804 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005805 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005806
Nate Begemanb9a47b82009-02-23 08:49:38 +00005807 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5808 if (AllWordsInNewV) {
5809 for (int i = 0; i != 8; ++i) {
5810 int idx = MaskVals[i];
5811 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005812 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005813 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005814 if ((idx != i) && idx < 4)
5815 pshufhw = false;
5816 if ((idx != i) && idx > 3)
5817 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005818 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005819 V1 = NewV;
5820 V2Used = false;
5821 BestLoQuad = 0;
5822 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005823 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005824
Nate Begemanb9a47b82009-02-23 08:49:38 +00005825 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5826 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005827 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005828 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5829 unsigned TargetMask = 0;
5830 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005831 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00005832 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5833 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
5834 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005835 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005836 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005837 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005838 }
Eric Christopherfd179292009-08-27 18:07:15 +00005839
Nate Begemanb9a47b82009-02-23 08:49:38 +00005840 // If we have SSSE3, and all words of the result are from 1 input vector,
5841 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5842 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00005843 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005844 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005845
Nate Begemanb9a47b82009-02-23 08:49:38 +00005846 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005847 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005848 // mask, and elements that come from V1 in the V2 mask, so that the two
5849 // results can be OR'd together.
5850 bool TwoInputs = V1Used && V2Used;
5851 for (unsigned i = 0; i != 8; ++i) {
5852 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00005853 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
5854 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00005855 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00005856 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005857 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005858 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005859 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005860 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005861 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005862 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005863 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005864
Nate Begemanb9a47b82009-02-23 08:49:38 +00005865 // Calculate the shuffle mask for the second input, shuffle it, and
5866 // OR it with the first shuffled input.
5867 pshufbMask.clear();
5868 for (unsigned i = 0; i != 8; ++i) {
5869 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00005870 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
5871 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
5872 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
5873 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005874 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005875 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005876 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005877 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005878 MVT::v16i8, &pshufbMask[0], 16));
5879 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005880 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005881 }
5882
5883 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5884 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00005885 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005886 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00005887 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00005888 for (int i = 0; i != 4; ++i) {
5889 int idx = MaskVals[i];
5890 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005891 InOrder.set(i);
5892 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00005893 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005894 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005895 }
5896 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005897 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005898 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005899
Craig Topperdd637ae2012-02-19 05:41:45 +00005900 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5901 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005902 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00005903 NewV.getOperand(0),
5904 getShufflePSHUFLWImmediate(SVOp), DAG);
5905 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005906 }
Eric Christopherfd179292009-08-27 18:07:15 +00005907
Nate Begemanb9a47b82009-02-23 08:49:38 +00005908 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5909 // and update MaskVals with the new element order.
5910 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00005911 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00005912 for (unsigned i = 4; i != 8; ++i) {
5913 int idx = MaskVals[i];
5914 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005915 InOrder.set(i);
5916 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00005917 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005918 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005919 }
5920 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005921 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005922 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005923
Craig Topperdd637ae2012-02-19 05:41:45 +00005924 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5925 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005926 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00005927 NewV.getOperand(0),
5928 getShufflePSHUFHWImmediate(SVOp), DAG);
5929 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005930 }
Eric Christopherfd179292009-08-27 18:07:15 +00005931
Nate Begemanb9a47b82009-02-23 08:49:38 +00005932 // In case BestHi & BestLo were both -1, which means each quadword has a word
5933 // from each of the four input quadwords, calculate the InOrder bitvector now
5934 // before falling through to the insert/extract cleanup.
5935 if (BestLoQuad == -1 && BestHiQuad == -1) {
5936 NewV = V1;
5937 for (int i = 0; i != 8; ++i)
5938 if (MaskVals[i] < 0 || MaskVals[i] == i)
5939 InOrder.set(i);
5940 }
Eric Christopherfd179292009-08-27 18:07:15 +00005941
Nate Begemanb9a47b82009-02-23 08:49:38 +00005942 // The other elements are put in the right place using pextrw and pinsrw.
5943 for (unsigned i = 0; i != 8; ++i) {
5944 if (InOrder[i])
5945 continue;
5946 int EltIdx = MaskVals[i];
5947 if (EltIdx < 0)
5948 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00005949 SDValue ExtOp = (EltIdx < 8) ?
5950 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
5951 DAG.getIntPtrConstant(EltIdx)) :
5952 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005953 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005954 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005955 DAG.getIntPtrConstant(i));
5956 }
5957 return NewV;
5958}
5959
5960// v16i8 shuffles - Prefer shuffles in the following order:
5961// 1. [ssse3] 1 x pshufb
5962// 2. [ssse3] 2 x pshufb + 1 x por
5963// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5964static
Nate Begeman9008ca62009-04-27 18:41:29 +00005965SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005966 SelectionDAG &DAG,
5967 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005968 SDValue V1 = SVOp->getOperand(0);
5969 SDValue V2 = SVOp->getOperand(1);
5970 DebugLoc dl = SVOp->getDebugLoc();
Benjamin Kramered4c8c62012-01-15 13:16:05 +00005971 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00005972
Nate Begemanb9a47b82009-02-23 08:49:38 +00005973 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005974 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005975 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00005976
Nate Begemanb9a47b82009-02-23 08:49:38 +00005977 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topperd0a31172012-01-10 06:37:29 +00005978 if (TLI.getSubtarget()->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005979 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005980
Nate Begemanb9a47b82009-02-23 08:49:38 +00005981 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005982 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005983 //
5984 // Otherwise, we have elements from both input vectors, and must zero out
5985 // elements that come from V2 in the first mask, and V1 in the second mask
5986 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005987 for (unsigned i = 0; i != 16; ++i) {
5988 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00005989 if (EltIdx < 0 || EltIdx >= 16)
5990 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00005991 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005992 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005993 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005994 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005995 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00005996
5997 // As PSHUFB will zero elements with negative indices, it's safe to ignore
5998 // the 2nd operand if it's undefined or zero.
5999 if (V2.getOpcode() == ISD::UNDEF ||
6000 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006001 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006002
Nate Begemanb9a47b82009-02-23 08:49:38 +00006003 // Calculate the shuffle mask for the second input, shuffle it, and
6004 // OR it with the first shuffled input.
6005 pshufbMask.clear();
6006 for (unsigned i = 0; i != 16; ++i) {
6007 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006008 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006009 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006010 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006011 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006012 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006013 MVT::v16i8, &pshufbMask[0], 16));
6014 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006015 }
Eric Christopherfd179292009-08-27 18:07:15 +00006016
Nate Begemanb9a47b82009-02-23 08:49:38 +00006017 // No SSSE3 - Calculate in place words and then fix all out of place words
6018 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6019 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006020 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6021 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006022 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006023 for (int i = 0; i != 8; ++i) {
6024 int Elt0 = MaskVals[i*2];
6025 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006026
Nate Begemanb9a47b82009-02-23 08:49:38 +00006027 // This word of the result is all undef, skip it.
6028 if (Elt0 < 0 && Elt1 < 0)
6029 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006030
Nate Begemanb9a47b82009-02-23 08:49:38 +00006031 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006032 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006033 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006034
Nate Begemanb9a47b82009-02-23 08:49:38 +00006035 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6036 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6037 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006038
6039 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6040 // using a single extract together, load it and store it.
6041 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006042 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006043 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006044 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006045 DAG.getIntPtrConstant(i));
6046 continue;
6047 }
6048
Nate Begemanb9a47b82009-02-23 08:49:38 +00006049 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006050 // source byte is not also odd, shift the extracted word left 8 bits
6051 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006052 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006053 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006054 DAG.getIntPtrConstant(Elt1 / 2));
6055 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006056 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006057 DAG.getConstant(8,
6058 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006059 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006060 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6061 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006062 }
6063 // If Elt0 is defined, extract it from the appropriate source. If the
6064 // source byte is not also even, shift the extracted word right 8 bits. If
6065 // Elt1 was also defined, OR the extracted values together before
6066 // inserting them in the result.
6067 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006068 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006069 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6070 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006071 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006072 DAG.getConstant(8,
6073 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006074 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006075 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6076 DAG.getConstant(0x00FF, MVT::i16));
6077 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006078 : InsElt0;
6079 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006080 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006081 DAG.getIntPtrConstant(i));
6082 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006083 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006084}
6085
Elena Demikhovsky41789462012-09-06 12:42:01 +00006086// v32i8 shuffles - Translate to VPSHUFB if possible.
6087static
6088SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006089 const X86Subtarget *Subtarget,
6090 SelectionDAG &DAG) {
Craig Topper657a99c2013-01-19 23:36:09 +00006091 MVT VT = SVOp->getValueType(0).getSimpleVT();
Elena Demikhovsky41789462012-09-06 12:42:01 +00006092 SDValue V1 = SVOp->getOperand(0);
6093 SDValue V2 = SVOp->getOperand(1);
6094 DebugLoc dl = SVOp->getDebugLoc();
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006095 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006096
6097 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006098 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6099 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006100
Michael Liao471b9172012-10-03 23:43:52 +00006101 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006102 // (1) one of input vector is undefined or zeroinitializer.
6103 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6104 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006105 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006106 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006107 return SDValue();
6108
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006109 if (V1IsAllZero && !V2IsAllZero) {
6110 CommuteVectorShuffleMask(MaskVals, 32);
6111 V1 = V2;
6112 }
6113 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006114 for (unsigned i = 0; i != 32; i++) {
6115 int EltIdx = MaskVals[i];
6116 if (EltIdx < 0 || EltIdx >= 32)
6117 EltIdx = 0x80;
6118 else {
6119 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6120 // Cross lane is not allowed.
6121 return SDValue();
6122 EltIdx &= 0xf;
6123 }
6124 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6125 }
6126 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6127 DAG.getNode(ISD::BUILD_VECTOR, dl,
6128 MVT::v32i8, &pshufbMask[0], 32));
6129}
6130
Evan Cheng7a831ce2007-12-15 03:00:47 +00006131/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006132/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006133/// done when every pair / quad of shuffle mask elements point to elements in
6134/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006135/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006136static
Nate Begeman9008ca62009-04-27 18:41:29 +00006137SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006138 SelectionDAG &DAG) {
Craig Topper11ac1f82012-05-04 04:08:44 +00006139 MVT VT = SVOp->getValueType(0).getSimpleVT();
Craig Topper3b2aba02013-01-20 00:43:42 +00006140 DebugLoc dl = SVOp->getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006141 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006142 MVT NewVT;
6143 unsigned Scale;
6144 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006145 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006146 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6147 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6148 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6149 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6150 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6151 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006152 }
6153
Nate Begeman9008ca62009-04-27 18:41:29 +00006154 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006155 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006156 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006157 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006158 int EltIdx = SVOp->getMaskElt(i+j);
6159 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006160 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006161 if (StartIdx < 0)
6162 StartIdx = (EltIdx / Scale);
6163 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006164 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006165 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006166 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006167 }
6168
Craig Topper11ac1f82012-05-04 04:08:44 +00006169 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6170 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006171 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006172}
6173
Evan Chengd880b972008-05-09 21:53:03 +00006174/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006175///
Craig Topperf84b7502013-01-20 00:50:58 +00006176static SDValue getVZextMovL(MVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006177 SDValue SrcOp, SelectionDAG &DAG,
6178 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006179 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006180 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006181 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006182 LD = dyn_cast<LoadSDNode>(SrcOp);
6183 if (!LD) {
6184 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6185 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006186 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006187 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006188 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006189 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006190 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006191 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006192 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006193 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006194 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6195 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6196 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006197 SrcOp.getOperand(0)
6198 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006199 }
6200 }
6201 }
6202
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006203 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006204 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006205 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006206 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006207}
6208
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006209/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6210/// which could not be matched by any known target speficic shuffle
6211static SDValue
6212LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006213
6214 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6215 if (NewOp.getNode())
6216 return NewOp;
6217
Craig Topper657a99c2013-01-19 23:36:09 +00006218 MVT VT = SVOp->getValueType(0).getSimpleVT();
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006219
Craig Topper8f35c132012-01-20 09:29:03 +00006220 unsigned NumElems = VT.getVectorNumElements();
6221 unsigned NumLaneElems = NumElems / 2;
6222
Craig Topper8f35c132012-01-20 09:29:03 +00006223 DebugLoc dl = SVOp->getDebugLoc();
Craig Topper657a99c2013-01-19 23:36:09 +00006224 MVT EltVT = VT.getVectorElementType();
6225 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006226 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006227
Craig Topper9a2b6e12012-04-06 07:45:23 +00006228 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006229 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006230 // Build a shuffle mask for the output, discovering on the fly which
6231 // input vectors to use as shuffle operands (recorded in InputUsed).
6232 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006233 // out with UseBuildVector set.
6234 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006235 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006236 unsigned LaneStart = l * NumLaneElems;
6237 for (unsigned i = 0; i != NumLaneElems; ++i) {
6238 // The mask element. This indexes into the input.
6239 int Idx = SVOp->getMaskElt(i+LaneStart);
6240 if (Idx < 0) {
6241 // the mask element does not index into any input vector.
6242 Mask.push_back(-1);
6243 continue;
6244 }
Craig Topper8f35c132012-01-20 09:29:03 +00006245
Craig Topper9a2b6e12012-04-06 07:45:23 +00006246 // The input vector this mask element indexes into.
6247 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006248
Craig Topper9a2b6e12012-04-06 07:45:23 +00006249 // Turn the index into an offset from the start of the input vector.
6250 Idx -= Input * NumLaneElems;
6251
6252 // Find or create a shuffle vector operand to hold this input.
6253 unsigned OpNo;
6254 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6255 if (InputUsed[OpNo] == Input)
6256 // This input vector is already an operand.
6257 break;
6258 if (InputUsed[OpNo] < 0) {
6259 // Create a new operand for this input vector.
6260 InputUsed[OpNo] = Input;
6261 break;
6262 }
6263 }
6264
6265 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006266 // More than two input vectors used! Give up on trying to create a
6267 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6268 UseBuildVector = true;
6269 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006270 }
6271
6272 // Add the mask index for the new shuffle vector.
6273 Mask.push_back(Idx + OpNo * NumLaneElems);
6274 }
6275
Craig Topper8ae97ba2012-05-21 06:40:16 +00006276 if (UseBuildVector) {
6277 SmallVector<SDValue, 16> SVOps;
6278 for (unsigned i = 0; i != NumLaneElems; ++i) {
6279 // The mask element. This indexes into the input.
6280 int Idx = SVOp->getMaskElt(i+LaneStart);
6281 if (Idx < 0) {
6282 SVOps.push_back(DAG.getUNDEF(EltVT));
6283 continue;
6284 }
6285
6286 // The input vector this mask element indexes into.
6287 int Input = Idx / NumElems;
6288
6289 // Turn the index into an offset from the start of the input vector.
6290 Idx -= Input * NumElems;
6291
6292 // Extract the vector element by hand.
6293 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6294 SVOp->getOperand(Input),
6295 DAG.getIntPtrConstant(Idx)));
6296 }
6297
6298 // Construct the output using a BUILD_VECTOR.
6299 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6300 SVOps.size());
6301 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006302 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006303 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006304 } else {
6305 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006306 (InputUsed[0] % 2) * NumLaneElems,
6307 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006308 // If only one input was used, use an undefined vector for the other.
6309 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6310 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006311 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006312 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006313 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006314 }
6315
6316 Mask.clear();
6317 }
Craig Topper8f35c132012-01-20 09:29:03 +00006318
6319 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006320 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006321}
6322
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006323/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6324/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006325static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006326LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006327 SDValue V1 = SVOp->getOperand(0);
6328 SDValue V2 = SVOp->getOperand(1);
6329 DebugLoc dl = SVOp->getDebugLoc();
Craig Topper657a99c2013-01-19 23:36:09 +00006330 MVT VT = SVOp->getValueType(0).getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00006331
Craig Topper7a9a28b2012-08-12 02:23:29 +00006332 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006333
Benjamin Kramer9c683542012-01-30 15:16:21 +00006334 std::pair<int, int> Locs[4];
6335 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006336 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006337
Evan Chengace3c172008-07-22 21:13:36 +00006338 unsigned NumHi = 0;
6339 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006340 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006341 int Idx = PermMask[i];
6342 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006343 Locs[i] = std::make_pair(-1, -1);
6344 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006345 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6346 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006347 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006348 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006349 NumLo++;
6350 } else {
6351 Locs[i] = std::make_pair(1, NumHi);
6352 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006353 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006354 NumHi++;
6355 }
6356 }
6357 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006358
Evan Chengace3c172008-07-22 21:13:36 +00006359 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006360 // If no more than two elements come from either vector. This can be
6361 // implemented with two shuffles. First shuffle gather the elements.
6362 // The second shuffle, which takes the first shuffle as both of its
6363 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006364 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006365
Benjamin Kramer9c683542012-01-30 15:16:21 +00006366 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006367
Benjamin Kramer9c683542012-01-30 15:16:21 +00006368 for (unsigned i = 0; i != 4; ++i)
6369 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006370 unsigned Idx = (i < 2) ? 0 : 4;
6371 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006372 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006373 }
Evan Chengace3c172008-07-22 21:13:36 +00006374
Nate Begeman9008ca62009-04-27 18:41:29 +00006375 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006376 }
6377
6378 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006379 // Otherwise, we must have three elements from one vector, call it X, and
6380 // one element from the other, call it Y. First, use a shufps to build an
6381 // intermediate vector with the one element from Y and the element from X
6382 // that will be in the same half in the final destination (the indexes don't
6383 // matter). Then, use a shufps to build the final vector, taking the half
6384 // containing the element from Y from the intermediate, and the other half
6385 // from X.
6386 if (NumHi == 3) {
6387 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006388 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006389 std::swap(V1, V2);
6390 }
6391
6392 // Find the element from V2.
6393 unsigned HiIndex;
6394 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006395 int Val = PermMask[HiIndex];
6396 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006397 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006398 if (Val >= 4)
6399 break;
6400 }
6401
Nate Begeman9008ca62009-04-27 18:41:29 +00006402 Mask1[0] = PermMask[HiIndex];
6403 Mask1[1] = -1;
6404 Mask1[2] = PermMask[HiIndex^1];
6405 Mask1[3] = -1;
6406 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006407
6408 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006409 Mask1[0] = PermMask[0];
6410 Mask1[1] = PermMask[1];
6411 Mask1[2] = HiIndex & 1 ? 6 : 4;
6412 Mask1[3] = HiIndex & 1 ? 4 : 6;
6413 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006414 }
Craig Topper69947b92012-04-23 06:57:04 +00006415
6416 Mask1[0] = HiIndex & 1 ? 2 : 0;
6417 Mask1[1] = HiIndex & 1 ? 0 : 2;
6418 Mask1[2] = PermMask[2];
6419 Mask1[3] = PermMask[3];
6420 if (Mask1[2] >= 0)
6421 Mask1[2] += 4;
6422 if (Mask1[3] >= 0)
6423 Mask1[3] += 4;
6424 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006425 }
6426
6427 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006428 int LoMask[] = { -1, -1, -1, -1 };
6429 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006430
Benjamin Kramer9c683542012-01-30 15:16:21 +00006431 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006432 unsigned MaskIdx = 0;
6433 unsigned LoIdx = 0;
6434 unsigned HiIdx = 2;
6435 for (unsigned i = 0; i != 4; ++i) {
6436 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006437 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006438 MaskIdx = 1;
6439 LoIdx = 0;
6440 HiIdx = 2;
6441 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006442 int Idx = PermMask[i];
6443 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006444 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006445 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006446 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006447 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006448 LoIdx++;
6449 } else {
6450 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006451 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006452 HiIdx++;
6453 }
6454 }
6455
Nate Begeman9008ca62009-04-27 18:41:29 +00006456 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6457 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006458 int MaskOps[] = { -1, -1, -1, -1 };
6459 for (unsigned i = 0; i != 4; ++i)
6460 if (Locs[i].first != -1)
6461 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006462 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006463}
6464
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006465static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006466 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006467 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006468
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006469 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6470 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006471 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6472 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6473 // BUILD_VECTOR (load), undef
6474 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006475
6476 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006477}
6478
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006479static
Evan Cheng835580f2010-10-07 20:50:20 +00006480SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6481 EVT VT = Op.getValueType();
6482
6483 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006484 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6485 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006486 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6487 V1, DAG));
6488}
6489
6490static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006491SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00006492 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006493 SDValue V1 = Op.getOperand(0);
6494 SDValue V2 = Op.getOperand(1);
6495 EVT VT = Op.getValueType();
6496
6497 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6498
Craig Topper1accb7e2012-01-10 06:54:16 +00006499 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006500 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6501
Evan Cheng0899f5c2011-08-31 02:05:24 +00006502 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6503 return DAG.getNode(ISD::BITCAST, dl, VT,
6504 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6505 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6506 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006507}
6508
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006509static
6510SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6511 SDValue V1 = Op.getOperand(0);
6512 SDValue V2 = Op.getOperand(1);
6513 EVT VT = Op.getValueType();
6514
6515 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6516 "unsupported shuffle type");
6517
6518 if (V2.getOpcode() == ISD::UNDEF)
6519 V2 = V1;
6520
6521 // v4i32 or v4f32
6522 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6523}
6524
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006525static
Craig Topper1accb7e2012-01-10 06:54:16 +00006526SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006527 SDValue V1 = Op.getOperand(0);
6528 SDValue V2 = Op.getOperand(1);
6529 EVT VT = Op.getValueType();
6530 unsigned NumElems = VT.getVectorNumElements();
6531
6532 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6533 // operand of these instructions is only memory, so check if there's a
6534 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6535 // same masks.
6536 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006537
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006538 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006539 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006540 CanFoldLoad = true;
6541
6542 // When V1 is a load, it can be folded later into a store in isel, example:
6543 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6544 // turns into:
6545 // (MOVLPSmr addr:$src1, VR128:$src2)
6546 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00006547 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006548 CanFoldLoad = true;
6549
Dan Gohman65fd6562011-11-03 21:49:52 +00006550 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006551 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00006552 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006553 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6554
6555 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00006556 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00006557 if (SVOp->getMaskElt(1) != -1)
6558 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006559 }
6560
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006561 // movl and movlp will both match v2i64, but v2i64 is never matched by
6562 // movl earlier because we make it strict to avoid messing with the movlp load
6563 // folding logic (see the code above getMOVLP call). Match it here then,
6564 // this is horrible, but will stay like this until we move all shuffle
6565 // matching to x86 specific nodes. Note that for the 1st condition all
6566 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00006567 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00006568 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6569 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00006570 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006571 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006572 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006573 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006574
6575 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6576
6577 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00006578 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00006579 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006580}
6581
Michael Liaod9d09602012-10-23 17:34:00 +00006582// Reduce a vector shuffle to zext.
6583SDValue
Craig Topper00a312c2013-01-19 23:14:09 +00006584X86TargetLowering::LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
Michael Liaod9d09602012-10-23 17:34:00 +00006585 // PMOVZX is only available from SSE41.
6586 if (!Subtarget->hasSSE41())
6587 return SDValue();
6588
6589 EVT VT = Op.getValueType();
6590
6591 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006592 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00006593 return SDValue();
6594
6595 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6596 DebugLoc DL = Op.getDebugLoc();
6597 SDValue V1 = Op.getOperand(0);
6598 SDValue V2 = Op.getOperand(1);
6599 unsigned NumElems = VT.getVectorNumElements();
6600
6601 // Extending is an unary operation and the element type of the source vector
6602 // won't be equal to or larger than i64.
6603 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
6604 VT.getVectorElementType() == MVT::i64)
6605 return SDValue();
6606
6607 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
6608 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00006609 while ((1U << Shift) < NumElems) {
6610 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00006611 break;
6612 Shift += 1;
6613 // The maximal ratio is 8, i.e. from i8 to i64.
6614 if (Shift > 3)
6615 return SDValue();
6616 }
6617
6618 // Check the shuffle mask.
6619 unsigned Mask = (1U << Shift) - 1;
6620 for (unsigned i = 0; i != NumElems; ++i) {
6621 int EltIdx = SVOp->getMaskElt(i);
6622 if ((i & Mask) != 0 && EltIdx != -1)
6623 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00006624 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00006625 return SDValue();
6626 }
6627
6628 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
6629 EVT NeVT = EVT::getIntegerVT(*DAG.getContext(), NBits);
6630 EVT NVT = EVT::getVectorVT(*DAG.getContext(), NeVT, NumElems >> Shift);
6631
6632 if (!isTypeLegal(NVT))
6633 return SDValue();
6634
6635 // Simplify the operand as it's prepared to be fed into shuffle.
6636 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
6637 if (V1.getOpcode() == ISD::BITCAST &&
6638 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
6639 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6640 V1.getOperand(0)
6641 .getOperand(0).getValueType().getSizeInBits() == SignificantBits) {
6642 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
6643 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00006644 ConstantSDNode *CIdx =
6645 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00006646 // If it's foldable, i.e. normal load with single use, we will let code
6647 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00006648 if (CIdx && CIdx->getZExtValue() == 0 &&
6649 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse()))
Michael Liaod9d09602012-10-23 17:34:00 +00006650 V1 = DAG.getNode(ISD::BITCAST, DL, V1.getValueType(), V);
6651 }
6652
6653 return DAG.getNode(ISD::BITCAST, DL, VT,
6654 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
6655}
6656
Nadav Rotem154819d2012-04-09 07:45:58 +00006657SDValue
6658X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006659 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper657a99c2013-01-19 23:36:09 +00006660 MVT VT = Op.getValueType().getSimpleVT();
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006661 DebugLoc dl = Op.getDebugLoc();
6662 SDValue V1 = Op.getOperand(0);
6663 SDValue V2 = Op.getOperand(1);
6664
6665 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006666 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006667
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006668 // Handle splat operations
6669 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006670 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006671
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006672 // Use vbroadcast whenever the splat comes from a foldable load
Nadav Rotem154819d2012-04-09 07:45:58 +00006673 SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00006674 if (Broadcast.getNode())
6675 return Broadcast;
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006676
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006677 // Handle splats by matching through known shuffle masks
Craig Topper5a529e42013-01-18 06:44:29 +00006678 if ((VT.is128BitVector() && NumElem <= 4) ||
6679 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006680 return SDValue();
6681
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006682 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006683 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006684 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006685
Michael Liaod9d09602012-10-23 17:34:00 +00006686 // Check integer expanding shuffles.
Craig Topper00a312c2013-01-19 23:14:09 +00006687 SDValue NewOp = LowerVectorIntExtend(Op, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00006688 if (NewOp.getNode())
6689 return NewOp;
6690
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006691 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6692 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00006693 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
6694 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00006695 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006696 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006697 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006698 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00006699 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006700 // FIXME: Figure out a cleaner way to do this.
6701 // Try to make use of movq to zero out the top part.
6702 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00006703 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006704 if (NewOp.getNode()) {
Craig Topper657a99c2013-01-19 23:36:09 +00006705 MVT NewVT = NewOp.getValueType().getSimpleVT();
Craig Topper5aaffa82012-02-19 02:53:47 +00006706 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
6707 NewVT, true, false))
6708 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006709 DAG, Subtarget, dl);
6710 }
6711 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00006712 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00006713 if (NewOp.getNode()) {
Craig Topper657a99c2013-01-19 23:36:09 +00006714 MVT NewVT = NewOp.getValueType().getSimpleVT();
Craig Topper5aaffa82012-02-19 02:53:47 +00006715 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
6716 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
6717 DAG, Subtarget, dl);
6718 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006719 }
6720 }
6721 return SDValue();
6722}
6723
Dan Gohman475871a2008-07-27 21:46:04 +00006724SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006725X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006726 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006727 SDValue V1 = Op.getOperand(0);
6728 SDValue V2 = Op.getOperand(1);
Craig Topper657a99c2013-01-19 23:36:09 +00006729 MVT VT = Op.getValueType().getSimpleVT();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006730 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006731 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00006732 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006733 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006734 bool V1IsSplat = false;
6735 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00006736 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006737 bool HasFp256 = Subtarget->hasFp256();
6738 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006739 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00006740 bool OptForSize = MF.getFunction()->getAttributes().
6741 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006742
Craig Topper3426a3e2011-11-14 06:46:21 +00006743 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006744
Elena Demikhovsky16db7102012-01-12 20:33:10 +00006745 if (V1IsUndef && V2IsUndef)
6746 return DAG.getUNDEF(VT);
6747
6748 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00006749
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006750 // Vector shuffle lowering takes 3 steps:
6751 //
6752 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6753 // narrowing and commutation of operands should be handled.
6754 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6755 // shuffle nodes.
6756 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6757 // so the shuffle can be broken into other shuffles and the legalizer can
6758 // try the lowering again.
6759 //
Craig Topper3426a3e2011-11-14 06:46:21 +00006760 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006761 // be matched during isel, all of them must be converted to a target specific
6762 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006763
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006764 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6765 // narrowing and commutation of operands should be handled. The actual code
6766 // doesn't include all of those, work in progress...
Nadav Rotem154819d2012-04-09 07:45:58 +00006767 SDValue NewOp = NormalizeVectorShuffle(Op, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006768 if (NewOp.getNode())
6769 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006770
Craig Topper5aaffa82012-02-19 02:53:47 +00006771 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
6772
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006773 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6774 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006775 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006776 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006777 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006778 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006779
Craig Topperdd637ae2012-02-19 05:41:45 +00006780 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00006781 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006782 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006783
Craig Topperdd637ae2012-02-19 05:41:45 +00006784 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006785 return getMOVHighToLow(Op, dl, DAG);
6786
6787 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006788 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006789 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00006790 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006791
Craig Topper5aaffa82012-02-19 02:53:47 +00006792 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006793 // The actual implementation will match the mask in the if above and then
6794 // during isel it can match several different instructions, not only pshufd
6795 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00006796 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6797 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006798
Craig Topper5aaffa82012-02-19 02:53:47 +00006799 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006800
Craig Topper1accb7e2012-01-10 06:54:16 +00006801 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006802 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6803
Nadav Roteme4ccfef2012-12-07 19:01:13 +00006804 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
6805 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
6806 DAG);
6807
Craig Topperb3982da2011-12-31 23:50:21 +00006808 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006809 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006810 }
Eric Christopherfd179292009-08-27 18:07:15 +00006811
Evan Chengf26ffe92008-05-29 08:22:04 +00006812 // Check if this can be converted into a logical shift.
6813 bool isLeft = false;
6814 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006815 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00006816 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006817 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006818 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006819 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00006820 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006821 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006822 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006823 }
Eric Christopherfd179292009-08-27 18:07:15 +00006824
Craig Topper5aaffa82012-02-19 02:53:47 +00006825 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006826 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006827 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00006828 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00006829 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006830 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6831
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006832 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006833 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6834 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006835 }
Eric Christopherfd179292009-08-27 18:07:15 +00006836
Nate Begeman9008ca62009-04-27 18:41:29 +00006837 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006838 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00006839 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006840
Craig Topperdd637ae2012-02-19 05:41:45 +00006841 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006842 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006843
Craig Topperdd637ae2012-02-19 05:41:45 +00006844 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006845 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006846
Craig Topperdd637ae2012-02-19 05:41:45 +00006847 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006848 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006849
Craig Topperdd637ae2012-02-19 05:41:45 +00006850 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00006851 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006852
Craig Topperdd637ae2012-02-19 05:41:45 +00006853 if (ShouldXformToMOVHLPS(M, VT) ||
6854 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00006855 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006856
Evan Chengf26ffe92008-05-29 08:22:04 +00006857 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00006858 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00006859 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006860 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006861 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006862 }
Eric Christopherfd179292009-08-27 18:07:15 +00006863
Evan Cheng9eca5e82006-10-25 21:49:50 +00006864 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006865 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6866 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006867 V1IsSplat = isSplatVector(V1.getNode());
6868 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006869
Chris Lattner8a594482007-11-25 00:24:49 +00006870 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00006871 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
6872 CommuteVectorShuffleMask(M, NumElems);
6873 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006874 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006875 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006876 }
6877
Craig Topperbeabc6c2011-12-05 06:56:46 +00006878 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006879 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006880 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006881 return V1;
6882 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6883 // the instruction selector will not match, so get a canonical MOVL with
6884 // swapped operands to undo the commute.
6885 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006886 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006887
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006888 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006889 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006890
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006891 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006892 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006893
Evan Cheng9bbbb982006-10-25 20:48:19 +00006894 if (V2IsSplat) {
6895 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006896 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00006897 // new vector_shuffle with the corrected mask.p
6898 SmallVector<int, 8> NewMask(M.begin(), M.end());
6899 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006900 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00006901 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006902 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00006903 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006904 }
6905
Evan Cheng9eca5e82006-10-25 21:49:50 +00006906 if (Commuted) {
6907 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006908 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00006909 CommuteVectorShuffleMask(M, NumElems);
6910 std::swap(V1, V2);
6911 std::swap(V1IsSplat, V2IsSplat);
6912 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006913
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006914 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00006915 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006916
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006917 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00006918 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006919 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006920
Nate Begeman9008ca62009-04-27 18:41:29 +00006921 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006922 if (!V2IsUndef && (isSHUFPMask(M, VT, HasFp256, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00006923 return CommuteVectorShuffle(SVOp, DAG);
6924
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006925 // The checks below are all present in isShuffleMaskLegal, but they are
6926 // inlined here right now to enable us to directly emit target specific
6927 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006928
Craig Topper0e2037b2012-01-20 05:53:00 +00006929 if (isPALIGNRMask(M, VT, Subtarget))
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006930 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
Craig Topperd93e4c32011-12-11 19:12:35 +00006931 getShufflePALIGNRImmediate(SVOp),
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006932 DAG);
6933
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006934 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6935 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00006936 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00006937 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006938 }
6939
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006940 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006941 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00006942 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006943 DAG);
6944
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006945 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006946 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00006947 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006948 DAG);
6949
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006950 if (isSHUFPMask(M, VT, HasFp256))
Craig Topperb3982da2011-12-31 23:50:21 +00006951 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00006952 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006953
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006954 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006955 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006956 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00006957 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006958
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006959 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006960 // Generate target specific nodes for 128 or 256-bit shuffles only
6961 // supported in the AVX instruction set.
6962 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006963
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006964 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006965 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006966 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6967
Craig Topper70b883b2011-11-28 10:14:51 +00006968 // Handle VPERMILPS/D* permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006969 if (isVPERMILPMask(M, VT, HasFp256)) {
6970 if (HasInt256 && VT == MVT::v8i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00006971 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00006972 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00006973 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00006974 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00006975 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006976
Craig Topper70b883b2011-11-28 10:14:51 +00006977 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006978 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00006979 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00006980 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006981
Craig Topper1842ba02012-04-23 06:38:28 +00006982 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006983 if (BlendOp.getNode())
6984 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00006985
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006986 if (V2IsUndef && HasInt256 && (VT == MVT::v8i32 || VT == MVT::v8f32)) {
Craig Topper095c5282012-04-15 23:48:57 +00006987 SmallVector<SDValue, 8> permclMask;
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00006988 for (unsigned i = 0; i != 8; ++i) {
Craig Topper095c5282012-04-15 23:48:57 +00006989 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MVT::i32));
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00006990 }
Craig Topper92040742012-04-16 06:43:40 +00006991 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32,
6992 &permclMask[0], 8);
6993 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
Craig Topper8325c112012-04-16 00:41:45 +00006994 return DAG.getNode(X86ISD::VPERMV, dl, VT,
Craig Topper92040742012-04-16 06:43:40 +00006995 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00006996 }
Craig Topper095c5282012-04-15 23:48:57 +00006997
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006998 if (V2IsUndef && HasInt256 && (VT == MVT::v4i64 || VT == MVT::v4f64))
Craig Topper8325c112012-04-16 00:41:45 +00006999 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1,
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007000 getShuffleCLImmediate(SVOp), DAG);
7001
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007002 //===--------------------------------------------------------------------===//
7003 // Since no target specific shuffle was selected for this generic one,
7004 // lower it into other known shuffles. FIXME: this isn't true yet, but
7005 // this is the plan.
7006 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007007
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007008 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7009 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007010 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007011 if (NewOp.getNode())
7012 return NewOp;
7013 }
7014
7015 if (VT == MVT::v16i8) {
7016 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
7017 if (NewOp.getNode())
7018 return NewOp;
7019 }
7020
Elena Demikhovsky41789462012-09-06 12:42:01 +00007021 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007022 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007023 if (NewOp.getNode())
7024 return NewOp;
7025 }
7026
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007027 // Handle all 128-bit wide vectors with 4 elements, and match them with
7028 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007029 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007030 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7031
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007032 // Handle general 256-bit shuffles
7033 if (VT.is256BitVector())
7034 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7035
Dan Gohman475871a2008-07-27 21:46:04 +00007036 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007037}
7038
Craig Topperf84b7502013-01-20 00:50:58 +00007039static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper45e1c752013-01-20 00:38:18 +00007040 MVT VT = Op.getValueType().getSimpleVT();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007041 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007042
Craig Topper45e1c752013-01-20 00:38:18 +00007043 if (!Op.getOperand(0).getValueType().getSimpleVT().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007044 return SDValue();
7045
Duncan Sands83ec4b62008-06-06 12:08:01 +00007046 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007047 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007048 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007049 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007050 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007051 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007052 }
7053
7054 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007055 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7056 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7057 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007058 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7059 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007060 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007061 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007062 Op.getOperand(0)),
7063 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007064 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007065 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007066 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007067 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007068 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007069 }
7070
7071 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007072 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7073 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007074 // result has a single use which is a store or a bitcast to i32. And in
7075 // the case of a store, it's not worth it if the index is a constant 0,
7076 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007077 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007078 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007079 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007080 if ((User->getOpcode() != ISD::STORE ||
7081 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7082 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007083 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007084 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007085 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007086 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007087 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007088 Op.getOperand(0)),
7089 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007090 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007091 }
7092
7093 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007094 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007095 if (isa<ConstantSDNode>(Op.getOperand(1)))
7096 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007097 }
Dan Gohman475871a2008-07-27 21:46:04 +00007098 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007099}
7100
Dan Gohman475871a2008-07-27 21:46:04 +00007101SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007102X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7103 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007104 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00007105 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007106
David Greene74a579d2011-02-10 16:57:36 +00007107 SDValue Vec = Op.getOperand(0);
Craig Topper45e1c752013-01-20 00:38:18 +00007108 MVT VecVT = Vec.getValueType().getSimpleVT();
David Greene74a579d2011-02-10 16:57:36 +00007109
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007110 // If this is a 256-bit vector result, first extract the 128-bit vector and
7111 // then extract the element from the 128-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007112 if (VecVT.is256BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007113 DebugLoc dl = Op.getNode()->getDebugLoc();
7114 unsigned NumElems = VecVT.getVectorNumElements();
7115 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00007116 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7117
7118 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007119 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00007120
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007121 if (IdxVal >= NumElems/2)
7122 IdxVal -= NumElems/2;
David Greene74a579d2011-02-10 16:57:36 +00007123 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007124 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007125 }
7126
Craig Topper7a9a28b2012-08-12 02:23:29 +00007127 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007128
Craig Topperd0a31172012-01-10 06:37:29 +00007129 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007130 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007131 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007132 return Res;
7133 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007134
Craig Topper45e1c752013-01-20 00:38:18 +00007135 MVT VT = Op.getValueType().getSimpleVT();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007136 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007137 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007138 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007139 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007140 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007141 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007142 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7143 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007144 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007145 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007146 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007147 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007148 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007149 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007150 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007151 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007152 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007153 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007154 }
7155
7156 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007157 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007158 if (Idx == 0)
7159 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007160
Evan Cheng0db9fe62006-04-25 20:13:52 +00007161 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007162 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper45e1c752013-01-20 00:38:18 +00007163 MVT VVT = Op.getOperand(0).getValueType().getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00007164 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007165 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007166 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007167 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007168 }
7169
7170 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007171 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7172 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7173 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007174 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007175 if (Idx == 0)
7176 return Op;
7177
7178 // UNPCKHPD the element to the lowest double word, then movsd.
7179 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7180 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007181 int Mask[2] = { 1, -1 };
Craig Topper45e1c752013-01-20 00:38:18 +00007182 MVT VVT = Op.getOperand(0).getValueType().getSimpleVT();
Eric Christopherfd179292009-08-27 18:07:15 +00007183 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007184 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007185 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007186 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007187 }
7188
Dan Gohman475871a2008-07-27 21:46:04 +00007189 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007190}
7191
Craig Topperf84b7502013-01-20 00:50:58 +00007192static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper45e1c752013-01-20 00:38:18 +00007193 MVT VT = Op.getValueType().getSimpleVT();
7194 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007195 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007196
Dan Gohman475871a2008-07-27 21:46:04 +00007197 SDValue N0 = Op.getOperand(0);
7198 SDValue N1 = Op.getOperand(1);
7199 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007200
Craig Topper7a9a28b2012-08-12 02:23:29 +00007201 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007202 return SDValue();
7203
Dan Gohman8a55ce42009-09-23 21:02:20 +00007204 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007205 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007206 unsigned Opc;
7207 if (VT == MVT::v8i16)
7208 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007209 else if (VT == MVT::v16i8)
7210 Opc = X86ISD::PINSRB;
7211 else
7212 Opc = X86ISD::PINSRB;
7213
Nate Begeman14d12ca2008-02-11 04:19:36 +00007214 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7215 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007216 if (N1.getValueType() != MVT::i32)
7217 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7218 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007219 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007220 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007221 }
7222
7223 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007224 // Bits [7:6] of the constant are the source select. This will always be
7225 // zero here. The DAG Combiner may combine an extract_elt index into these
7226 // bits. For example (insert (extract, 3), 2) could be matched by putting
7227 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007228 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007229 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007230 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007231 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007232 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007233 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007234 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007235 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007236 }
7237
7238 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007239 // PINSR* works with constant index.
7240 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007241 }
Dan Gohman475871a2008-07-27 21:46:04 +00007242 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007243}
7244
Dan Gohman475871a2008-07-27 21:46:04 +00007245SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007246X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper45e1c752013-01-20 00:38:18 +00007247 MVT VT = Op.getValueType().getSimpleVT();
7248 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007249
David Greene6b381262011-02-09 15:32:06 +00007250 DebugLoc dl = Op.getDebugLoc();
7251 SDValue N0 = Op.getOperand(0);
7252 SDValue N1 = Op.getOperand(1);
7253 SDValue N2 = Op.getOperand(2);
7254
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007255 // If this is a 256-bit vector result, first extract the 128-bit vector,
7256 // insert the element into the extracted half and then place it back.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007257 if (VT.is256BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007258 if (!isa<ConstantSDNode>(N2))
7259 return SDValue();
7260
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007261 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007262 unsigned NumElems = VT.getVectorNumElements();
7263 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007264 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007265
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007266 // Insert the element into the desired half.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007267 bool Upper = IdxVal >= NumElems/2;
7268 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7269 DAG.getConstant(Upper ? IdxVal-NumElems/2 : IdxVal, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007270
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007271 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007272 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007273 }
7274
Craig Topperd0a31172012-01-10 06:37:29 +00007275 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007276 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7277
Dan Gohman8a55ce42009-09-23 21:02:20 +00007278 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007279 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007280
Dan Gohman8a55ce42009-09-23 21:02:20 +00007281 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007282 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7283 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007284 if (N1.getValueType() != MVT::i32)
7285 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7286 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007287 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007288 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007289 }
Dan Gohman475871a2008-07-27 21:46:04 +00007290 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007291}
7292
Craig Topper55b24052012-09-11 06:15:32 +00007293static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007294 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007295 DebugLoc dl = Op.getDebugLoc();
Craig Topper45e1c752013-01-20 00:38:18 +00007296 MVT OpVT = Op.getValueType().getSimpleVT();
David Greene2fcdfb42011-02-10 23:11:29 +00007297
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007298 // If this is a 256-bit vector result, first insert into a 128-bit
7299 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007300 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007301 // Insert into a 128-bit vector.
7302 EVT VT128 = EVT::getVectorVT(*Context,
7303 OpVT.getVectorElementType(),
7304 OpVT.getVectorNumElements() / 2);
7305
7306 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7307
7308 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007309 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007310 }
7311
Craig Topperd77d2fe2012-04-29 20:22:05 +00007312 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007313 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007314 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007315
Owen Anderson825b72b2009-08-11 20:47:22 +00007316 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007317 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007318 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007319 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007320}
7321
David Greene91585092011-01-26 15:38:49 +00007322// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7323// a simple subregister reference or explicit instructions to grab
7324// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007325static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7326 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007327 if (Subtarget->hasFp256()) {
David Greenea5f26012011-02-07 19:36:54 +00007328 DebugLoc dl = Op.getNode()->getDebugLoc();
7329 SDValue Vec = Op.getNode()->getOperand(0);
7330 SDValue Idx = Op.getNode()->getOperand(1);
7331
Craig Topper7a9a28b2012-08-12 02:23:29 +00007332 if (Op.getNode()->getValueType(0).is128BitVector() &&
7333 Vec.getNode()->getValueType(0).is256BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007334 isa<ConstantSDNode>(Idx)) {
7335 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7336 return Extract128BitVector(Vec, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007337 }
David Greene91585092011-01-26 15:38:49 +00007338 }
7339 return SDValue();
7340}
7341
David Greenecfe33c42011-01-26 19:13:22 +00007342// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7343// simple superregister reference or explicit instructions to insert
7344// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007345static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7346 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007347 if (Subtarget->hasFp256()) {
David Greenecfe33c42011-01-26 19:13:22 +00007348 DebugLoc dl = Op.getNode()->getDebugLoc();
7349 SDValue Vec = Op.getNode()->getOperand(0);
7350 SDValue SubVec = Op.getNode()->getOperand(1);
7351 SDValue Idx = Op.getNode()->getOperand(2);
7352
Craig Topper7a9a28b2012-08-12 02:23:29 +00007353 if (Op.getNode()->getValueType(0).is256BitVector() &&
7354 SubVec.getNode()->getValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007355 isa<ConstantSDNode>(Idx)) {
7356 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7357 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007358 }
7359 }
7360 return SDValue();
7361}
7362
Bill Wendling056292f2008-09-16 21:48:12 +00007363// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7364// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7365// one of the above mentioned nodes. It has to be wrapped because otherwise
7366// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7367// be used to form addressing mode. These wrapped nodes will be selected
7368// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007369SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007370X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007371 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007372
Chris Lattner41621a22009-06-26 19:22:52 +00007373 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7374 // global base reg.
7375 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007376 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007377 CodeModel::Model M = getTargetMachine().getCodeModel();
7378
Chris Lattner4f066492009-07-11 20:29:19 +00007379 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007380 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007381 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007382 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007383 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007384 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007385 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007386
Evan Cheng1606e8e2009-03-13 07:51:59 +00007387 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007388 CP->getAlignment(),
7389 CP->getOffset(), OpFlag);
7390 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00007391 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007392 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007393 if (OpFlag) {
7394 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007395 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007396 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007397 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007398 }
7399
7400 return Result;
7401}
7402
Dan Gohmand858e902010-04-17 15:26:15 +00007403SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007404 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007405
Chris Lattner18c59872009-06-27 04:16:01 +00007406 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7407 // global base reg.
7408 unsigned char OpFlag = 0;
7409 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007410 CodeModel::Model M = getTargetMachine().getCodeModel();
7411
Chris Lattner4f066492009-07-11 20:29:19 +00007412 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007413 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007414 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007415 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007416 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007417 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007418 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007419
Chris Lattner18c59872009-06-27 04:16:01 +00007420 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7421 OpFlag);
7422 DebugLoc DL = JT->getDebugLoc();
7423 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007424
Chris Lattner18c59872009-06-27 04:16:01 +00007425 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007426 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007427 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7428 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007429 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007430 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007431
Chris Lattner18c59872009-06-27 04:16:01 +00007432 return Result;
7433}
7434
7435SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007436X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007437 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007438
Chris Lattner18c59872009-06-27 04:16:01 +00007439 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7440 // global base reg.
7441 unsigned char OpFlag = 0;
7442 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007443 CodeModel::Model M = getTargetMachine().getCodeModel();
7444
Chris Lattner4f066492009-07-11 20:29:19 +00007445 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007446 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7447 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7448 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007449 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007450 } else if (Subtarget->isPICStyleGOT()) {
7451 OpFlag = X86II::MO_GOT;
7452 } else if (Subtarget->isPICStyleStubPIC()) {
7453 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7454 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7455 OpFlag = X86II::MO_DARWIN_NONLAZY;
7456 }
Eric Christopherfd179292009-08-27 18:07:15 +00007457
Chris Lattner18c59872009-06-27 04:16:01 +00007458 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007459
Chris Lattner18c59872009-06-27 04:16:01 +00007460 DebugLoc DL = Op.getDebugLoc();
7461 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007462
Chris Lattner18c59872009-06-27 04:16:01 +00007463 // With PIC, the address is actually $g + Offset.
7464 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007465 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007466 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7467 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007468 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007469 Result);
7470 }
Eric Christopherfd179292009-08-27 18:07:15 +00007471
Eli Friedman586272d2011-08-11 01:48:05 +00007472 // For symbols that require a load from a stub to get the address, emit the
7473 // load.
7474 if (isGlobalStubReference(OpFlag))
7475 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007476 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00007477
Chris Lattner18c59872009-06-27 04:16:01 +00007478 return Result;
7479}
7480
Dan Gohman475871a2008-07-27 21:46:04 +00007481SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007482X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007483 // Create the TargetBlockAddressAddress node.
7484 unsigned char OpFlags =
7485 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007486 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007487 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00007488 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Dan Gohman29cbade2009-11-20 23:18:13 +00007489 DebugLoc dl = Op.getDebugLoc();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00007490 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
7491 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00007492
Dan Gohmanf705adb2009-10-30 01:28:02 +00007493 if (Subtarget->isPICStyleRIPRel() &&
7494 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007495 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7496 else
7497 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007498
Dan Gohman29cbade2009-11-20 23:18:13 +00007499 // With PIC, the address is actually $g + Offset.
7500 if (isGlobalRelativeToPICBase(OpFlags)) {
7501 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7502 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7503 Result);
7504 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007505
7506 return Result;
7507}
7508
7509SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007510X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00007511 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007512 // Create the TargetGlobalAddress node, folding in the constant
7513 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007514 unsigned char OpFlags =
7515 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007516 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007517 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007518 if (OpFlags == X86II::MO_NO_FLAG &&
7519 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007520 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007521 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007522 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007523 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007524 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007525 }
Eric Christopherfd179292009-08-27 18:07:15 +00007526
Chris Lattner4f066492009-07-11 20:29:19 +00007527 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007528 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007529 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7530 else
7531 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007532
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007533 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007534 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007535 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7536 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007537 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007538 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007539
Chris Lattner36c25012009-07-10 07:34:39 +00007540 // For globals that require a load from a stub to get the address, emit the
7541 // load.
7542 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007543 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007544 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007545
Dan Gohman6520e202008-10-18 02:06:02 +00007546 // If there was a non-zero offset that we didn't fold, create an explicit
7547 // addition for it.
7548 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007549 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007550 DAG.getConstant(Offset, getPointerTy()));
7551
Evan Cheng0db9fe62006-04-25 20:13:52 +00007552 return Result;
7553}
7554
Evan Chengda43bcf2008-09-24 00:05:32 +00007555SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007556X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007557 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007558 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007559 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007560}
7561
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007562static SDValue
7563GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007564 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007565 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007566 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007567 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007568 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007569 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007570 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007571 GA->getOffset(),
7572 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007573
7574 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
7575 : X86ISD::TLSADDR;
7576
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007577 if (InFlag) {
7578 SDValue Ops[] = { Chain, TGA, *InFlag };
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007579 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007580 } else {
7581 SDValue Ops[] = { Chain, TGA };
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007582 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007583 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007584
7585 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007586 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007587
Rafael Espindola15f1b662009-04-24 12:59:40 +00007588 SDValue Flag = Chain.getValue(1);
7589 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007590}
7591
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007592// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007593static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007594LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007595 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007596 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007597 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7598 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00007599 DAG.getNode(X86ISD::GlobalBaseReg,
7600 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007601 InFlag = Chain.getValue(1);
7602
Chris Lattnerb903bed2009-06-26 21:20:29 +00007603 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007604}
7605
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007606// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007607static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007608LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007609 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007610 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7611 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007612}
7613
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007614static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
7615 SelectionDAG &DAG,
7616 const EVT PtrVT,
7617 bool is64Bit) {
7618 DebugLoc dl = GA->getDebugLoc();
7619
7620 // Get the start address of the TLS block for this module.
7621 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
7622 .getInfo<X86MachineFunctionInfo>();
7623 MFI->incNumLocalDynamicTLSAccesses();
7624
7625 SDValue Base;
7626 if (is64Bit) {
7627 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
7628 X86II::MO_TLSLD, /*LocalDynamic=*/true);
7629 } else {
7630 SDValue InFlag;
7631 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7632 DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT), InFlag);
7633 InFlag = Chain.getValue(1);
7634 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
7635 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
7636 }
7637
7638 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
7639 // of Base.
7640
7641 // Build x@dtpoff.
7642 unsigned char OperandFlags = X86II::MO_DTPOFF;
7643 unsigned WrapperKind = X86ISD::Wrapper;
7644 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7645 GA->getValueType(0),
7646 GA->getOffset(), OperandFlags);
7647 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7648
7649 // Add x@dtpoff with the base.
7650 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
7651}
7652
Hans Wennborg228756c2012-05-11 10:11:01 +00007653// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007654static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007655 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00007656 bool is64Bit, bool isPIC) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007657 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007658
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007659 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7660 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7661 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007662
Michael J. Spencerec38de22010-10-10 22:04:20 +00007663 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007664 DAG.getIntPtrConstant(0),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007665 MachinePointerInfo(Ptr),
7666 false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007667
Chris Lattnerb903bed2009-06-26 21:20:29 +00007668 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007669 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7670 // initialexec.
7671 unsigned WrapperKind = X86ISD::Wrapper;
7672 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007673 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00007674 } else if (model == TLSModel::InitialExec) {
7675 if (is64Bit) {
7676 OperandFlags = X86II::MO_GOTTPOFF;
7677 WrapperKind = X86ISD::WrapperRIP;
7678 } else {
7679 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
7680 }
Chris Lattner18c59872009-06-27 04:16:01 +00007681 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00007682 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00007683 }
Eric Christopherfd179292009-08-27 18:07:15 +00007684
Hans Wennborg228756c2012-05-11 10:11:01 +00007685 // emit "addl x@ntpoff,%eax" (local exec)
7686 // or "addl x@indntpoff,%eax" (initial exec)
7687 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007688 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007689 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007690 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007691 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007692
Hans Wennborg228756c2012-05-11 10:11:01 +00007693 if (model == TLSModel::InitialExec) {
7694 if (isPIC && !is64Bit) {
7695 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
7696 DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT),
7697 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00007698 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00007699
7700 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
7701 MachinePointerInfo::getGOT(), false, false, false,
7702 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00007703 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007704
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007705 // The address of the thread local variable is the add of the thread
7706 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007707 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007708}
7709
Dan Gohman475871a2008-07-27 21:46:04 +00007710SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007711X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007712
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007713 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007714 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007715
Eric Christopher30ef0e52010-06-03 04:07:48 +00007716 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00007717 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007718
Eric Christopher30ef0e52010-06-03 04:07:48 +00007719 switch (model) {
7720 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00007721 if (Subtarget->is64Bit())
7722 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7723 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00007724 case TLSModel::LocalDynamic:
7725 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
7726 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00007727 case TLSModel::InitialExec:
7728 case TLSModel::LocalExec:
7729 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00007730 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00007731 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007732 }
Craig Toppere8eb1162012-04-23 03:26:18 +00007733 llvm_unreachable("Unknown TLS model.");
7734 }
7735
7736 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00007737 // Darwin only has one model of TLS. Lower to that.
7738 unsigned char OpFlag = 0;
7739 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7740 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007741
Eric Christopher30ef0e52010-06-03 04:07:48 +00007742 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7743 // global base reg.
7744 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7745 !Subtarget->is64Bit();
7746 if (PIC32)
7747 OpFlag = X86II::MO_TLVP_PIC_BASE;
7748 else
7749 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007750 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007751 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007752 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007753 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007754 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007755
Eric Christopher30ef0e52010-06-03 04:07:48 +00007756 // With PIC32, the address is actually $g + Offset.
7757 if (PIC32)
7758 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7759 DAG.getNode(X86ISD::GlobalBaseReg,
7760 DebugLoc(), getPointerTy()),
7761 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007762
Eric Christopher30ef0e52010-06-03 04:07:48 +00007763 // Lowering the machine isd will make sure everything is in the right
7764 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007765 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007766 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007767 SDValue Args[] = { Chain, Offset };
7768 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007769
Eric Christopher30ef0e52010-06-03 04:07:48 +00007770 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7771 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7772 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007773
Eric Christopher30ef0e52010-06-03 04:07:48 +00007774 // And our return value (tls address) is in the standard call return value
7775 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007776 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00007777 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
7778 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00007779 }
7780
7781 if (Subtarget->isTargetWindows()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00007782 // Just use the implicit TLS architecture
7783 // Need to generate someting similar to:
7784 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
7785 // ; from TEB
7786 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
7787 // mov rcx, qword [rdx+rcx*8]
7788 // mov eax, .tls$:tlsvar
7789 // [rax+rcx] contains the address
7790 // Windows 64bit: gs:0x58
7791 // Windows 32bit: fs:__tls_array
7792
7793 // If GV is an alias then use the aliasee for determining
7794 // thread-localness.
7795 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7796 GV = GA->resolveAliasedGlobal(false);
7797 DebugLoc dl = GA->getDebugLoc();
7798 SDValue Chain = DAG.getEntryNode();
7799
7800 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
7801 // %gs:0x58 (64-bit).
7802 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
7803 ? Type::getInt8PtrTy(*DAG.getContext(),
7804 256)
7805 : Type::getInt32PtrTy(*DAG.getContext(),
7806 257));
7807
7808 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain,
7809 Subtarget->is64Bit()
7810 ? DAG.getIntPtrConstant(0x58)
7811 : DAG.getExternalSymbol("_tls_array",
7812 getPointerTy()),
7813 MachinePointerInfo(Ptr),
7814 false, false, false, 0);
7815
7816 // Load the _tls_index variable
7817 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
7818 if (Subtarget->is64Bit())
7819 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
7820 IDX, MachinePointerInfo(), MVT::i32,
7821 false, false, 0);
7822 else
7823 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
7824 false, false, false, 0);
7825
Chandler Carruth426c2bf2012-11-01 09:14:31 +00007826 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00007827 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00007828 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
7829
7830 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
7831 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
7832 false, false, false, 0);
7833
7834 // Get the offset of start of .tls section
7835 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7836 GA->getValueType(0),
7837 GA->getOffset(), X86II::MO_SECREL);
7838 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
7839
7840 // The address of the thread local variable is the add of the thread
7841 // pointer with the offset of the variable.
7842 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007843 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007844
David Blaikie4d6ccb52012-01-20 21:51:11 +00007845 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007846}
7847
Chad Rosierb90d2a92012-01-03 23:19:12 +00007848/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
7849/// and take a 2 x i32 value to shift plus a shift amount.
7850SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00007851 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007852 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007853 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007854 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007855 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007856 SDValue ShOpLo = Op.getOperand(0);
7857 SDValue ShOpHi = Op.getOperand(1);
7858 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007859 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007860 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007861 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007862
Dan Gohman475871a2008-07-27 21:46:04 +00007863 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007864 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007865 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7866 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007867 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007868 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7869 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007870 }
Evan Chenge3413162006-01-09 18:33:28 +00007871
Owen Anderson825b72b2009-08-11 20:47:22 +00007872 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7873 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007874 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007875 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007876
Dan Gohman475871a2008-07-27 21:46:04 +00007877 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007878 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007879 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7880 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007881
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007882 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007883 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7884 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007885 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007886 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7887 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007888 }
7889
Dan Gohman475871a2008-07-27 21:46:04 +00007890 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007891 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007892}
Evan Chenga3195e82006-01-12 22:54:21 +00007893
Dan Gohmand858e902010-04-17 15:26:15 +00007894SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7895 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007896 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007897
Dale Johannesen0488fb62010-09-30 23:57:10 +00007898 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007899 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007900
Owen Anderson825b72b2009-08-11 20:47:22 +00007901 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007902 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007903
Eli Friedman36df4992009-05-27 00:47:34 +00007904 // These are really Legal; return the operand so the caller accepts it as
7905 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007906 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007907 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007908 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007909 Subtarget->is64Bit()) {
7910 return Op;
7911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007912
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007913 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007914 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007915 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007916 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007917 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007918 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007919 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007920 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007921 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007922 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7923}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007924
Owen Andersone50ed302009-08-10 22:56:29 +00007925SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007926 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007927 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007928 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007929 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007930 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007931 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007932 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007933 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007934 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007935 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007936
Chris Lattner492a43e2010-09-22 01:28:21 +00007937 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007938
Stuart Hastings84be9582011-06-02 15:57:11 +00007939 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7940 MachineMemOperand *MMO;
7941 if (FI) {
7942 int SSFI = FI->getIndex();
7943 MMO =
7944 DAG.getMachineFunction()
7945 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7946 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7947 } else {
7948 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7949 StackSlot = StackSlot.getOperand(1);
7950 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007951 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007952 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7953 X86ISD::FILD, DL,
7954 Tys, Ops, array_lengthof(Ops),
7955 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007956
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007957 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007958 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007959 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007960
7961 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7962 // shouldn't be necessary except that RFP cannot be live across
7963 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007964 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007965 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7966 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007967 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007968 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007969 SDValue Ops[] = {
7970 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7971 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007972 MachineMemOperand *MMO =
7973 DAG.getMachineFunction()
7974 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007975 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007976
Chris Lattner492a43e2010-09-22 01:28:21 +00007977 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7978 Ops, array_lengthof(Ops),
7979 Op.getValueType(), MMO);
7980 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007981 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007982 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007983 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007984
Evan Cheng0db9fe62006-04-25 20:13:52 +00007985 return Result;
7986}
7987
Bill Wendling8b8a6362009-01-17 03:56:04 +00007988// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007989SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7990 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00007991 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00007992 /*
Bill Wendling397ae212012-01-05 02:13:20 +00007993 movq %rax, %xmm0
7994 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
7995 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
7996 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00007997 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00007998 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00007999 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008000 addpd %xmm1, %xmm0
8001 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008002 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008003
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008004 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00008005 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008006
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008007 // Build some magic constants.
Chris Lattner7302d802012-02-06 21:56:39 +00008008 const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8009 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008010 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008011
Chris Lattner97484792012-01-25 09:56:22 +00008012 SmallVector<Constant*,2> CV1;
8013 CV1.push_back(
Chris Lattner4ca829e2012-01-25 06:02:56 +00008014 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008015 CV1.push_back(
8016 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
8017 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008018 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008019
Bill Wendling397ae212012-01-05 02:13:20 +00008020 // Load the 64-bit value into an XMM register.
8021 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8022 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008023 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008024 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008025 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008026 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8027 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8028 CLod0);
8029
Owen Anderson825b72b2009-08-11 20:47:22 +00008030 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008031 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008032 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008033 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008034 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008035 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008036
Craig Topperd0a31172012-01-10 06:37:29 +00008037 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008038 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8039 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8040 } else {
8041 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8042 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8043 S2F, 0x4E, DAG);
8044 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8045 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8046 Sub);
8047 }
8048
8049 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008050 DAG.getIntPtrConstant(0));
8051}
8052
Bill Wendling8b8a6362009-01-17 03:56:04 +00008053// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008054SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8055 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008056 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00008057 // FP constant to bias correct the final result.
8058 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008059 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008060
8061 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008062 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008063 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008064
Eli Friedmanf3704762011-08-29 21:15:46 +00008065 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008066 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008067
Owen Anderson825b72b2009-08-11 20:47:22 +00008068 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008069 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008070 DAG.getIntPtrConstant(0));
8071
8072 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008073 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008074 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008075 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008076 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008077 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008078 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008079 MVT::v2f64, Bias)));
8080 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008081 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008082 DAG.getIntPtrConstant(0));
8083
8084 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008085 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008086
8087 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008088 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008089
Craig Topper69947b92012-04-23 06:57:04 +00008090 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008091 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008092 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008093 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008094 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008095
8096 // Handle final rounding.
8097 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008098}
8099
Michael Liaoa7554632012-10-23 17:36:08 +00008100SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8101 SelectionDAG &DAG) const {
8102 SDValue N0 = Op.getOperand(0);
8103 EVT SVT = N0.getValueType();
8104 DebugLoc dl = Op.getDebugLoc();
8105
8106 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8107 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8108 "Custom UINT_TO_FP is not supported!");
8109
Craig Topperb99bafe2013-01-21 06:21:54 +00008110 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8111 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008112 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8113 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8114}
8115
Dan Gohmand858e902010-04-17 15:26:15 +00008116SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8117 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008118 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008119 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00008120
Michael Liaoa7554632012-10-23 17:36:08 +00008121 if (Op.getValueType().isVector())
8122 return lowerUINT_TO_FP_vec(Op, DAG);
8123
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008124 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008125 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8126 // the optimization here.
8127 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008128 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008129
Owen Andersone50ed302009-08-10 22:56:29 +00008130 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008131 EVT DstVT = Op.getValueType();
8132 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008133 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008134 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008135 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008136 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008137 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008138
8139 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008140 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008141 if (SrcVT == MVT::i32) {
8142 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8143 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8144 getPointerTy(), StackSlot, WordOff);
8145 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008146 StackSlot, MachinePointerInfo(),
8147 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008148 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008149 OffsetSlot, MachinePointerInfo(),
8150 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008151 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8152 return Fild;
8153 }
8154
8155 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8156 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008157 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008158 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008159 // For i64 source, we need to add the appropriate power of 2 if the input
8160 // was negative. This is the same as the optimization in
8161 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8162 // we must be careful to do the computation in x87 extended precision, not
8163 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008164 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8165 MachineMemOperand *MMO =
8166 DAG.getMachineFunction()
8167 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8168 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008169
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008170 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8171 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008172 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
8173 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008174
8175 APInt FF(32, 0x5F800000ULL);
8176
8177 // Check whether the sign bit is set.
8178 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
8179 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8180 ISD::SETLT);
8181
8182 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8183 SDValue FudgePtr = DAG.getConstantPool(
8184 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8185 getPointerTy());
8186
8187 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8188 SDValue Zero = DAG.getIntPtrConstant(0);
8189 SDValue Four = DAG.getIntPtrConstant(4);
8190 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8191 Zero, Four);
8192 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8193
8194 // Load the value out, extending it from f32 to f80.
8195 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008196 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008197 FudgePtr, MachinePointerInfo::getConstantPool(),
8198 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008199 // Extend everything to 80 bits to force it to be done on x87.
8200 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8201 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008202}
8203
Craig Topperb99bafe2013-01-21 06:21:54 +00008204std::pair<SDValue,SDValue>
8205X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8206 bool IsSigned, bool IsReplace) const {
Chris Lattner07290932010-09-22 01:05:16 +00008207 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00008208
Owen Andersone50ed302009-08-10 22:56:29 +00008209 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008210
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008211 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008212 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8213 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008214 }
8215
Owen Anderson825b72b2009-08-11 20:47:22 +00008216 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8217 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008218 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008219
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008220 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008221 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008222 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008223 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008224 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008225 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008226 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008227 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008228
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008229 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8230 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008231 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008232 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008233 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008234 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008235
Evan Cheng0db9fe62006-04-25 20:13:52 +00008236 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008237 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8238 Opc = X86ISD::WIN_FTOL;
8239 else
8240 switch (DstTy.getSimpleVT().SimpleTy) {
8241 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8242 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8243 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8244 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8245 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008246
Dan Gohman475871a2008-07-27 21:46:04 +00008247 SDValue Chain = DAG.getEntryNode();
8248 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008249 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008250 // FIXME This causes a redundant load/store if the SSE-class value is already
8251 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008252 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008253 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008254 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008255 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008256 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008257 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008258 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008259 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008260 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008261
Chris Lattner492a43e2010-09-22 01:28:21 +00008262 MachineMemOperand *MMO =
8263 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8264 MachineMemOperand::MOLoad, MemSize, MemSize);
8265 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
8266 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008267 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008268 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008269 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8270 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008271
Chris Lattner07290932010-09-22 01:05:16 +00008272 MachineMemOperand *MMO =
8273 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8274 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008275
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008276 if (Opc != X86ISD::WIN_FTOL) {
8277 // Build the FP_TO_INT*_IN_MEM
8278 SDValue Ops[] = { Chain, Value, StackSlot };
8279 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8280 Ops, 3, DstTy, MMO);
8281 return std::make_pair(FIST, StackSlot);
8282 } else {
8283 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8284 DAG.getVTList(MVT::Other, MVT::Glue),
8285 Chain, Value);
8286 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8287 MVT::i32, ftol.getValue(1));
8288 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8289 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008290 SDValue Ops[] = { eax, edx };
8291 SDValue pair = IsReplace
8292 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, 2)
8293 : DAG.getMergeValues(Ops, 2, DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008294 return std::make_pair(pair, SDValue());
8295 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008296}
8297
Nadav Rotem0509db22012-12-28 05:45:24 +00008298static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8299 const X86Subtarget *Subtarget) {
Craig Toppera080daf2013-01-20 21:50:27 +00008300 MVT VT = Op->getValueType(0).getSimpleVT();
Nadav Rotem0509db22012-12-28 05:45:24 +00008301 SDValue In = Op->getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008302 MVT InVT = In.getValueType().getSimpleVT();
Nadav Rotem0509db22012-12-28 05:45:24 +00008303 DebugLoc dl = Op->getDebugLoc();
8304
8305 // Optimize vectors in AVX mode:
8306 //
8307 // v8i16 -> v8i32
8308 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8309 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8310 // Concat upper and lower parts.
8311 //
8312 // v4i32 -> v4i64
8313 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8314 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8315 // Concat upper and lower parts.
8316 //
8317
8318 if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8319 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8320 return SDValue();
8321
8322 if (Subtarget->hasInt256())
8323 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8324
8325 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8326 SDValue Undef = DAG.getUNDEF(InVT);
8327 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8328 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8329 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8330
Craig Toppera080daf2013-01-20 21:50:27 +00008331 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008332 VT.getVectorNumElements()/2);
8333
8334 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8335 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8336
8337 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8338}
8339
8340SDValue X86TargetLowering::LowerANY_EXTEND(SDValue Op,
8341 SelectionDAG &DAG) const {
8342 if (Subtarget->hasFp256()) {
8343 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8344 if (Res.getNode())
8345 return Res;
8346 }
8347
8348 return SDValue();
8349}
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008350SDValue X86TargetLowering::LowerZERO_EXTEND(SDValue Op,
8351 SelectionDAG &DAG) const {
Michael Liaoa7554632012-10-23 17:36:08 +00008352 DebugLoc DL = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008353 MVT VT = Op.getValueType().getSimpleVT();
Michael Liaoa7554632012-10-23 17:36:08 +00008354 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008355 MVT SVT = In.getValueType().getSimpleVT();
Michael Liaoa7554632012-10-23 17:36:08 +00008356
Nadav Rotem0509db22012-12-28 05:45:24 +00008357 if (Subtarget->hasFp256()) {
8358 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8359 if (Res.getNode())
8360 return Res;
8361 }
8362
Michael Liaoa7554632012-10-23 17:36:08 +00008363 if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8364 VT.getVectorNumElements() != SVT.getVectorNumElements())
8365 return SDValue();
8366
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008367 assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
Michael Liaoa7554632012-10-23 17:36:08 +00008368
8369 // AVX2 has better support of integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00008370 if (Subtarget->hasInt256())
Michael Liaoa7554632012-10-23 17:36:08 +00008371 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8372
8373 SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8374 static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8375 SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
Nadav Rotem40ef8b72012-12-28 07:28:43 +00008376 DAG.getVectorShuffle(MVT::v8i16, DL, In,
8377 DAG.getUNDEF(MVT::v8i16),
8378 &Mask[0]));
Michael Liaoa7554632012-10-23 17:36:08 +00008379
8380 return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8381}
8382
Craig Topperd713c0f2013-01-20 21:34:37 +00008383SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Michael Liaobedcbd42012-10-16 18:14:11 +00008384 DebugLoc DL = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008385 MVT VT = Op.getValueType().getSimpleVT();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008386 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008387 MVT SVT = In.getValueType().getSimpleVT();
Michael Liaobedcbd42012-10-16 18:14:11 +00008388
Nadav Rotem3c22a442012-12-27 07:45:10 +00008389 if ((VT == MVT::v4i32) && (SVT == MVT::v4i64)) {
8390 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8391 if (Subtarget->hasInt256()) {
8392 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8393 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8394 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8395 ShufMask);
8396 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8397 DAG.getIntPtrConstant(0));
8398 }
8399
8400 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8401 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8402 DAG.getIntPtrConstant(0));
8403 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8404 DAG.getIntPtrConstant(2));
8405
8406 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8407 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8408
8409 // The PSHUFD mask:
8410 static const int ShufMask1[] = {0, 2, 0, 0};
8411 SDValue Undef = DAG.getUNDEF(VT);
8412 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
8413 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
8414
8415 // The MOVLHPS mask:
8416 static const int ShufMask2[] = {0, 1, 4, 5};
8417 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
8418 }
8419
8420 if ((VT == MVT::v8i16) && (SVT == MVT::v8i32)) {
8421 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
8422 if (Subtarget->hasInt256()) {
8423 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
8424
8425 SmallVector<SDValue,32> pshufbMask;
8426 for (unsigned i = 0; i < 2; ++i) {
8427 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
8428 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
8429 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
8430 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
8431 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
8432 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
8433 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
8434 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
8435 for (unsigned j = 0; j < 8; ++j)
8436 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
8437 }
8438 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
8439 &pshufbMask[0], 32);
8440 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
8441 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
8442
8443 static const int ShufMask[] = {0, 2, -1, -1};
8444 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
8445 &ShufMask[0]);
8446 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8447 DAG.getIntPtrConstant(0));
8448 return DAG.getNode(ISD::BITCAST, DL, VT, In);
8449 }
8450
8451 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8452 DAG.getIntPtrConstant(0));
8453
8454 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8455 DAG.getIntPtrConstant(4));
8456
8457 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
8458 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
8459
8460 // The PSHUFB mask:
8461 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
8462 -1, -1, -1, -1, -1, -1, -1, -1};
8463
8464 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
8465 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
8466 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
8467
8468 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8469 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8470
8471 // The MOVLHPS Mask:
8472 static const int ShufMask2[] = {0, 1, 4, 5};
8473 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
8474 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
8475 }
8476
8477 // Handle truncation of V256 to V128 using shuffles.
8478 if (!VT.is128BitVector() || !SVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00008479 return SDValue();
8480
Nadav Rotem3c22a442012-12-27 07:45:10 +00008481 assert(VT.getVectorNumElements() != SVT.getVectorNumElements() &&
8482 "Invalid op");
8483 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00008484
8485 unsigned NumElems = VT.getVectorNumElements();
8486 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
8487 NumElems * 2);
8488
Michael Liaobedcbd42012-10-16 18:14:11 +00008489 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
8490 // Prepare truncation shuffle mask
8491 for (unsigned i = 0; i != NumElems; ++i)
8492 MaskVec[i] = i * 2;
8493 SDValue V = DAG.getVectorShuffle(NVT, DL,
8494 DAG.getNode(ISD::BITCAST, DL, NVT, In),
8495 DAG.getUNDEF(NVT), &MaskVec[0]);
8496 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
8497 DAG.getIntPtrConstant(0));
8498}
8499
Dan Gohmand858e902010-04-17 15:26:15 +00008500SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8501 SelectionDAG &DAG) const {
Craig Toppera080daf2013-01-20 21:50:27 +00008502 MVT VT = Op.getValueType().getSimpleVT();
8503 if (VT.isVector()) {
8504 if (VT == MVT::v8i16)
8505 return DAG.getNode(ISD::TRUNCATE, Op.getDebugLoc(), VT,
Michael Liaobedcbd42012-10-16 18:14:11 +00008506 DAG.getNode(ISD::FP_TO_SINT, Op.getDebugLoc(),
8507 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00008508 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00008509 }
Eli Friedman23ef1052009-06-06 03:57:58 +00008510
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008511 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8512 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00008513 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00008514 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
8515 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00008516
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008517 if (StackSlot.getNode())
8518 // Load the result.
8519 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8520 FIST, StackSlot, MachinePointerInfo(),
8521 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00008522
8523 // The node is the result.
8524 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00008525}
8526
Dan Gohmand858e902010-04-17 15:26:15 +00008527SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
8528 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008529 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8530 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00008531 SDValue FIST = Vals.first, StackSlot = Vals.second;
8532 assert(FIST.getNode() && "Unexpected failure");
8533
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008534 if (StackSlot.getNode())
8535 // Load the result.
8536 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8537 FIST, StackSlot, MachinePointerInfo(),
8538 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00008539
8540 // The node is the result.
8541 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00008542}
8543
Craig Topperb84b4232013-01-21 06:13:28 +00008544static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Michael Liao9d796db2012-10-10 16:32:15 +00008545 DebugLoc DL = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008546 MVT VT = Op.getValueType().getSimpleVT();
Michael Liao9d796db2012-10-10 16:32:15 +00008547 SDValue In = Op.getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00008548 MVT SVT = In.getValueType().getSimpleVT();
Michael Liao9d796db2012-10-10 16:32:15 +00008549
8550 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
8551
8552 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
8553 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
8554 In, DAG.getUNDEF(SVT)));
8555}
8556
Craig Topper43620672012-09-08 07:31:51 +00008557SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008558 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008559 DebugLoc dl = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008560 MVT VT = Op.getValueType().getSimpleVT();
8561 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00008562 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
8563 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008564 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00008565 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008566 }
Craig Topper43620672012-09-08 07:31:51 +00008567 Constant *C;
8568 if (EltVT == MVT::f64)
8569 C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
8570 else
8571 C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
8572 C = ConstantVector::getSplat(NumElts, C);
8573 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
8574 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00008575 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008576 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00008577 false, false, false, Alignment);
8578 if (VT.isVector()) {
8579 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8580 return DAG.getNode(ISD::BITCAST, dl, VT,
8581 DAG.getNode(ISD::AND, dl, ANDVT,
8582 DAG.getNode(ISD::BITCAST, dl, ANDVT,
8583 Op.getOperand(0)),
8584 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
8585 }
Dale Johannesenace16102009-02-03 19:33:06 +00008586 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008587}
8588
Dan Gohmand858e902010-04-17 15:26:15 +00008589SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008590 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008591 DebugLoc dl = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008592 MVT VT = Op.getValueType().getSimpleVT();
8593 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00008594 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
8595 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008596 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00008597 NumElts = VT.getVectorNumElements();
8598 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00008599 Constant *C;
8600 if (EltVT == MVT::f64)
8601 C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
8602 else
8603 C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
8604 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00008605 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
8606 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00008607 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008608 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00008609 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008610 if (VT.isVector()) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00008611 MVT XORVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008612 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00008613 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00008614 DAG.getNode(ISD::BITCAST, dl, XORVT,
8615 Op.getOperand(0)),
8616 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00008617 }
Craig Topper69947b92012-04-23 06:57:04 +00008618
8619 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008620}
8621
Dan Gohmand858e902010-04-17 15:26:15 +00008622SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008623 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00008624 SDValue Op0 = Op.getOperand(0);
8625 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008626 DebugLoc dl = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008627 MVT VT = Op.getValueType().getSimpleVT();
8628 MVT SrcVT = Op1.getValueType().getSimpleVT();
Evan Cheng73d6cf12007-01-05 21:37:56 +00008629
8630 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008631 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008632 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008633 SrcVT = VT;
8634 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008635 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008636 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008637 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008638 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008639 }
8640
8641 // At this point the operands and the result should have the same
8642 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00008643
Evan Cheng68c47cb2007-01-05 07:55:56 +00008644 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00008645 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008646 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008647 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8648 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008649 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008650 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8651 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8652 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8653 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008654 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008655 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008656 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008657 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008658 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008659 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008660 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008661
8662 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008663 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008664 // Op0 is MVT::f32, Op1 is MVT::f64.
8665 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8666 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8667 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008668 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00008669 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00008670 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008671 }
8672
Evan Cheng73d6cf12007-01-05 21:37:56 +00008673 // Clear first operand sign bit.
8674 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00008675 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008676 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8677 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008678 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008679 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8680 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8681 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8682 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008683 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008684 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008685 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008686 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008687 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008688 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008689 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008690
8691 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00008692 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008693}
8694
Craig Topper55b24052012-09-11 06:15:32 +00008695static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008696 SDValue N0 = Op.getOperand(0);
8697 DebugLoc dl = Op.getDebugLoc();
Craig Toppera080daf2013-01-20 21:50:27 +00008698 MVT VT = Op.getValueType().getSimpleVT();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008699
8700 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8701 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8702 DAG.getConstant(1, VT));
8703 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8704}
8705
Michael Liaof966e4e2012-09-13 20:24:54 +00008706// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
8707//
Craig Topperb99bafe2013-01-21 06:21:54 +00008708SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op,
8709 SelectionDAG &DAG) const {
Michael Liaof966e4e2012-09-13 20:24:54 +00008710 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
8711
8712 if (!Subtarget->hasSSE41())
8713 return SDValue();
8714
8715 if (!Op->hasOneUse())
8716 return SDValue();
8717
8718 SDNode *N = Op.getNode();
8719 DebugLoc DL = N->getDebugLoc();
8720
8721 SmallVector<SDValue, 8> Opnds;
8722 DenseMap<SDValue, unsigned> VecInMap;
8723 EVT VT = MVT::Other;
8724
8725 // Recognize a special case where a vector is casted into wide integer to
8726 // test all 0s.
8727 Opnds.push_back(N->getOperand(0));
8728 Opnds.push_back(N->getOperand(1));
8729
8730 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
8731 SmallVector<SDValue, 8>::const_iterator I = Opnds.begin() + Slot;
8732 // BFS traverse all OR'd operands.
8733 if (I->getOpcode() == ISD::OR) {
8734 Opnds.push_back(I->getOperand(0));
8735 Opnds.push_back(I->getOperand(1));
8736 // Re-evaluate the number of nodes to be traversed.
8737 e += 2; // 2 more nodes (LHS and RHS) are pushed.
8738 continue;
8739 }
8740
8741 // Quit if a non-EXTRACT_VECTOR_ELT
8742 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8743 return SDValue();
8744
8745 // Quit if without a constant index.
8746 SDValue Idx = I->getOperand(1);
8747 if (!isa<ConstantSDNode>(Idx))
8748 return SDValue();
8749
8750 SDValue ExtractedFromVec = I->getOperand(0);
8751 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
8752 if (M == VecInMap.end()) {
8753 VT = ExtractedFromVec.getValueType();
8754 // Quit if not 128/256-bit vector.
8755 if (!VT.is128BitVector() && !VT.is256BitVector())
8756 return SDValue();
8757 // Quit if not the same type.
8758 if (VecInMap.begin() != VecInMap.end() &&
8759 VT != VecInMap.begin()->first.getValueType())
8760 return SDValue();
8761 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
8762 }
8763 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
8764 }
8765
8766 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00008767 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00008768
8769 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
8770 SmallVector<SDValue, 8> VecIns;
8771
8772 for (DenseMap<SDValue, unsigned>::const_iterator
8773 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
8774 // Quit if not all elements are used.
8775 if (I->second != FullMask)
8776 return SDValue();
8777 VecIns.push_back(I->first);
8778 }
8779
8780 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8781
8782 // Cast all vectors into TestVT for PTEST.
8783 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
8784 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
8785
8786 // If more than one full vectors are evaluated, OR them first before PTEST.
8787 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
8788 // Each iteration will OR 2 nodes and append the result until there is only
8789 // 1 node left, i.e. the final OR'd value of all vectors.
8790 SDValue LHS = VecIns[Slot];
8791 SDValue RHS = VecIns[Slot + 1];
8792 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
8793 }
8794
8795 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
8796 VecIns.back(), VecIns.back());
8797}
8798
Dan Gohman076aee32009-03-04 19:44:21 +00008799/// Emit nodes that will be selected as "test Op0,Op0", or something
8800/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008801SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008802 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008803 DebugLoc dl = Op.getDebugLoc();
8804
Dan Gohman31125812009-03-07 01:58:32 +00008805 // CF and OF aren't always set the way we want. Determine which
8806 // of these we need.
8807 bool NeedCF = false;
8808 bool NeedOF = false;
8809 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008810 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00008811 case X86::COND_A: case X86::COND_AE:
8812 case X86::COND_B: case X86::COND_BE:
8813 NeedCF = true;
8814 break;
8815 case X86::COND_G: case X86::COND_GE:
8816 case X86::COND_L: case X86::COND_LE:
8817 case X86::COND_O: case X86::COND_NO:
8818 NeedOF = true;
8819 break;
Dan Gohman31125812009-03-07 01:58:32 +00008820 }
8821
Dan Gohman076aee32009-03-04 19:44:21 +00008822 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00008823 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8824 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008825 if (Op.getResNo() != 0 || NeedOF || NeedCF)
8826 // Emit a CMP with 0, which is the TEST pattern.
8827 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8828 DAG.getConstant(0, Op.getValueType()));
8829
8830 unsigned Opcode = 0;
8831 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008832
8833 // Truncate operations may prevent the merge of the SETCC instruction
8834 // and the arithmetic intruction before it. Attempt to truncate the operands
8835 // of the arithmetic instruction and use a reduced bit-width instruction.
8836 bool NeedTruncation = false;
8837 SDValue ArithOp = Op;
8838 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
8839 SDValue Arith = Op->getOperand(0);
8840 // Both the trunc and the arithmetic op need to have one user each.
8841 if (Arith->hasOneUse())
8842 switch (Arith.getOpcode()) {
8843 default: break;
8844 case ISD::ADD:
8845 case ISD::SUB:
8846 case ISD::AND:
8847 case ISD::OR:
8848 case ISD::XOR: {
8849 NeedTruncation = true;
8850 ArithOp = Arith;
8851 }
8852 }
8853 }
8854
8855 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
8856 // which may be the result of a CAST. We use the variable 'Op', which is the
8857 // non-casted variable when we check for possible users.
8858 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008859 case ISD::ADD:
8860 // Due to an isel shortcoming, be conservative if this add is likely to be
8861 // selected as part of a load-modify-store instruction. When the root node
8862 // in a match is a store, isel doesn't know how to remap non-chain non-flag
8863 // uses of other nodes in the match, such as the ADD in this case. This
8864 // leads to the ADD being left around and reselected, with the result being
8865 // two adds in the output. Alas, even if none our users are stores, that
8866 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
8867 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
8868 // climbing the DAG back to the root, and it doesn't seem to be worth the
8869 // effort.
8870 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00008871 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8872 if (UI->getOpcode() != ISD::CopyToReg &&
8873 UI->getOpcode() != ISD::SETCC &&
8874 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008875 goto default_case;
8876
8877 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008878 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008879 // An add of one will be selected as an INC.
8880 if (C->getAPIntValue() == 1) {
8881 Opcode = X86ISD::INC;
8882 NumOperands = 1;
8883 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00008884 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008885
8886 // An add of negative one (subtract of one) will be selected as a DEC.
8887 if (C->getAPIntValue().isAllOnesValue()) {
8888 Opcode = X86ISD::DEC;
8889 NumOperands = 1;
8890 break;
8891 }
Dan Gohman076aee32009-03-04 19:44:21 +00008892 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008893
8894 // Otherwise use a regular EFLAGS-setting add.
8895 Opcode = X86ISD::ADD;
8896 NumOperands = 2;
8897 break;
8898 case ISD::AND: {
8899 // If the primary and result isn't used, don't bother using X86ISD::AND,
8900 // because a TEST instruction will be better.
8901 bool NonFlagUse = false;
8902 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8903 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8904 SDNode *User = *UI;
8905 unsigned UOpNo = UI.getOperandNo();
8906 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8907 // Look pass truncate.
8908 UOpNo = User->use_begin().getOperandNo();
8909 User = *User->use_begin();
8910 }
8911
8912 if (User->getOpcode() != ISD::BRCOND &&
8913 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008914 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008915 NonFlagUse = true;
8916 break;
8917 }
Dan Gohman076aee32009-03-04 19:44:21 +00008918 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008919
8920 if (!NonFlagUse)
8921 break;
8922 }
8923 // FALL THROUGH
8924 case ISD::SUB:
8925 case ISD::OR:
8926 case ISD::XOR:
8927 // Due to the ISEL shortcoming noted above, be conservative if this op is
8928 // likely to be selected as part of a load-modify-store instruction.
8929 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8930 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8931 if (UI->getOpcode() == ISD::STORE)
8932 goto default_case;
8933
8934 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008935 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008936 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008937 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008938 case ISD::XOR: Opcode = X86ISD::XOR; break;
8939 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00008940 case ISD::OR: {
8941 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
8942 SDValue EFLAGS = LowerVectorAllZeroTest(Op, DAG);
8943 if (EFLAGS.getNode())
8944 return EFLAGS;
8945 }
8946 Opcode = X86ISD::OR;
8947 break;
8948 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008949 }
8950
8951 NumOperands = 2;
8952 break;
8953 case X86ISD::ADD:
8954 case X86ISD::SUB:
8955 case X86ISD::INC:
8956 case X86ISD::DEC:
8957 case X86ISD::OR:
8958 case X86ISD::XOR:
8959 case X86ISD::AND:
8960 return SDValue(Op.getNode(), 1);
8961 default:
8962 default_case:
8963 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008964 }
8965
Nadav Rotemb9d6b842012-08-18 17:53:03 +00008966 // If we found that truncation is beneficial, perform the truncation and
8967 // update 'Op'.
8968 if (NeedTruncation) {
8969 EVT VT = Op.getValueType();
8970 SDValue WideVal = Op->getOperand(0);
8971 EVT WideVT = WideVal.getValueType();
8972 unsigned ConvertedOp = 0;
8973 // Use a target machine opcode to prevent further DAGCombine
8974 // optimizations that may separate the arithmetic operations
8975 // from the setcc node.
8976 switch (WideVal.getOpcode()) {
8977 default: break;
8978 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
8979 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
8980 case ISD::AND: ConvertedOp = X86ISD::AND; break;
8981 case ISD::OR: ConvertedOp = X86ISD::OR; break;
8982 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
8983 }
8984
8985 if (ConvertedOp) {
8986 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8987 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
8988 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
8989 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
8990 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
8991 }
8992 }
8993 }
8994
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008995 if (Opcode == 0)
8996 // Emit a CMP with 0, which is the TEST pattern.
8997 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8998 DAG.getConstant(0, Op.getValueType()));
8999
9000 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9001 SmallVector<SDValue, 4> Ops;
9002 for (unsigned i = 0; i != NumOperands; ++i)
9003 Ops.push_back(Op.getOperand(i));
9004
9005 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9006 DAG.ReplaceAllUsesWith(Op, New);
9007 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009008}
9009
9010/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9011/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009012SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009013 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009014 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9015 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009016 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009017
9018 DebugLoc dl = Op0.getDebugLoc();
Manman Ren39ad5682012-08-08 00:51:41 +00009019 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9020 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9021 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9022 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9023 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9024 Op0, Op1);
9025 return SDValue(Sub.getNode(), 1);
9026 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009027 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009028}
9029
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009030/// Convert a comparison if required by the subtarget.
9031SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9032 SelectionDAG &DAG) const {
9033 // If the subtarget does not support the FUCOMI instruction, floating-point
9034 // comparisons have to be converted.
9035 if (Subtarget->hasCMov() ||
9036 Cmp.getOpcode() != X86ISD::CMP ||
9037 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9038 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9039 return Cmp;
9040
9041 // The instruction selector will select an FUCOM instruction instead of
9042 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9043 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9044 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9045 DebugLoc dl = Cmp.getDebugLoc();
9046 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9047 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9048 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9049 DAG.getConstant(8, MVT::i8));
9050 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9051 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9052}
9053
Evan Cheng4e544802012-12-05 00:10:38 +00009054static bool isAllOnes(SDValue V) {
9055 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9056 return C && C->isAllOnesValue();
9057}
9058
Evan Chengd40d03e2010-01-06 19:38:29 +00009059/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9060/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009061SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9062 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009063 SDValue Op0 = And.getOperand(0);
9064 SDValue Op1 = And.getOperand(1);
9065 if (Op0.getOpcode() == ISD::TRUNCATE)
9066 Op0 = Op0.getOperand(0);
9067 if (Op1.getOpcode() == ISD::TRUNCATE)
9068 Op1 = Op1.getOperand(0);
9069
Evan Chengd40d03e2010-01-06 19:38:29 +00009070 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009071 if (Op1.getOpcode() == ISD::SHL)
9072 std::swap(Op0, Op1);
9073 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009074 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9075 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009076 // If we looked past a truncate, check that it's only truncating away
9077 // known zeros.
9078 unsigned BitWidth = Op0.getValueSizeInBits();
9079 unsigned AndBitWidth = And.getValueSizeInBits();
9080 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009081 APInt Zeros, Ones;
9082 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009083 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9084 return SDValue();
9085 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009086 LHS = Op1;
9087 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009088 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009089 } else if (Op1.getOpcode() == ISD::Constant) {
9090 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009091 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009092 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009093
9094 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009095 LHS = AndLHS.getOperand(0);
9096 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009097 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009098
9099 // Use BT if the immediate can't be encoded in a TEST instruction.
9100 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9101 LHS = AndLHS;
9102 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9103 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009104 }
Evan Cheng0488db92007-09-25 01:57:46 +00009105
Evan Chengd40d03e2010-01-06 19:38:29 +00009106 if (LHS.getNode()) {
Evan Cheng4e544802012-12-05 00:10:38 +00009107 // If the LHS is of the form (x ^ -1) then replace the LHS with x and flip
9108 // the condition code later.
9109 bool Invert = false;
9110 if (LHS.getOpcode() == ISD::XOR && isAllOnes(LHS.getOperand(1))) {
9111 Invert = true;
9112 LHS = LHS.getOperand(0);
9113 }
9114
Evan Chenge5b51ac2010-04-17 06:13:15 +00009115 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009116 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009117 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009118 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009119 // Also promote i16 to i32 for performance / code size reason.
9120 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009121 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009122 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009123
Evan Chengd40d03e2010-01-06 19:38:29 +00009124 // If the operand types disagree, extend the shift amount to match. Since
9125 // BT ignores high bits (like shifts) we can use anyextend.
9126 if (LHS.getValueType() != RHS.getValueType())
9127 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009128
Evan Chengd40d03e2010-01-06 19:38:29 +00009129 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009130 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9131 // Flip the condition if the LHS was a not instruction
9132 if (Invert)
9133 Cond = X86::GetOppositeBranchCondition(Cond);
Evan Chengd40d03e2010-01-06 19:38:29 +00009134 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9135 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009136 }
9137
Evan Cheng54de3ea2010-01-05 06:52:31 +00009138 return SDValue();
9139}
9140
Craig Topper89af15e2011-09-18 08:03:58 +00009141// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009142// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009143static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper26827f32013-01-20 09:02:22 +00009144 MVT VT = Op.getValueType().getSimpleVT();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009145
Craig Topper7a9a28b2012-08-12 02:23:29 +00009146 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009147 "Unsupported value type for operation");
9148
Craig Topper66ddd152012-04-27 22:54:43 +00009149 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009150 DebugLoc dl = Op.getDebugLoc();
9151 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009152
9153 // Extract the LHS vectors
9154 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009155 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9156 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009157
9158 // Extract the RHS vectors
9159 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009160 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9161 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009162
9163 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009164 MVT EltVT = VT.getVectorElementType();
9165 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009166 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9167 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9168 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9169}
9170
Craig Topper26827f32013-01-20 09:02:22 +00009171static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9172 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009173 SDValue Cond;
9174 SDValue Op0 = Op.getOperand(0);
9175 SDValue Op1 = Op.getOperand(1);
9176 SDValue CC = Op.getOperand(2);
Craig Topper26827f32013-01-20 09:02:22 +00009177 MVT VT = Op.getValueType().getSimpleVT();
Nate Begeman30a0de92008-07-17 16:51:19 +00009178 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper26827f32013-01-20 09:02:22 +00009179 bool isFP = Op.getOperand(1).getValueType().getSimpleVT().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009180 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00009181
9182 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009183#ifndef NDEBUG
Craig Topper26827f32013-01-20 09:02:22 +00009184 MVT EltVT = Op0.getValueType().getVectorElementType().getSimpleVT();
Craig Topper523908d2012-08-13 02:34:03 +00009185 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9186#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009187
Craig Topper523908d2012-08-13 02:34:03 +00009188 unsigned SSECC;
Nate Begeman30a0de92008-07-17 16:51:19 +00009189 bool Swap = false;
9190
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00009191 // SSE Condition code mapping:
9192 // 0 - EQ
9193 // 1 - LT
9194 // 2 - LE
9195 // 3 - UNORD
9196 // 4 - NEQ
9197 // 5 - NLT
9198 // 6 - NLE
9199 // 7 - ORD
Nate Begeman30a0de92008-07-17 16:51:19 +00009200 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009201 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begemanfb8ead02008-07-25 19:05:58 +00009202 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00009203 case ISD::SETEQ: SSECC = 0; break;
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00009204 case ISD::SETOGT:
9205 case ISD::SETGT: Swap = true; // Fallthrough
Bruno Cardoso Lopes457d53d2011-09-12 21:24:07 +00009206 case ISD::SETLT:
9207 case ISD::SETOLT: SSECC = 1; break;
9208 case ISD::SETOGE:
9209 case ISD::SETGE: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00009210 case ISD::SETLE:
9211 case ISD::SETOLE: SSECC = 2; break;
9212 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009213 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00009214 case ISD::SETNE: SSECC = 4; break;
Craig Topper523908d2012-08-13 02:34:03 +00009215 case ISD::SETULE: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00009216 case ISD::SETUGE: SSECC = 5; break;
Craig Topper523908d2012-08-13 02:34:03 +00009217 case ISD::SETULT: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00009218 case ISD::SETUGT: SSECC = 6; break;
9219 case ISD::SETO: SSECC = 7; break;
Craig Topper523908d2012-08-13 02:34:03 +00009220 case ISD::SETUEQ:
9221 case ISD::SETONE: SSECC = 8; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009222 }
9223 if (Swap)
9224 std::swap(Op0, Op1);
9225
Nate Begemanfb8ead02008-07-25 19:05:58 +00009226 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009227 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009228 unsigned CC0, CC1;
9229 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009230 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009231 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9232 } else {
9233 assert(SetCCOpcode == ISD::SETONE);
9234 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009235 }
Craig Topper523908d2012-08-13 02:34:03 +00009236
9237 SDValue Cmp0 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9238 DAG.getConstant(CC0, MVT::i8));
9239 SDValue Cmp1 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9240 DAG.getConstant(CC1, MVT::i8));
9241 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009242 }
9243 // Handle all other FP comparisons here.
Craig Topper1906d322012-01-22 23:36:02 +00009244 return DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9245 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009246 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009247
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009248 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009249 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009250 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009251
Nate Begeman30a0de92008-07-17 16:51:19 +00009252 // We are handling one of the integer comparisons here. Since SSE only has
9253 // GT and EQ comparisons for integer, swapping operands and multiple
9254 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009255 unsigned Opc;
Nate Begeman30a0de92008-07-17 16:51:19 +00009256 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009257
Nate Begeman30a0de92008-07-17 16:51:19 +00009258 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009259 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009260 case ISD::SETNE: Invert = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009261 case ISD::SETEQ: Opc = X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009262 case ISD::SETLT: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009263 case ISD::SETGT: Opc = X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009264 case ISD::SETGE: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009265 case ISD::SETLE: Opc = X86ISD::PCMPGT; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009266 case ISD::SETULT: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009267 case ISD::SETUGT: Opc = X86ISD::PCMPGT; FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009268 case ISD::SETUGE: Swap = true;
Craig Topper67609fd2012-01-22 22:42:16 +00009269 case ISD::SETULE: Opc = X86ISD::PCMPGT; FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009270 }
9271 if (Swap)
9272 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009273
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009274 // Check that the operation in question is available (most are plain SSE2,
9275 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009276 if (VT == MVT::v2i64) {
9277 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42())
9278 return SDValue();
Benjamin Kramer382ed782012-12-25 12:54:19 +00009279 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9280 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +00009281 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +00009282 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
9283
9284 // First cast everything to the right type,
9285 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9286 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9287
9288 // Do the compare.
9289 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
9290
9291 // Make sure the lower and upper halves are both all-ones.
Benjamin Kramer99f78062012-12-25 13:09:08 +00009292 const int Mask[] = { 1, 0, 3, 2 };
9293 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
9294 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +00009295
9296 if (Invert)
9297 Result = DAG.getNOT(dl, Result, MVT::v4i32);
9298
9299 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9300 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009301 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009302
Nate Begeman30a0de92008-07-17 16:51:19 +00009303 // Since SSE has no unsigned integer comparisons, we need to flip the sign
9304 // bits of the inputs before performing those operations.
9305 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00009306 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00009307 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
9308 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00009309 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00009310 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
9311 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00009312 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
9313 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00009314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009315
Dale Johannesenace16102009-02-03 19:33:06 +00009316 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009317
9318 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00009319 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00009320 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00009321
Nate Begeman30a0de92008-07-17 16:51:19 +00009322 return Result;
9323}
Evan Cheng0488db92007-09-25 01:57:46 +00009324
Craig Topper26827f32013-01-20 09:02:22 +00009325SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
9326
9327 MVT VT = Op.getValueType().getSimpleVT();
9328
9329 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
9330
9331 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
9332 SDValue Op0 = Op.getOperand(0);
9333 SDValue Op1 = Op.getOperand(1);
9334 DebugLoc dl = Op.getDebugLoc();
9335 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
9336
9337 // Optimize to BT if possible.
9338 // Lower (X & (1 << N)) == 0 to BT(X, N).
9339 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
9340 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
9341 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
9342 Op1.getOpcode() == ISD::Constant &&
9343 cast<ConstantSDNode>(Op1)->isNullValue() &&
9344 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9345 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
9346 if (NewSetCC.getNode())
9347 return NewSetCC;
9348 }
9349
9350 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
9351 // these.
9352 if (Op1.getOpcode() == ISD::Constant &&
9353 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
9354 cast<ConstantSDNode>(Op1)->isNullValue()) &&
9355 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9356
9357 // If the input is a setcc, then reuse the input setcc or use a new one with
9358 // the inverted condition.
9359 if (Op0.getOpcode() == X86ISD::SETCC) {
9360 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
9361 bool Invert = (CC == ISD::SETNE) ^
9362 cast<ConstantSDNode>(Op1)->isNullValue();
9363 if (!Invert) return Op0;
9364
9365 CCode = X86::GetOppositeBranchCondition(CCode);
9366 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9367 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
9368 }
9369 }
9370
9371 bool isFP = Op1.getValueType().getSimpleVT().isFloatingPoint();
9372 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
9373 if (X86CC == X86::COND_INVALID)
9374 return SDValue();
9375
9376 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
9377 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
9378 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9379 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
9380}
9381
Evan Cheng370e5342008-12-03 08:38:43 +00009382// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00009383static bool isX86LogicalCmp(SDValue Op) {
9384 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009385 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
9386 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +00009387 return true;
9388 if (Op.getResNo() == 1 &&
9389 (Opc == X86ISD::ADD ||
9390 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00009391 Opc == X86ISD::ADC ||
9392 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00009393 Opc == X86ISD::SMUL ||
9394 Opc == X86ISD::UMUL ||
9395 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00009396 Opc == X86ISD::DEC ||
9397 Opc == X86ISD::OR ||
9398 Opc == X86ISD::XOR ||
9399 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00009400 return true;
9401
Chris Lattner9637d5b2010-12-05 07:49:54 +00009402 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
9403 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009404
Dan Gohman076aee32009-03-04 19:44:21 +00009405 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00009406}
9407
Chris Lattnera2b56002010-12-05 01:23:24 +00009408static bool isZero(SDValue V) {
9409 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9410 return C && C->isNullValue();
9411}
9412
Evan Chengb64dd5f2012-08-07 22:21:00 +00009413static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
9414 if (V.getOpcode() != ISD::TRUNCATE)
9415 return false;
9416
9417 SDValue VOp0 = V.getOperand(0);
9418 unsigned InBits = VOp0.getValueSizeInBits();
9419 unsigned Bits = V.getValueSizeInBits();
9420 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
9421}
9422
Dan Gohmand858e902010-04-17 15:26:15 +00009423SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00009424 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00009425 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00009426 SDValue Op1 = Op.getOperand(1);
9427 SDValue Op2 = Op.getOperand(2);
9428 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00009429 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00009430
Dan Gohman1a492952009-10-20 16:22:37 +00009431 if (Cond.getOpcode() == ISD::SETCC) {
9432 SDValue NewCond = LowerSETCC(Cond, DAG);
9433 if (NewCond.getNode())
9434 Cond = NewCond;
9435 }
Evan Cheng734503b2006-09-11 02:19:56 +00009436
Chris Lattnera2b56002010-12-05 01:23:24 +00009437 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00009438 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00009439 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00009440 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009441 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00009442 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
9443 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009444 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009445
Chris Lattnera2b56002010-12-05 01:23:24 +00009446 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009447
9448 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00009449 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
9450 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00009451
9452 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +00009453 // Apply further optimizations for special cases
9454 // (select (x != 0), -1, 0) -> neg & sbb
9455 // (select (x == 0), 0, -1) -> neg & sbb
9456 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +00009457 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +00009458 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
9459 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +00009460 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
9461 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +00009462 CmpOp0);
9463 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9464 DAG.getConstant(X86::COND_B, MVT::i8),
9465 SDValue(Neg.getNode(), 1));
9466 return Res;
9467 }
9468
Chris Lattnera2b56002010-12-05 01:23:24 +00009469 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
9470 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009471 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009472
Chris Lattner96908b12010-12-05 02:00:51 +00009473 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00009474 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9475 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009476
Chris Lattner96908b12010-12-05 02:00:51 +00009477 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
9478 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009479
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009480 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00009481 if (N2C == 0 || !N2C->isNullValue())
9482 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
9483 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009484 }
9485 }
9486
Chris Lattnera2b56002010-12-05 01:23:24 +00009487 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00009488 if (Cond.getOpcode() == ISD::AND &&
9489 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9490 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009491 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00009492 Cond = Cond.getOperand(0);
9493 }
9494
Evan Cheng3f41d662007-10-08 22:16:29 +00009495 // If condition flag is set by a X86ISD::CMP, then use it as the condition
9496 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +00009497 unsigned CondOpcode = Cond.getOpcode();
9498 if (CondOpcode == X86ISD::SETCC ||
9499 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00009500 CC = Cond.getOperand(0);
9501
Dan Gohman475871a2008-07-27 21:46:04 +00009502 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00009503 unsigned Opc = Cmp.getOpcode();
Craig Toppera080daf2013-01-20 21:50:27 +00009504 MVT VT = Op.getValueType().getSimpleVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00009505
Evan Cheng3f41d662007-10-08 22:16:29 +00009506 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009507 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00009508 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00009509 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00009510
Chris Lattnerd1980a52009-03-12 06:52:53 +00009511 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
9512 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00009513 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00009514 addTest = false;
9515 }
Dan Gohman65fd6562011-11-03 21:49:52 +00009516 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9517 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9518 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9519 Cond.getOperand(0).getValueType() != MVT::i8)) {
9520 SDValue LHS = Cond.getOperand(0);
9521 SDValue RHS = Cond.getOperand(1);
9522 unsigned X86Opcode;
9523 unsigned X86Cond;
9524 SDVTList VTs;
9525 switch (CondOpcode) {
9526 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9527 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9528 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9529 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9530 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9531 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9532 default: llvm_unreachable("unexpected overflowing operator");
9533 }
9534 if (CondOpcode == ISD::UMULO)
9535 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9536 MVT::i32);
9537 else
9538 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9539
9540 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
9541
9542 if (CondOpcode == ISD::UMULO)
9543 Cond = X86Op.getValue(2);
9544 else
9545 Cond = X86Op.getValue(1);
9546
9547 CC = DAG.getConstant(X86Cond, MVT::i8);
9548 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +00009549 }
9550
9551 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +00009552 // Look pass the truncate if the high bits are known zero.
9553 if (isTruncWithZeroHighBitsInput(Cond, DAG))
9554 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +00009555
9556 // We know the result of AND is compared against zero. Try to match
9557 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009558 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00009559 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00009560 if (NewSetCC.getNode()) {
9561 CC = NewSetCC.getOperand(0);
9562 Cond = NewSetCC.getOperand(1);
9563 addTest = false;
9564 }
9565 }
9566 }
9567
9568 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009569 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00009570 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00009571 }
9572
Benjamin Kramere915ff32010-12-22 23:09:28 +00009573 // a < b ? -1 : 0 -> RES = ~setcc_carry
9574 // a < b ? 0 : -1 -> RES = setcc_carry
9575 // a >= b ? -1 : 0 -> RES = setcc_carry
9576 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +00009577 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009578 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +00009579 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
9580
9581 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
9582 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
9583 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9584 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
9585 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
9586 return DAG.getNOT(DL, Res, Res.getValueType());
9587 return Res;
9588 }
9589 }
9590
Benjamin Kramer444dcce2012-10-13 10:39:49 +00009591 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
9592 // widen the cmov and push the truncate through. This avoids introducing a new
9593 // branch during isel and doesn't add any extensions.
9594 if (Op.getValueType() == MVT::i8 &&
9595 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
9596 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
9597 if (T1.getValueType() == T2.getValueType() &&
9598 // Blacklist CopyFromReg to avoid partial register stalls.
9599 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
9600 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +00009601 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +00009602 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
9603 }
9604 }
9605
Evan Cheng0488db92007-09-25 01:57:46 +00009606 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
9607 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009608 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00009609 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00009610 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00009611}
9612
Nadav Rotem1a330af2012-12-27 22:47:16 +00009613SDValue X86TargetLowering::LowerSIGN_EXTEND(SDValue Op,
9614 SelectionDAG &DAG) const {
Craig Toppera080daf2013-01-20 21:50:27 +00009615 MVT VT = Op->getValueType(0).getSimpleVT();
Nadav Rotem1a330af2012-12-27 22:47:16 +00009616 SDValue In = Op->getOperand(0);
Craig Toppera080daf2013-01-20 21:50:27 +00009617 MVT InVT = In.getValueType().getSimpleVT();
Nadav Rotem1a330af2012-12-27 22:47:16 +00009618 DebugLoc dl = Op->getDebugLoc();
9619
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009620 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
9621 (VT != MVT::v8i32 || InVT != MVT::v8i16))
9622 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +00009623
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009624 if (Subtarget->hasInt256())
9625 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009626
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009627 // Optimize vectors in AVX mode
9628 // Sign extend v8i16 to v8i32 and
9629 // v4i32 to v4i64
9630 //
9631 // Divide input vector into two parts
9632 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
9633 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
9634 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +00009635
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009636 unsigned NumElems = InVT.getVectorNumElements();
9637 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009638
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009639 SmallVector<int,8> ShufMask1(NumElems, -1);
9640 for (unsigned i = 0; i != NumElems/2; ++i)
9641 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +00009642
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009643 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009644
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009645 SmallVector<int,8> ShufMask2(NumElems, -1);
9646 for (unsigned i = 0; i != NumElems/2; ++i)
9647 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +00009648
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009649 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009650
Craig Toppera080daf2013-01-20 21:50:27 +00009651 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009652 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009653
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009654 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
9655 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009656
Nadav Rotem587fb1d2012-12-27 23:08:05 +00009657 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +00009658}
9659
Evan Cheng370e5342008-12-03 08:38:43 +00009660// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
9661// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
9662// from the AND / OR.
9663static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
9664 Opc = Op.getOpcode();
9665 if (Opc != ISD::OR && Opc != ISD::AND)
9666 return false;
9667 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9668 Op.getOperand(0).hasOneUse() &&
9669 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
9670 Op.getOperand(1).hasOneUse());
9671}
9672
Evan Cheng961d6d42009-02-02 08:19:07 +00009673// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
9674// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00009675static bool isXor1OfSetCC(SDValue Op) {
9676 if (Op.getOpcode() != ISD::XOR)
9677 return false;
9678 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9679 if (N1C && N1C->getAPIntValue() == 1) {
9680 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9681 Op.getOperand(0).hasOneUse();
9682 }
9683 return false;
9684}
9685
Dan Gohmand858e902010-04-17 15:26:15 +00009686SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00009687 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00009688 SDValue Chain = Op.getOperand(0);
9689 SDValue Cond = Op.getOperand(1);
9690 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009691 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00009692 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +00009693 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +00009694
Dan Gohman1a492952009-10-20 16:22:37 +00009695 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +00009696 // Check for setcc([su]{add,sub,mul}o == 0).
9697 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
9698 isa<ConstantSDNode>(Cond.getOperand(1)) &&
9699 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
9700 Cond.getOperand(0).getResNo() == 1 &&
9701 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
9702 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
9703 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
9704 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
9705 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
9706 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
9707 Inverted = true;
9708 Cond = Cond.getOperand(0);
9709 } else {
9710 SDValue NewCond = LowerSETCC(Cond, DAG);
9711 if (NewCond.getNode())
9712 Cond = NewCond;
9713 }
Dan Gohman1a492952009-10-20 16:22:37 +00009714 }
Chris Lattnere55484e2008-12-25 05:34:37 +00009715#if 0
9716 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00009717 else if (Cond.getOpcode() == X86ISD::ADD ||
9718 Cond.getOpcode() == X86ISD::SUB ||
9719 Cond.getOpcode() == X86ISD::SMUL ||
9720 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00009721 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00009722#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00009723
Evan Chengad9c0a32009-12-15 00:53:42 +00009724 // Look pass (and (setcc_carry (cmp ...)), 1).
9725 if (Cond.getOpcode() == ISD::AND &&
9726 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9727 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009728 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00009729 Cond = Cond.getOperand(0);
9730 }
9731
Evan Cheng3f41d662007-10-08 22:16:29 +00009732 // If condition flag is set by a X86ISD::CMP, then use it as the condition
9733 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +00009734 unsigned CondOpcode = Cond.getOpcode();
9735 if (CondOpcode == X86ISD::SETCC ||
9736 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00009737 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009738
Dan Gohman475871a2008-07-27 21:46:04 +00009739 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00009740 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00009741 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00009742 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00009743 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00009744 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00009745 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00009746 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00009747 default: break;
9748 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00009749 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00009750 // These can only come from an arithmetic instruction with overflow,
9751 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00009752 Cond = Cond.getNode()->getOperand(1);
9753 addTest = false;
9754 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009755 }
Evan Cheng0488db92007-09-25 01:57:46 +00009756 }
Dan Gohman65fd6562011-11-03 21:49:52 +00009757 }
9758 CondOpcode = Cond.getOpcode();
9759 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9760 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9761 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9762 Cond.getOperand(0).getValueType() != MVT::i8)) {
9763 SDValue LHS = Cond.getOperand(0);
9764 SDValue RHS = Cond.getOperand(1);
9765 unsigned X86Opcode;
9766 unsigned X86Cond;
9767 SDVTList VTs;
9768 switch (CondOpcode) {
9769 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9770 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9771 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9772 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9773 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9774 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9775 default: llvm_unreachable("unexpected overflowing operator");
9776 }
9777 if (Inverted)
9778 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
9779 if (CondOpcode == ISD::UMULO)
9780 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9781 MVT::i32);
9782 else
9783 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9784
9785 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
9786
9787 if (CondOpcode == ISD::UMULO)
9788 Cond = X86Op.getValue(2);
9789 else
9790 Cond = X86Op.getValue(1);
9791
9792 CC = DAG.getConstant(X86Cond, MVT::i8);
9793 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +00009794 } else {
9795 unsigned CondOpc;
9796 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
9797 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00009798 if (CondOpc == ISD::OR) {
9799 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
9800 // two branches instead of an explicit OR instruction with a
9801 // separate test.
9802 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00009803 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00009804 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009805 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00009806 Chain, Dest, CC, Cmp);
9807 CC = Cond.getOperand(1).getOperand(0);
9808 Cond = Cmp;
9809 addTest = false;
9810 }
9811 } else { // ISD::AND
9812 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
9813 // two branches instead of an explicit AND instruction with a
9814 // separate test. However, we only do this if this block doesn't
9815 // have a fall-through edge, because this requires an explicit
9816 // jmp when the condition is false.
9817 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00009818 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00009819 Op.getNode()->hasOneUse()) {
9820 X86::CondCode CCode =
9821 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9822 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00009823 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00009824 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00009825 // Look for an unconditional branch following this conditional branch.
9826 // We need this because we need to reverse the successors in order
9827 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00009828 if (User->getOpcode() == ISD::BR) {
9829 SDValue FalseBB = User->getOperand(1);
9830 SDNode *NewBR =
9831 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00009832 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00009833 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00009834 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00009835
Dale Johannesene4d209d2009-02-03 20:21:25 +00009836 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00009837 Chain, Dest, CC, Cmp);
9838 X86::CondCode CCode =
9839 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
9840 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00009841 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00009842 Cond = Cmp;
9843 addTest = false;
9844 }
9845 }
Dan Gohman279c22e2008-10-21 03:29:32 +00009846 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00009847 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
9848 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
9849 // It should be transformed during dag combiner except when the condition
9850 // is set by a arithmetics with overflow node.
9851 X86::CondCode CCode =
9852 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9853 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00009854 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00009855 Cond = Cond.getOperand(0).getOperand(1);
9856 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +00009857 } else if (Cond.getOpcode() == ISD::SETCC &&
9858 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
9859 // For FCMP_OEQ, we can emit
9860 // two branches instead of an explicit AND instruction with a
9861 // separate test. However, we only do this if this block doesn't
9862 // have a fall-through edge, because this requires an explicit
9863 // jmp when the condition is false.
9864 if (Op.getNode()->hasOneUse()) {
9865 SDNode *User = *Op.getNode()->use_begin();
9866 // Look for an unconditional branch following this conditional branch.
9867 // We need this because we need to reverse the successors in order
9868 // to implement FCMP_OEQ.
9869 if (User->getOpcode() == ISD::BR) {
9870 SDValue FalseBB = User->getOperand(1);
9871 SDNode *NewBR =
9872 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9873 assert(NewBR == User);
9874 (void)NewBR;
9875 Dest = FalseBB;
9876
9877 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9878 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009879 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +00009880 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9881 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9882 Chain, Dest, CC, Cmp);
9883 CC = DAG.getConstant(X86::COND_P, MVT::i8);
9884 Cond = Cmp;
9885 addTest = false;
9886 }
9887 }
9888 } else if (Cond.getOpcode() == ISD::SETCC &&
9889 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
9890 // For FCMP_UNE, we can emit
9891 // two branches instead of an explicit AND instruction with a
9892 // separate test. However, we only do this if this block doesn't
9893 // have a fall-through edge, because this requires an explicit
9894 // jmp when the condition is false.
9895 if (Op.getNode()->hasOneUse()) {
9896 SDNode *User = *Op.getNode()->use_begin();
9897 // Look for an unconditional branch following this conditional branch.
9898 // We need this because we need to reverse the successors in order
9899 // to implement FCMP_UNE.
9900 if (User->getOpcode() == ISD::BR) {
9901 SDValue FalseBB = User->getOperand(1);
9902 SDNode *NewBR =
9903 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9904 assert(NewBR == User);
9905 (void)NewBR;
9906
9907 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9908 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009909 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +00009910 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9911 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9912 Chain, Dest, CC, Cmp);
9913 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
9914 Cond = Cmp;
9915 addTest = false;
9916 Dest = FalseBB;
9917 }
9918 }
Dan Gohman279c22e2008-10-21 03:29:32 +00009919 }
Evan Cheng0488db92007-09-25 01:57:46 +00009920 }
9921
9922 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +00009923 // Look pass the truncate if the high bits are known zero.
9924 if (isTruncWithZeroHighBitsInput(Cond, DAG))
9925 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +00009926
9927 // We know the result of AND is compared against zero. Try to match
9928 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009929 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009930 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
9931 if (NewSetCC.getNode()) {
9932 CC = NewSetCC.getOperand(0);
9933 Cond = NewSetCC.getOperand(1);
9934 addTest = false;
9935 }
9936 }
9937 }
9938
9939 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009940 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00009941 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00009942 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009943 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009944 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00009945 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00009946}
9947
Anton Korobeynikove060b532007-04-17 19:34:00 +00009948// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
9949// Calls to _alloca is needed to probe the stack when allocating more than 4k
9950// bytes in one go. Touching the stack at 4K increments is necessary to ensure
9951// that the guard pages used by the OS virtual memory manager are allocated in
9952// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00009953SDValue
9954X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009955 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009956 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +00009957 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009958 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +00009959 "are being used");
9960 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009961 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00009962
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009963 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00009964 SDValue Chain = Op.getOperand(0);
9965 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009966 // FIXME: Ensure alignment here
9967
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009968 bool Is64Bit = Subtarget->is64Bit();
9969 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00009970
Nick Lewycky8a8d4792011-12-02 22:16:29 +00009971 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009972 MachineFunction &MF = DAG.getMachineFunction();
9973 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009974
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009975 if (Is64Bit) {
9976 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +00009977 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009978 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00009979
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009980 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +00009981 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009982 if (I->hasNestAttr())
9983 report_fatal_error("Cannot use segmented stacks with functions that "
9984 "have nested arguments.");
9985 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00009986
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009987 const TargetRegisterClass *AddrRegClass =
9988 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
9989 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
9990 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
9991 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
9992 DAG.getRegister(Vreg, SPTy));
9993 SDValue Ops1[2] = { Value, Chain };
9994 return DAG.getMergeValues(Ops1, 2, dl);
9995 } else {
9996 SDValue Flag;
9997 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00009998
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009999 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10000 Flag = Chain.getValue(1);
10001 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010002
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010003 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10004 Flag = Chain.getValue(1);
10005
Michael Liaoc5c970e2012-10-31 04:14:09 +000010006 Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10007 SPTy).getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010008
10009 SDValue Ops1[2] = { Chain.getValue(0), Chain };
10010 return DAG.getMergeValues(Ops1, 2, dl);
10011 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010012}
10013
Dan Gohmand858e902010-04-17 15:26:15 +000010014SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010015 MachineFunction &MF = DAG.getMachineFunction();
10016 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10017
Dan Gohman69de1932008-02-06 22:27:42 +000010018 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +000010019 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +000010020
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010021 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010022 // vastart just stores the address of the VarArgsFrameIndex slot into the
10023 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010024 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10025 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010026 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10027 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010028 }
10029
10030 // __va_list_tag:
10031 // gp_offset (0 - 6 * 8)
10032 // fp_offset (48 - 48 + 8 * 16)
10033 // overflow_arg_area (point to parameters coming in memory).
10034 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010035 SmallVector<SDValue, 8> MemOps;
10036 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010037 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010038 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010039 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10040 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010041 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010042 MemOps.push_back(Store);
10043
10044 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010045 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010046 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010047 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010048 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10049 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010050 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010051 MemOps.push_back(Store);
10052
10053 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010054 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010055 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010056 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10057 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010058 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10059 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010060 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010061 MemOps.push_back(Store);
10062
10063 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010064 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010065 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010066 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10067 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010068 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10069 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010070 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010071 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010072 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010073}
10074
Dan Gohmand858e902010-04-17 15:26:15 +000010075SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010076 assert(Subtarget->is64Bit() &&
10077 "LowerVAARG only handles 64-bit va_arg!");
10078 assert((Subtarget->isTargetLinux() ||
10079 Subtarget->isTargetDarwin()) &&
10080 "Unhandled target in LowerVAARG");
10081 assert(Op.getNode()->getNumOperands() == 4);
10082 SDValue Chain = Op.getOperand(0);
10083 SDValue SrcPtr = Op.getOperand(1);
10084 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10085 unsigned Align = Op.getConstantOperandVal(3);
10086 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +000010087
Dan Gohman320afb82010-10-12 18:00:49 +000010088 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010089 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010090 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010091 uint8_t ArgMode;
10092
10093 // Decide which area this value should be read from.
10094 // TODO: Implement the AMD64 ABI in its entirety. This simple
10095 // selection mechanism works only for the basic types.
10096 if (ArgVT == MVT::f80) {
10097 llvm_unreachable("va_arg for f80 not yet implemented");
10098 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10099 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10100 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10101 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10102 } else {
10103 llvm_unreachable("Unhandled argument type in LowerVAARG");
10104 }
10105
10106 if (ArgMode == 2) {
10107 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010108 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010109 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010110 .getFunction()->getAttributes()
10111 .hasAttribute(AttributeSet::FunctionIndex,
10112 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010113 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010114 }
10115
10116 // Insert VAARG_64 node into the DAG
10117 // VAARG_64 returns two values: Variable Argument Address, Chain
10118 SmallVector<SDValue, 11> InstOps;
10119 InstOps.push_back(Chain);
10120 InstOps.push_back(SrcPtr);
10121 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10122 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10123 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10124 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10125 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10126 VTs, &InstOps[0], InstOps.size(),
10127 MVT::i64,
10128 MachinePointerInfo(SV),
10129 /*Align=*/0,
10130 /*Volatile=*/false,
10131 /*ReadMem=*/true,
10132 /*WriteMem=*/true);
10133 Chain = VAARG.getValue(1);
10134
10135 // Load the next argument and return it
10136 return DAG.getLoad(ArgVT, dl,
10137 Chain,
10138 VAARG,
10139 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010140 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010141}
10142
Craig Topper55b24052012-09-11 06:15:32 +000010143static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10144 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010145 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010146 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010147 SDValue Chain = Op.getOperand(0);
10148 SDValue DstPtr = Op.getOperand(1);
10149 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010150 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10151 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +000010152 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +000010153
Chris Lattnere72f2022010-09-21 05:40:29 +000010154 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010155 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010156 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010157 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010158}
10159
Craig Topper80e46362012-01-23 06:16:53 +000010160// getTargetVShiftNOde - Handle vector element shifts where the shift amount
10161// may or may not be a constant. Takes immediate version of shift as input.
10162static SDValue getTargetVShiftNode(unsigned Opc, DebugLoc dl, EVT VT,
10163 SDValue SrcOp, SDValue ShAmt,
10164 SelectionDAG &DAG) {
10165 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10166
10167 if (isa<ConstantSDNode>(ShAmt)) {
Nadav Rotemd896e242012-07-15 20:27:43 +000010168 // Constant may be a TargetConstant. Use a regular constant.
10169 uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Craig Topper80e46362012-01-23 06:16:53 +000010170 switch (Opc) {
10171 default: llvm_unreachable("Unknown target vector shift node");
10172 case X86ISD::VSHLI:
10173 case X86ISD::VSRLI:
10174 case X86ISD::VSRAI:
Nadav Rotemd896e242012-07-15 20:27:43 +000010175 return DAG.getNode(Opc, dl, VT, SrcOp,
10176 DAG.getConstant(ShiftAmt, MVT::i32));
Craig Topper80e46362012-01-23 06:16:53 +000010177 }
10178 }
10179
10180 // Change opcode to non-immediate version
10181 switch (Opc) {
10182 default: llvm_unreachable("Unknown target vector shift node");
10183 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10184 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10185 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10186 }
10187
10188 // Need to build a vector containing shift amount
10189 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10190 SDValue ShOps[4];
10191 ShOps[0] = ShAmt;
10192 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000010193 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000010194 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000010195
10196 // The return type has to be a 128-bit type with the same element
10197 // type as the input type.
10198 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10199 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10200
10201 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000010202 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10203}
10204
Craig Topper55b24052012-09-11 06:15:32 +000010205static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010206 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000010207 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000010208 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000010209 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000010210 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000010211 case Intrinsic::x86_sse_comieq_ss:
10212 case Intrinsic::x86_sse_comilt_ss:
10213 case Intrinsic::x86_sse_comile_ss:
10214 case Intrinsic::x86_sse_comigt_ss:
10215 case Intrinsic::x86_sse_comige_ss:
10216 case Intrinsic::x86_sse_comineq_ss:
10217 case Intrinsic::x86_sse_ucomieq_ss:
10218 case Intrinsic::x86_sse_ucomilt_ss:
10219 case Intrinsic::x86_sse_ucomile_ss:
10220 case Intrinsic::x86_sse_ucomigt_ss:
10221 case Intrinsic::x86_sse_ucomige_ss:
10222 case Intrinsic::x86_sse_ucomineq_ss:
10223 case Intrinsic::x86_sse2_comieq_sd:
10224 case Intrinsic::x86_sse2_comilt_sd:
10225 case Intrinsic::x86_sse2_comile_sd:
10226 case Intrinsic::x86_sse2_comigt_sd:
10227 case Intrinsic::x86_sse2_comige_sd:
10228 case Intrinsic::x86_sse2_comineq_sd:
10229 case Intrinsic::x86_sse2_ucomieq_sd:
10230 case Intrinsic::x86_sse2_ucomilt_sd:
10231 case Intrinsic::x86_sse2_ucomile_sd:
10232 case Intrinsic::x86_sse2_ucomigt_sd:
10233 case Intrinsic::x86_sse2_ucomige_sd:
10234 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000010235 unsigned Opc;
10236 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000010237 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000010238 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010239 case Intrinsic::x86_sse_comieq_ss:
10240 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010241 Opc = X86ISD::COMI;
10242 CC = ISD::SETEQ;
10243 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000010244 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010245 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010246 Opc = X86ISD::COMI;
10247 CC = ISD::SETLT;
10248 break;
10249 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010250 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010251 Opc = X86ISD::COMI;
10252 CC = ISD::SETLE;
10253 break;
10254 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010255 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010256 Opc = X86ISD::COMI;
10257 CC = ISD::SETGT;
10258 break;
10259 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010260 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010261 Opc = X86ISD::COMI;
10262 CC = ISD::SETGE;
10263 break;
10264 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010265 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010266 Opc = X86ISD::COMI;
10267 CC = ISD::SETNE;
10268 break;
10269 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010270 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010271 Opc = X86ISD::UCOMI;
10272 CC = ISD::SETEQ;
10273 break;
10274 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010275 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010276 Opc = X86ISD::UCOMI;
10277 CC = ISD::SETLT;
10278 break;
10279 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010280 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010281 Opc = X86ISD::UCOMI;
10282 CC = ISD::SETLE;
10283 break;
10284 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010285 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010286 Opc = X86ISD::UCOMI;
10287 CC = ISD::SETGT;
10288 break;
10289 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000010290 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000010291 Opc = X86ISD::UCOMI;
10292 CC = ISD::SETGE;
10293 break;
10294 case Intrinsic::x86_sse_ucomineq_ss:
10295 case Intrinsic::x86_sse2_ucomineq_sd:
10296 Opc = X86ISD::UCOMI;
10297 CC = ISD::SETNE;
10298 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000010299 }
Evan Cheng734503b2006-09-11 02:19:56 +000010300
Dan Gohman475871a2008-07-27 21:46:04 +000010301 SDValue LHS = Op.getOperand(1);
10302 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000010303 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000010304 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010305 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
10306 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10307 DAG.getConstant(X86CC, MVT::i8), Cond);
10308 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000010309 }
Craig Topper6d688152012-08-14 07:43:25 +000010310
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010311 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000010312 case Intrinsic::x86_sse2_pmulu_dq:
10313 case Intrinsic::x86_avx2_pmulu_dq:
10314 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
10315 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010316
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000010317 // SSE2/AVX2 sub with unsigned saturation intrinsics
10318 case Intrinsic::x86_sse2_psubus_b:
10319 case Intrinsic::x86_sse2_psubus_w:
10320 case Intrinsic::x86_avx2_psubus_b:
10321 case Intrinsic::x86_avx2_psubus_w:
10322 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
10323 Op.getOperand(1), Op.getOperand(2));
10324
Craig Topper6d688152012-08-14 07:43:25 +000010325 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010326 case Intrinsic::x86_sse3_hadd_ps:
10327 case Intrinsic::x86_sse3_hadd_pd:
10328 case Intrinsic::x86_avx_hadd_ps_256:
10329 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000010330 case Intrinsic::x86_sse3_hsub_ps:
10331 case Intrinsic::x86_sse3_hsub_pd:
10332 case Intrinsic::x86_avx_hsub_ps_256:
10333 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000010334 case Intrinsic::x86_ssse3_phadd_w_128:
10335 case Intrinsic::x86_ssse3_phadd_d_128:
10336 case Intrinsic::x86_avx2_phadd_w:
10337 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000010338 case Intrinsic::x86_ssse3_phsub_w_128:
10339 case Intrinsic::x86_ssse3_phsub_d_128:
10340 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000010341 case Intrinsic::x86_avx2_phsub_d: {
10342 unsigned Opcode;
10343 switch (IntNo) {
10344 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10345 case Intrinsic::x86_sse3_hadd_ps:
10346 case Intrinsic::x86_sse3_hadd_pd:
10347 case Intrinsic::x86_avx_hadd_ps_256:
10348 case Intrinsic::x86_avx_hadd_pd_256:
10349 Opcode = X86ISD::FHADD;
10350 break;
10351 case Intrinsic::x86_sse3_hsub_ps:
10352 case Intrinsic::x86_sse3_hsub_pd:
10353 case Intrinsic::x86_avx_hsub_ps_256:
10354 case Intrinsic::x86_avx_hsub_pd_256:
10355 Opcode = X86ISD::FHSUB;
10356 break;
10357 case Intrinsic::x86_ssse3_phadd_w_128:
10358 case Intrinsic::x86_ssse3_phadd_d_128:
10359 case Intrinsic::x86_avx2_phadd_w:
10360 case Intrinsic::x86_avx2_phadd_d:
10361 Opcode = X86ISD::HADD;
10362 break;
10363 case Intrinsic::x86_ssse3_phsub_w_128:
10364 case Intrinsic::x86_ssse3_phsub_d_128:
10365 case Intrinsic::x86_avx2_phsub_w:
10366 case Intrinsic::x86_avx2_phsub_d:
10367 Opcode = X86ISD::HSUB;
10368 break;
10369 }
10370 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000010371 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010372 }
10373
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010374 // SSE2/SSE41/AVX2 integer max/min intrinsics.
10375 case Intrinsic::x86_sse2_pmaxu_b:
10376 case Intrinsic::x86_sse41_pmaxuw:
10377 case Intrinsic::x86_sse41_pmaxud:
10378 case Intrinsic::x86_avx2_pmaxu_b:
10379 case Intrinsic::x86_avx2_pmaxu_w:
10380 case Intrinsic::x86_avx2_pmaxu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010381 case Intrinsic::x86_sse2_pminu_b:
10382 case Intrinsic::x86_sse41_pminuw:
10383 case Intrinsic::x86_sse41_pminud:
10384 case Intrinsic::x86_avx2_pminu_b:
10385 case Intrinsic::x86_avx2_pminu_w:
10386 case Intrinsic::x86_avx2_pminu_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010387 case Intrinsic::x86_sse41_pmaxsb:
10388 case Intrinsic::x86_sse2_pmaxs_w:
10389 case Intrinsic::x86_sse41_pmaxsd:
10390 case Intrinsic::x86_avx2_pmaxs_b:
10391 case Intrinsic::x86_avx2_pmaxs_w:
10392 case Intrinsic::x86_avx2_pmaxs_d:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010393 case Intrinsic::x86_sse41_pminsb:
10394 case Intrinsic::x86_sse2_pmins_w:
10395 case Intrinsic::x86_sse41_pminsd:
10396 case Intrinsic::x86_avx2_pmins_b:
10397 case Intrinsic::x86_avx2_pmins_w:
Craig Topper6f57f392012-12-29 17:19:06 +000010398 case Intrinsic::x86_avx2_pmins_d: {
10399 unsigned Opcode;
10400 switch (IntNo) {
10401 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10402 case Intrinsic::x86_sse2_pmaxu_b:
10403 case Intrinsic::x86_sse41_pmaxuw:
10404 case Intrinsic::x86_sse41_pmaxud:
10405 case Intrinsic::x86_avx2_pmaxu_b:
10406 case Intrinsic::x86_avx2_pmaxu_w:
10407 case Intrinsic::x86_avx2_pmaxu_d:
10408 Opcode = X86ISD::UMAX;
10409 break;
10410 case Intrinsic::x86_sse2_pminu_b:
10411 case Intrinsic::x86_sse41_pminuw:
10412 case Intrinsic::x86_sse41_pminud:
10413 case Intrinsic::x86_avx2_pminu_b:
10414 case Intrinsic::x86_avx2_pminu_w:
10415 case Intrinsic::x86_avx2_pminu_d:
10416 Opcode = X86ISD::UMIN;
10417 break;
10418 case Intrinsic::x86_sse41_pmaxsb:
10419 case Intrinsic::x86_sse2_pmaxs_w:
10420 case Intrinsic::x86_sse41_pmaxsd:
10421 case Intrinsic::x86_avx2_pmaxs_b:
10422 case Intrinsic::x86_avx2_pmaxs_w:
10423 case Intrinsic::x86_avx2_pmaxs_d:
10424 Opcode = X86ISD::SMAX;
10425 break;
10426 case Intrinsic::x86_sse41_pminsb:
10427 case Intrinsic::x86_sse2_pmins_w:
10428 case Intrinsic::x86_sse41_pminsd:
10429 case Intrinsic::x86_avx2_pmins_b:
10430 case Intrinsic::x86_avx2_pmins_w:
10431 case Intrinsic::x86_avx2_pmins_d:
10432 Opcode = X86ISD::SMIN;
10433 break;
10434 }
10435 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010436 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000010437 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000010438
Craig Topper6d183e42012-12-29 16:44:25 +000010439 // SSE/SSE2/AVX floating point max/min intrinsics.
10440 case Intrinsic::x86_sse_max_ps:
10441 case Intrinsic::x86_sse2_max_pd:
10442 case Intrinsic::x86_avx_max_ps_256:
10443 case Intrinsic::x86_avx_max_pd_256:
10444 case Intrinsic::x86_sse_min_ps:
10445 case Intrinsic::x86_sse2_min_pd:
10446 case Intrinsic::x86_avx_min_ps_256:
10447 case Intrinsic::x86_avx_min_pd_256: {
10448 unsigned Opcode;
10449 switch (IntNo) {
10450 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10451 case Intrinsic::x86_sse_max_ps:
10452 case Intrinsic::x86_sse2_max_pd:
10453 case Intrinsic::x86_avx_max_ps_256:
10454 case Intrinsic::x86_avx_max_pd_256:
10455 Opcode = X86ISD::FMAX;
10456 break;
10457 case Intrinsic::x86_sse_min_ps:
10458 case Intrinsic::x86_sse2_min_pd:
10459 case Intrinsic::x86_avx_min_ps_256:
10460 case Intrinsic::x86_avx_min_pd_256:
10461 Opcode = X86ISD::FMIN;
10462 break;
10463 }
10464 return DAG.getNode(Opcode, dl, Op.getValueType(),
10465 Op.getOperand(1), Op.getOperand(2));
10466 }
10467
Craig Topper6d688152012-08-14 07:43:25 +000010468 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000010469 case Intrinsic::x86_avx2_psllv_d:
10470 case Intrinsic::x86_avx2_psllv_q:
10471 case Intrinsic::x86_avx2_psllv_d_256:
10472 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000010473 case Intrinsic::x86_avx2_psrlv_d:
10474 case Intrinsic::x86_avx2_psrlv_q:
10475 case Intrinsic::x86_avx2_psrlv_d_256:
10476 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000010477 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000010478 case Intrinsic::x86_avx2_psrav_d_256: {
10479 unsigned Opcode;
10480 switch (IntNo) {
10481 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10482 case Intrinsic::x86_avx2_psllv_d:
10483 case Intrinsic::x86_avx2_psllv_q:
10484 case Intrinsic::x86_avx2_psllv_d_256:
10485 case Intrinsic::x86_avx2_psllv_q_256:
10486 Opcode = ISD::SHL;
10487 break;
10488 case Intrinsic::x86_avx2_psrlv_d:
10489 case Intrinsic::x86_avx2_psrlv_q:
10490 case Intrinsic::x86_avx2_psrlv_d_256:
10491 case Intrinsic::x86_avx2_psrlv_q_256:
10492 Opcode = ISD::SRL;
10493 break;
10494 case Intrinsic::x86_avx2_psrav_d:
10495 case Intrinsic::x86_avx2_psrav_d_256:
10496 Opcode = ISD::SRA;
10497 break;
10498 }
10499 return DAG.getNode(Opcode, dl, Op.getValueType(),
10500 Op.getOperand(1), Op.getOperand(2));
10501 }
10502
Craig Topper969ba282012-01-25 06:43:11 +000010503 case Intrinsic::x86_ssse3_pshuf_b_128:
10504 case Intrinsic::x86_avx2_pshuf_b:
10505 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
10506 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010507
Craig Topper969ba282012-01-25 06:43:11 +000010508 case Intrinsic::x86_ssse3_psign_b_128:
10509 case Intrinsic::x86_ssse3_psign_w_128:
10510 case Intrinsic::x86_ssse3_psign_d_128:
10511 case Intrinsic::x86_avx2_psign_b:
10512 case Intrinsic::x86_avx2_psign_w:
10513 case Intrinsic::x86_avx2_psign_d:
10514 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
10515 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010516
Craig Toppere566cd02012-01-26 07:18:03 +000010517 case Intrinsic::x86_sse41_insertps:
10518 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
10519 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000010520
Craig Toppere566cd02012-01-26 07:18:03 +000010521 case Intrinsic::x86_avx_vperm2f128_ps_256:
10522 case Intrinsic::x86_avx_vperm2f128_pd_256:
10523 case Intrinsic::x86_avx_vperm2f128_si_256:
10524 case Intrinsic::x86_avx2_vperm2i128:
10525 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
10526 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000010527
Craig Topperffa6c402012-04-16 07:13:00 +000010528 case Intrinsic::x86_avx2_permd:
10529 case Intrinsic::x86_avx2_permps:
10530 // Operands intentionally swapped. Mask is last operand to intrinsic,
10531 // but second operand for node/intruction.
10532 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
10533 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000010534
Craig Topper22d8f0d2012-12-29 18:18:20 +000010535 case Intrinsic::x86_sse_sqrt_ps:
10536 case Intrinsic::x86_sse2_sqrt_pd:
10537 case Intrinsic::x86_avx_sqrt_ps_256:
10538 case Intrinsic::x86_avx_sqrt_pd_256:
10539 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
10540
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010541 // ptest and testp intrinsics. The intrinsic these come from are designed to
10542 // return an integer value, not just an instruction so lower it to the ptest
10543 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000010544 case Intrinsic::x86_sse41_ptestz:
10545 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010546 case Intrinsic::x86_sse41_ptestnzc:
10547 case Intrinsic::x86_avx_ptestz_256:
10548 case Intrinsic::x86_avx_ptestc_256:
10549 case Intrinsic::x86_avx_ptestnzc_256:
10550 case Intrinsic::x86_avx_vtestz_ps:
10551 case Intrinsic::x86_avx_vtestc_ps:
10552 case Intrinsic::x86_avx_vtestnzc_ps:
10553 case Intrinsic::x86_avx_vtestz_pd:
10554 case Intrinsic::x86_avx_vtestc_pd:
10555 case Intrinsic::x86_avx_vtestnzc_pd:
10556 case Intrinsic::x86_avx_vtestz_ps_256:
10557 case Intrinsic::x86_avx_vtestc_ps_256:
10558 case Intrinsic::x86_avx_vtestnzc_ps_256:
10559 case Intrinsic::x86_avx_vtestz_pd_256:
10560 case Intrinsic::x86_avx_vtestc_pd_256:
10561 case Intrinsic::x86_avx_vtestnzc_pd_256: {
10562 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000010563 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000010564 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000010565 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010566 case Intrinsic::x86_avx_vtestz_ps:
10567 case Intrinsic::x86_avx_vtestz_pd:
10568 case Intrinsic::x86_avx_vtestz_ps_256:
10569 case Intrinsic::x86_avx_vtestz_pd_256:
10570 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000010571 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010572 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000010573 // ZF = 1
10574 X86CC = X86::COND_E;
10575 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010576 case Intrinsic::x86_avx_vtestc_ps:
10577 case Intrinsic::x86_avx_vtestc_pd:
10578 case Intrinsic::x86_avx_vtestc_ps_256:
10579 case Intrinsic::x86_avx_vtestc_pd_256:
10580 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000010581 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010582 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000010583 // CF = 1
10584 X86CC = X86::COND_B;
10585 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010586 case Intrinsic::x86_avx_vtestnzc_ps:
10587 case Intrinsic::x86_avx_vtestnzc_pd:
10588 case Intrinsic::x86_avx_vtestnzc_ps_256:
10589 case Intrinsic::x86_avx_vtestnzc_pd_256:
10590 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000010591 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010592 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000010593 // ZF and CF = 0
10594 X86CC = X86::COND_A;
10595 break;
10596 }
Eric Christopherfd179292009-08-27 18:07:15 +000010597
Eric Christopher71c67532009-07-29 00:28:05 +000010598 SDValue LHS = Op.getOperand(1);
10599 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010600 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
10601 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000010602 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
10603 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
10604 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000010605 }
Evan Cheng5759f972008-05-04 09:15:50 +000010606
Craig Topper80e46362012-01-23 06:16:53 +000010607 // SSE/AVX shift intrinsics
10608 case Intrinsic::x86_sse2_psll_w:
10609 case Intrinsic::x86_sse2_psll_d:
10610 case Intrinsic::x86_sse2_psll_q:
10611 case Intrinsic::x86_avx2_psll_w:
10612 case Intrinsic::x86_avx2_psll_d:
10613 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000010614 case Intrinsic::x86_sse2_psrl_w:
10615 case Intrinsic::x86_sse2_psrl_d:
10616 case Intrinsic::x86_sse2_psrl_q:
10617 case Intrinsic::x86_avx2_psrl_w:
10618 case Intrinsic::x86_avx2_psrl_d:
10619 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000010620 case Intrinsic::x86_sse2_psra_w:
10621 case Intrinsic::x86_sse2_psra_d:
10622 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000010623 case Intrinsic::x86_avx2_psra_d: {
10624 unsigned Opcode;
10625 switch (IntNo) {
10626 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10627 case Intrinsic::x86_sse2_psll_w:
10628 case Intrinsic::x86_sse2_psll_d:
10629 case Intrinsic::x86_sse2_psll_q:
10630 case Intrinsic::x86_avx2_psll_w:
10631 case Intrinsic::x86_avx2_psll_d:
10632 case Intrinsic::x86_avx2_psll_q:
10633 Opcode = X86ISD::VSHL;
10634 break;
10635 case Intrinsic::x86_sse2_psrl_w:
10636 case Intrinsic::x86_sse2_psrl_d:
10637 case Intrinsic::x86_sse2_psrl_q:
10638 case Intrinsic::x86_avx2_psrl_w:
10639 case Intrinsic::x86_avx2_psrl_d:
10640 case Intrinsic::x86_avx2_psrl_q:
10641 Opcode = X86ISD::VSRL;
10642 break;
10643 case Intrinsic::x86_sse2_psra_w:
10644 case Intrinsic::x86_sse2_psra_d:
10645 case Intrinsic::x86_avx2_psra_w:
10646 case Intrinsic::x86_avx2_psra_d:
10647 Opcode = X86ISD::VSRA;
10648 break;
10649 }
10650 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000010651 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000010652 }
10653
10654 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000010655 case Intrinsic::x86_sse2_pslli_w:
10656 case Intrinsic::x86_sse2_pslli_d:
10657 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000010658 case Intrinsic::x86_avx2_pslli_w:
10659 case Intrinsic::x86_avx2_pslli_d:
10660 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000010661 case Intrinsic::x86_sse2_psrli_w:
10662 case Intrinsic::x86_sse2_psrli_d:
10663 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000010664 case Intrinsic::x86_avx2_psrli_w:
10665 case Intrinsic::x86_avx2_psrli_d:
10666 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000010667 case Intrinsic::x86_sse2_psrai_w:
10668 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000010669 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000010670 case Intrinsic::x86_avx2_psrai_d: {
10671 unsigned Opcode;
10672 switch (IntNo) {
10673 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10674 case Intrinsic::x86_sse2_pslli_w:
10675 case Intrinsic::x86_sse2_pslli_d:
10676 case Intrinsic::x86_sse2_pslli_q:
10677 case Intrinsic::x86_avx2_pslli_w:
10678 case Intrinsic::x86_avx2_pslli_d:
10679 case Intrinsic::x86_avx2_pslli_q:
10680 Opcode = X86ISD::VSHLI;
10681 break;
10682 case Intrinsic::x86_sse2_psrli_w:
10683 case Intrinsic::x86_sse2_psrli_d:
10684 case Intrinsic::x86_sse2_psrli_q:
10685 case Intrinsic::x86_avx2_psrli_w:
10686 case Intrinsic::x86_avx2_psrli_d:
10687 case Intrinsic::x86_avx2_psrli_q:
10688 Opcode = X86ISD::VSRLI;
10689 break;
10690 case Intrinsic::x86_sse2_psrai_w:
10691 case Intrinsic::x86_sse2_psrai_d:
10692 case Intrinsic::x86_avx2_psrai_w:
10693 case Intrinsic::x86_avx2_psrai_d:
10694 Opcode = X86ISD::VSRAI;
10695 break;
10696 }
10697 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000010698 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000010699 }
10700
Craig Topper4feb6472012-08-06 06:22:36 +000010701 case Intrinsic::x86_sse42_pcmpistria128:
10702 case Intrinsic::x86_sse42_pcmpestria128:
10703 case Intrinsic::x86_sse42_pcmpistric128:
10704 case Intrinsic::x86_sse42_pcmpestric128:
10705 case Intrinsic::x86_sse42_pcmpistrio128:
10706 case Intrinsic::x86_sse42_pcmpestrio128:
10707 case Intrinsic::x86_sse42_pcmpistris128:
10708 case Intrinsic::x86_sse42_pcmpestris128:
10709 case Intrinsic::x86_sse42_pcmpistriz128:
10710 case Intrinsic::x86_sse42_pcmpestriz128: {
10711 unsigned Opcode;
10712 unsigned X86CC;
10713 switch (IntNo) {
10714 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10715 case Intrinsic::x86_sse42_pcmpistria128:
10716 Opcode = X86ISD::PCMPISTRI;
10717 X86CC = X86::COND_A;
10718 break;
10719 case Intrinsic::x86_sse42_pcmpestria128:
10720 Opcode = X86ISD::PCMPESTRI;
10721 X86CC = X86::COND_A;
10722 break;
10723 case Intrinsic::x86_sse42_pcmpistric128:
10724 Opcode = X86ISD::PCMPISTRI;
10725 X86CC = X86::COND_B;
10726 break;
10727 case Intrinsic::x86_sse42_pcmpestric128:
10728 Opcode = X86ISD::PCMPESTRI;
10729 X86CC = X86::COND_B;
10730 break;
10731 case Intrinsic::x86_sse42_pcmpistrio128:
10732 Opcode = X86ISD::PCMPISTRI;
10733 X86CC = X86::COND_O;
10734 break;
10735 case Intrinsic::x86_sse42_pcmpestrio128:
10736 Opcode = X86ISD::PCMPESTRI;
10737 X86CC = X86::COND_O;
10738 break;
10739 case Intrinsic::x86_sse42_pcmpistris128:
10740 Opcode = X86ISD::PCMPISTRI;
10741 X86CC = X86::COND_S;
10742 break;
10743 case Intrinsic::x86_sse42_pcmpestris128:
10744 Opcode = X86ISD::PCMPESTRI;
10745 X86CC = X86::COND_S;
10746 break;
10747 case Intrinsic::x86_sse42_pcmpistriz128:
10748 Opcode = X86ISD::PCMPISTRI;
10749 X86CC = X86::COND_E;
10750 break;
10751 case Intrinsic::x86_sse42_pcmpestriz128:
10752 Opcode = X86ISD::PCMPESTRI;
10753 X86CC = X86::COND_E;
10754 break;
10755 }
10756 SmallVector<SDValue, 5> NewOps;
10757 NewOps.append(Op->op_begin()+1, Op->op_end());
10758 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10759 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10760 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10761 DAG.getConstant(X86CC, MVT::i8),
10762 SDValue(PCMP.getNode(), 1));
10763 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10764 }
Craig Topper6d688152012-08-14 07:43:25 +000010765
Craig Topper4feb6472012-08-06 06:22:36 +000010766 case Intrinsic::x86_sse42_pcmpistri128:
10767 case Intrinsic::x86_sse42_pcmpestri128: {
10768 unsigned Opcode;
10769 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
10770 Opcode = X86ISD::PCMPISTRI;
10771 else
10772 Opcode = X86ISD::PCMPESTRI;
10773
10774 SmallVector<SDValue, 5> NewOps;
10775 NewOps.append(Op->op_begin()+1, Op->op_end());
10776 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10777 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10778 }
Craig Topper0e292372012-08-24 04:03:22 +000010779 case Intrinsic::x86_fma_vfmadd_ps:
10780 case Intrinsic::x86_fma_vfmadd_pd:
10781 case Intrinsic::x86_fma_vfmsub_ps:
10782 case Intrinsic::x86_fma_vfmsub_pd:
10783 case Intrinsic::x86_fma_vfnmadd_ps:
10784 case Intrinsic::x86_fma_vfnmadd_pd:
10785 case Intrinsic::x86_fma_vfnmsub_ps:
10786 case Intrinsic::x86_fma_vfnmsub_pd:
10787 case Intrinsic::x86_fma_vfmaddsub_ps:
10788 case Intrinsic::x86_fma_vfmaddsub_pd:
10789 case Intrinsic::x86_fma_vfmsubadd_ps:
10790 case Intrinsic::x86_fma_vfmsubadd_pd:
10791 case Intrinsic::x86_fma_vfmadd_ps_256:
10792 case Intrinsic::x86_fma_vfmadd_pd_256:
10793 case Intrinsic::x86_fma_vfmsub_ps_256:
10794 case Intrinsic::x86_fma_vfmsub_pd_256:
10795 case Intrinsic::x86_fma_vfnmadd_ps_256:
10796 case Intrinsic::x86_fma_vfnmadd_pd_256:
10797 case Intrinsic::x86_fma_vfnmsub_ps_256:
10798 case Intrinsic::x86_fma_vfnmsub_pd_256:
10799 case Intrinsic::x86_fma_vfmaddsub_ps_256:
10800 case Intrinsic::x86_fma_vfmaddsub_pd_256:
10801 case Intrinsic::x86_fma_vfmsubadd_ps_256:
10802 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000010803 unsigned Opc;
10804 switch (IntNo) {
10805 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
10806 case Intrinsic::x86_fma_vfmadd_ps:
10807 case Intrinsic::x86_fma_vfmadd_pd:
10808 case Intrinsic::x86_fma_vfmadd_ps_256:
10809 case Intrinsic::x86_fma_vfmadd_pd_256:
10810 Opc = X86ISD::FMADD;
10811 break;
10812 case Intrinsic::x86_fma_vfmsub_ps:
10813 case Intrinsic::x86_fma_vfmsub_pd:
10814 case Intrinsic::x86_fma_vfmsub_ps_256:
10815 case Intrinsic::x86_fma_vfmsub_pd_256:
10816 Opc = X86ISD::FMSUB;
10817 break;
10818 case Intrinsic::x86_fma_vfnmadd_ps:
10819 case Intrinsic::x86_fma_vfnmadd_pd:
10820 case Intrinsic::x86_fma_vfnmadd_ps_256:
10821 case Intrinsic::x86_fma_vfnmadd_pd_256:
10822 Opc = X86ISD::FNMADD;
10823 break;
10824 case Intrinsic::x86_fma_vfnmsub_ps:
10825 case Intrinsic::x86_fma_vfnmsub_pd:
10826 case Intrinsic::x86_fma_vfnmsub_ps_256:
10827 case Intrinsic::x86_fma_vfnmsub_pd_256:
10828 Opc = X86ISD::FNMSUB;
10829 break;
10830 case Intrinsic::x86_fma_vfmaddsub_ps:
10831 case Intrinsic::x86_fma_vfmaddsub_pd:
10832 case Intrinsic::x86_fma_vfmaddsub_ps_256:
10833 case Intrinsic::x86_fma_vfmaddsub_pd_256:
10834 Opc = X86ISD::FMADDSUB;
10835 break;
10836 case Intrinsic::x86_fma_vfmsubadd_ps:
10837 case Intrinsic::x86_fma_vfmsubadd_pd:
10838 case Intrinsic::x86_fma_vfmsubadd_ps_256:
10839 case Intrinsic::x86_fma_vfmsubadd_pd_256:
10840 Opc = X86ISD::FMSUBADD;
10841 break;
10842 }
10843
10844 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
10845 Op.getOperand(2), Op.getOperand(3));
10846 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000010847 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000010848}
Evan Cheng72261582005-12-20 06:22:03 +000010849
Craig Topper55b24052012-09-11 06:15:32 +000010850static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) {
Benjamin Kramerb9bee042012-07-12 09:31:43 +000010851 DebugLoc dl = Op.getDebugLoc();
10852 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10853 switch (IntNo) {
10854 default: return SDValue(); // Don't custom lower most intrinsics.
10855
10856 // RDRAND intrinsics.
10857 case Intrinsic::x86_rdrand_16:
10858 case Intrinsic::x86_rdrand_32:
10859 case Intrinsic::x86_rdrand_64: {
10860 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000010861 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
10862 SDValue Result = DAG.getNode(X86ISD::RDRAND, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000010863
10864 // If the value returned by RDRAND was valid (CF=1), return 1. Otherwise
10865 // return the value from Rand, which is always 0, casted to i32.
10866 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
10867 DAG.getConstant(1, Op->getValueType(1)),
10868 DAG.getConstant(X86::COND_B, MVT::i32),
10869 SDValue(Result.getNode(), 1) };
10870 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
10871 DAG.getVTList(Op->getValueType(1), MVT::Glue),
10872 Ops, 4);
10873
10874 // Return { result, isValid, chain }.
10875 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000010876 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000010877 }
10878 }
10879}
10880
Dan Gohmand858e902010-04-17 15:26:15 +000010881SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
10882 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000010883 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10884 MFI->setReturnAddressIsTaken(true);
10885
Bill Wendling64e87322009-01-16 19:25:27 +000010886 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010887 DebugLoc dl = Op.getDebugLoc();
Michael Liaoaa3c2c02012-10-25 06:29:14 +000010888 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000010889
10890 if (Depth > 0) {
10891 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
10892 SDValue Offset =
Michael Liaoaa3c2c02012-10-25 06:29:14 +000010893 DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
10894 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
10895 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010896 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010897 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000010898 }
10899
10900 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000010901 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000010902 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010903 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010904}
10905
Dan Gohmand858e902010-04-17 15:26:15 +000010906SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000010907 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10908 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000010909
Owen Andersone50ed302009-08-10 22:56:29 +000010910 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010911 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000010912 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10913 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +000010914 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000010915 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000010916 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
10917 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010918 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000010919 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000010920}
10921
Dan Gohman475871a2008-07-27 21:46:04 +000010922SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010923 SelectionDAG &DAG) const {
Michael Liaoaa3c2c02012-10-25 06:29:14 +000010924 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010925}
10926
Dan Gohmand858e902010-04-17 15:26:15 +000010927SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000010928 SDValue Chain = Op.getOperand(0);
10929 SDValue Offset = Op.getOperand(1);
10930 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010931 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010932
Dan Gohmand8816272010-08-11 18:14:00 +000010933 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
10934 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
10935 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +000010936 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010937
Dan Gohmand8816272010-08-11 18:14:00 +000010938 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
Michael Liaoaa3c2c02012-10-25 06:29:14 +000010939 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +000010940 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010941 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
10942 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000010943 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010944
Dale Johannesene4d209d2009-02-03 20:21:25 +000010945 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000010946 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +000010947 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010948}
10949
Michael Liao6c0e04c2012-10-15 22:39:43 +000010950SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
10951 SelectionDAG &DAG) const {
10952 DebugLoc DL = Op.getDebugLoc();
10953 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
10954 DAG.getVTList(MVT::i32, MVT::Other),
10955 Op.getOperand(0), Op.getOperand(1));
10956}
10957
10958SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
10959 SelectionDAG &DAG) const {
10960 DebugLoc DL = Op.getDebugLoc();
10961 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
10962 Op.getOperand(0), Op.getOperand(1));
10963}
10964
Craig Topper55b24052012-09-11 06:15:32 +000010965static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000010966 return Op.getOperand(0);
10967}
10968
10969SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
10970 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000010971 SDValue Root = Op.getOperand(0);
10972 SDValue Trmp = Op.getOperand(1); // trampoline
10973 SDValue FPtr = Op.getOperand(2); // nested function
10974 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010975 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +000010976
Dan Gohman69de1932008-02-06 22:27:42 +000010977 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000010978 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000010979
10980 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000010981 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000010982
10983 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000010984 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
10985 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000010986
Michael Liao7abf67a2012-10-04 19:50:43 +000010987 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
10988 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000010989
10990 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
10991
10992 // Load the pointer to the nested function into R11.
10993 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000010994 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000010995 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010996 Addr, MachinePointerInfo(TrmpAddr),
10997 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000010998
Owen Anderson825b72b2009-08-11 20:47:22 +000010999 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11000 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011001 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
11002 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000011003 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000011004
11005 // Load the 'nest' parameter value into R10.
11006 // R10 is specified in X86CallingConv.td
11007 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000011008 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11009 DAG.getConstant(10, MVT::i64));
11010 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011011 Addr, MachinePointerInfo(TrmpAddr, 10),
11012 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011013
Owen Anderson825b72b2009-08-11 20:47:22 +000011014 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11015 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011016 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
11017 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000011018 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000011019
11020 // Jump to the nested function.
11021 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000011022 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11023 DAG.getConstant(20, MVT::i64));
11024 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011025 Addr, MachinePointerInfo(TrmpAddr, 20),
11026 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011027
11028 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000011029 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11030 DAG.getConstant(22, MVT::i64));
11031 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011032 MachinePointerInfo(TrmpAddr, 22),
11033 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000011034
Duncan Sands4a544a72011-09-06 13:37:06 +000011035 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011036 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000011037 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000011038 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000011039 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000011040 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011041
11042 switch (CC) {
11043 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011044 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000011045 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000011046 case CallingConv::X86_StdCall: {
11047 // Pass 'nest' parameter in ECX.
11048 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000011049 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011050
11051 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000011052 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000011053 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000011054
Chris Lattner58d74912008-03-12 17:45:29 +000011055 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000011056 unsigned InRegCount = 0;
11057 unsigned Idx = 1;
11058
11059 for (FunctionType::param_iterator I = FTy->param_begin(),
11060 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000011061 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000011062 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000011063 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011064
11065 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000011066 report_fatal_error("Nest register in use - reduce number of inreg"
11067 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000011068 }
11069 }
11070 break;
11071 }
11072 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000011073 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000011074 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000011075 // Pass 'nest' parameter in EAX.
11076 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000011077 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011078 break;
11079 }
11080
Dan Gohman475871a2008-07-27 21:46:04 +000011081 SDValue OutChains[4];
11082 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000011083
Owen Anderson825b72b2009-08-11 20:47:22 +000011084 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11085 DAG.getConstant(10, MVT::i32));
11086 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011087
Chris Lattnera62fe662010-02-05 19:20:30 +000011088 // This is storing the opcode for MOV32ri.
11089 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000011090 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000011091 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000011092 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000011093 Trmp, MachinePointerInfo(TrmpAddr),
11094 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011095
Owen Anderson825b72b2009-08-11 20:47:22 +000011096 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11097 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011098 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
11099 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000011100 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011101
Chris Lattnera62fe662010-02-05 19:20:30 +000011102 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000011103 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11104 DAG.getConstant(5, MVT::i32));
11105 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011106 MachinePointerInfo(TrmpAddr, 5),
11107 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011108
Owen Anderson825b72b2009-08-11 20:47:22 +000011109 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11110 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000011111 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
11112 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000011113 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011114
Duncan Sands4a544a72011-09-06 13:37:06 +000011115 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000011116 }
11117}
11118
Dan Gohmand858e902010-04-17 15:26:15 +000011119SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
11120 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011121 /*
11122 The rounding mode is in bits 11:10 of FPSR, and has the following
11123 settings:
11124 00 Round to nearest
11125 01 Round to -inf
11126 10 Round to +inf
11127 11 Round to 0
11128
11129 FLT_ROUNDS, on the other hand, expects the following:
11130 -1 Undefined
11131 0 Round to 0
11132 1 Round to nearest
11133 2 Round to +inf
11134 3 Round to -inf
11135
11136 To perform the conversion, we do:
11137 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
11138 */
11139
11140 MachineFunction &MF = DAG.getMachineFunction();
11141 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000011142 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011143 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000011144 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +000011145 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011146
11147 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000011148 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000011149 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011150
Chris Lattner2156b792010-09-22 01:11:26 +000011151 MachineMemOperand *MMO =
11152 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11153 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000011154
Chris Lattner2156b792010-09-22 01:11:26 +000011155 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
11156 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
11157 DAG.getVTList(MVT::Other),
11158 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011159
11160 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000011161 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000011162 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011163
11164 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000011165 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000011166 DAG.getNode(ISD::SRL, DL, MVT::i16,
11167 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000011168 CWD, DAG.getConstant(0x800, MVT::i16)),
11169 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000011170 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000011171 DAG.getNode(ISD::SRL, DL, MVT::i16,
11172 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000011173 CWD, DAG.getConstant(0x400, MVT::i16)),
11174 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011175
Dan Gohman475871a2008-07-27 21:46:04 +000011176 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000011177 DAG.getNode(ISD::AND, DL, MVT::i16,
11178 DAG.getNode(ISD::ADD, DL, MVT::i16,
11179 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000011180 DAG.getConstant(1, MVT::i16)),
11181 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011182
Duncan Sands83ec4b62008-06-06 12:08:01 +000011183 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000011184 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000011185}
11186
Craig Topper55b24052012-09-11 06:15:32 +000011187static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011188 EVT VT = Op.getValueType();
11189 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011190 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +000011191 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +000011192
11193 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011194 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000011195 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000011196 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000011197 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011198 }
Evan Cheng18efe262007-12-14 02:13:44 +000011199
Evan Cheng152804e2007-12-14 08:30:15 +000011200 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000011201 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011202 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000011203
11204 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011205 SDValue Ops[] = {
11206 Op,
11207 DAG.getConstant(NumBits+NumBits-1, OpVT),
11208 DAG.getConstant(X86::COND_E, MVT::i8),
11209 Op.getValue(1)
11210 };
11211 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000011212
11213 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000011214 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000011215
Owen Anderson825b72b2009-08-11 20:47:22 +000011216 if (VT == MVT::i8)
11217 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000011218 return Op;
11219}
11220
Craig Topper55b24052012-09-11 06:15:32 +000011221static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000011222 EVT VT = Op.getValueType();
11223 EVT OpVT = VT;
11224 unsigned NumBits = VT.getSizeInBits();
11225 DebugLoc dl = Op.getDebugLoc();
11226
11227 Op = Op.getOperand(0);
11228 if (VT == MVT::i8) {
11229 // Zero extend to i32 since there is not an i8 bsr.
11230 OpVT = MVT::i32;
11231 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
11232 }
11233
11234 // Issue a bsr (scan bits in reverse).
11235 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
11236 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
11237
11238 // And xor with NumBits-1.
11239 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
11240
11241 if (VT == MVT::i8)
11242 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
11243 return Op;
11244}
11245
Craig Topper55b24052012-09-11 06:15:32 +000011246static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011247 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000011248 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +000011249 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +000011250 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000011251
11252 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000011253 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011254 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000011255
11256 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011257 SDValue Ops[] = {
11258 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000011259 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000011260 DAG.getConstant(X86::COND_E, MVT::i8),
11261 Op.getValue(1)
11262 };
Chandler Carruth77821022011-12-24 12:12:34 +000011263 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000011264}
11265
Craig Topper13894fa2011-08-24 06:14:18 +000011266// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
11267// ones, and then concatenate the result back.
11268static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011269 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000011270
Craig Topper7a9a28b2012-08-12 02:23:29 +000011271 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011272 "Unsupported value type for operation");
11273
Craig Topper66ddd152012-04-27 22:54:43 +000011274 unsigned NumElems = VT.getVectorNumElements();
Craig Topper13894fa2011-08-24 06:14:18 +000011275 DebugLoc dl = Op.getDebugLoc();
Craig Topper13894fa2011-08-24 06:14:18 +000011276
11277 // Extract the LHS vectors
11278 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000011279 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
11280 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000011281
11282 // Extract the RHS vectors
11283 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000011284 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
11285 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000011286
11287 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11288 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11289
11290 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
11291 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
11292 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
11293}
11294
Craig Topper55b24052012-09-11 06:15:32 +000011295static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000011296 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011297 Op.getValueType().isInteger() &&
11298 "Only handle AVX 256-bit vector integer operation");
11299 return Lower256IntArith(Op, DAG);
11300}
11301
Craig Topper55b24052012-09-11 06:15:32 +000011302static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000011303 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000011304 Op.getValueType().isInteger() &&
11305 "Only handle AVX 256-bit vector integer operation");
11306 return Lower256IntArith(Op, DAG);
11307}
11308
Craig Topper55b24052012-09-11 06:15:32 +000011309static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
11310 SelectionDAG &DAG) {
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000011311 DebugLoc dl = Op.getDebugLoc();
Craig Topper13894fa2011-08-24 06:14:18 +000011312 EVT VT = Op.getValueType();
11313
11314 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011315 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000011316 return Lower256IntArith(Op, DAG);
11317
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000011318 SDValue A = Op.getOperand(0);
11319 SDValue B = Op.getOperand(1);
11320
11321 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
11322 if (VT == MVT::v4i32) {
11323 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
11324 "Should not custom lower when pmuldq is available!");
11325
11326 // Extract the odd parts.
11327 const int UnpackMask[] = { 1, -1, 3, -1 };
11328 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
11329 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
11330
11331 // Multiply the even parts.
11332 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
11333 // Now multiply odd parts.
11334 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
11335
11336 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
11337 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
11338
11339 // Merge the two vectors back together with a shuffle. This expands into 2
11340 // shuffles.
11341 const int ShufMask[] = { 0, 4, 2, 6 };
11342 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
11343 }
11344
Craig Topper5b209e82012-02-05 03:14:49 +000011345 assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
11346 "Only know how to lower V2I64/V4I64 multiply");
11347
Craig Topper5b209e82012-02-05 03:14:49 +000011348 // Ahi = psrlqi(a, 32);
11349 // Bhi = psrlqi(b, 32);
11350 //
11351 // AloBlo = pmuludq(a, b);
11352 // AloBhi = pmuludq(a, Bhi);
11353 // AhiBlo = pmuludq(Ahi, b);
11354
11355 // AloBhi = psllqi(AloBhi, 32);
11356 // AhiBlo = psllqi(AhiBlo, 32);
11357 // return AloBlo + AloBhi + AhiBlo;
11358
Craig Topper5b209e82012-02-05 03:14:49 +000011359 SDValue ShAmt = DAG.getConstant(32, MVT::i32);
Craig Topperaaa643c2011-11-09 07:28:55 +000011360
Craig Topper5b209e82012-02-05 03:14:49 +000011361 SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
11362 SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
Craig Topperaaa643c2011-11-09 07:28:55 +000011363
Craig Topper5b209e82012-02-05 03:14:49 +000011364 // Bit cast to 32-bit vectors for MULUDQ
11365 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
11366 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
11367 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
11368 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
11369 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000011370
Craig Topper5b209e82012-02-05 03:14:49 +000011371 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
11372 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
11373 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000011374
Craig Topper5b209e82012-02-05 03:14:49 +000011375 AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
11376 AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
Mon P Wangaf9b9522008-12-18 21:42:19 +000011377
Dale Johannesene4d209d2009-02-03 20:21:25 +000011378 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000011379 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000011380}
11381
Nadav Rotem13f8cf52013-01-09 05:14:33 +000011382SDValue X86TargetLowering::LowerSDIV(SDValue Op, SelectionDAG &DAG) const {
11383 EVT VT = Op.getValueType();
11384 EVT EltTy = VT.getVectorElementType();
11385 unsigned NumElts = VT.getVectorNumElements();
11386 SDValue N0 = Op.getOperand(0);
11387 DebugLoc dl = Op.getDebugLoc();
11388
11389 // Lower sdiv X, pow2-const.
11390 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
11391 if (!C)
11392 return SDValue();
11393
11394 APInt SplatValue, SplatUndef;
11395 unsigned MinSplatBits;
11396 bool HasAnyUndefs;
11397 if (!C->isConstantSplat(SplatValue, SplatUndef, MinSplatBits, HasAnyUndefs))
11398 return SDValue();
11399
11400 if ((SplatValue != 0) &&
11401 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
11402 unsigned lg2 = SplatValue.countTrailingZeros();
11403 // Splat the sign bit.
11404 SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
11405 SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
11406 // Add (N0 < 0) ? abs2 - 1 : 0;
11407 SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
11408 SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
11409 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
11410 SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
11411 SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
11412
11413 // If we're dividing by a positive value, we're done. Otherwise, we must
11414 // negate the result.
11415 if (SplatValue.isNonNegative())
11416 return SRA;
11417
11418 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
11419 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
11420 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
11421 }
11422 return SDValue();
11423}
11424
Nadav Rotem43012222011-05-11 08:12:09 +000011425SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
11426
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011427 EVT VT = Op.getValueType();
11428 DebugLoc dl = Op.getDebugLoc();
11429 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000011430 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011431 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011432
Craig Topper1accb7e2012-01-10 06:54:16 +000011433 if (!Subtarget->hasSSE2())
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000011434 return SDValue();
11435
Nadav Rotem43012222011-05-11 08:12:09 +000011436 // Optimize shl/srl/sra with constant shift amount.
11437 if (isSplatVector(Amt.getNode())) {
11438 SDValue SclrAmt = Amt->getOperand(0);
11439 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
11440 uint64_t ShiftAmt = C->getZExtValue();
11441
Craig Toppered2e13d2012-01-22 19:15:14 +000011442 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011443 (Subtarget->hasInt256() &&
Craig Toppered2e13d2012-01-22 19:15:14 +000011444 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16))) {
11445 if (Op.getOpcode() == ISD::SHL)
11446 return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
11447 DAG.getConstant(ShiftAmt, MVT::i32));
11448 if (Op.getOpcode() == ISD::SRL)
11449 return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
11450 DAG.getConstant(ShiftAmt, MVT::i32));
11451 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
11452 return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
11453 DAG.getConstant(ShiftAmt, MVT::i32));
Benjamin Kramerdade3c12011-10-30 17:31:21 +000011454 }
11455
Craig Toppered2e13d2012-01-22 19:15:14 +000011456 if (VT == MVT::v16i8) {
11457 if (Op.getOpcode() == ISD::SHL) {
11458 // Make a large shift.
11459 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
11460 DAG.getConstant(ShiftAmt, MVT::i32));
11461 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
11462 // Zero out the rightmost bits.
11463 SmallVector<SDValue, 16> V(16,
11464 DAG.getConstant(uint8_t(-1U << ShiftAmt),
11465 MVT::i8));
11466 return DAG.getNode(ISD::AND, dl, VT, SHL,
11467 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000011468 }
Craig Toppered2e13d2012-01-22 19:15:14 +000011469 if (Op.getOpcode() == ISD::SRL) {
11470 // Make a large shift.
11471 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
11472 DAG.getConstant(ShiftAmt, MVT::i32));
11473 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
11474 // Zero out the leftmost bits.
11475 SmallVector<SDValue, 16> V(16,
11476 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
11477 MVT::i8));
11478 return DAG.getNode(ISD::AND, dl, VT, SRL,
11479 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
11480 }
11481 if (Op.getOpcode() == ISD::SRA) {
11482 if (ShiftAmt == 7) {
11483 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000011484 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000011485 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000011486 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000011487
Craig Toppered2e13d2012-01-22 19:15:14 +000011488 // R s>> a === ((R u>> a) ^ m) - m
11489 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
11490 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
11491 MVT::i8));
11492 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
11493 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
11494 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
11495 return Res;
11496 }
Craig Topper731dfd02012-04-23 03:42:40 +000011497 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000011498 }
Craig Topper46154eb2011-11-11 07:39:23 +000011499
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011500 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000011501 if (Op.getOpcode() == ISD::SHL) {
11502 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000011503 SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
11504 DAG.getConstant(ShiftAmt, MVT::i32));
11505 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000011506 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000011507 SmallVector<SDValue, 32> V(32,
11508 DAG.getConstant(uint8_t(-1U << ShiftAmt),
11509 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000011510 return DAG.getNode(ISD::AND, dl, VT, SHL,
11511 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000011512 }
Craig Topper0d86d462011-11-20 00:12:05 +000011513 if (Op.getOpcode() == ISD::SRL) {
11514 // Make a large shift.
Craig Toppered2e13d2012-01-22 19:15:14 +000011515 SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
11516 DAG.getConstant(ShiftAmt, MVT::i32));
11517 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000011518 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000011519 SmallVector<SDValue, 32> V(32,
11520 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
11521 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000011522 return DAG.getNode(ISD::AND, dl, VT, SRL,
11523 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
11524 }
11525 if (Op.getOpcode() == ISD::SRA) {
11526 if (ShiftAmt == 7) {
11527 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000011528 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000011529 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000011530 }
11531
11532 // R s>> a === ((R u>> a) ^ m) - m
11533 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
11534 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
11535 MVT::i8));
11536 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
11537 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
11538 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
11539 return Res;
11540 }
Craig Topper731dfd02012-04-23 03:42:40 +000011541 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000011542 }
Nadav Rotem43012222011-05-11 08:12:09 +000011543 }
11544 }
11545
11546 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000011547 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Craig Toppered2e13d2012-01-22 19:15:14 +000011548 Op = DAG.getNode(X86ISD::VSHLI, dl, VT, Op.getOperand(1),
11549 DAG.getConstant(23, MVT::i32));
Nate Begeman51409212010-07-28 00:21:48 +000011550
Chris Lattner7302d802012-02-06 21:56:39 +000011551 const uint32_t CV[] = { 0x3f800000U, 0x3f800000U, 0x3f800000U, 0x3f800000U};
11552 Constant *C = ConstantDataVector::get(*Context, CV);
Nate Begeman51409212010-07-28 00:21:48 +000011553 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
11554 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +000011555 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011556 false, false, false, 16);
Nate Begeman51409212010-07-28 00:21:48 +000011557
11558 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011559 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000011560 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
11561 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
11562 }
Nadav Rotem43012222011-05-11 08:12:09 +000011563 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000011564 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000011565
Nate Begeman51409212010-07-28 00:21:48 +000011566 // a = a << 5;
Craig Toppered2e13d2012-01-22 19:15:14 +000011567 Op = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, Op.getOperand(1),
11568 DAG.getConstant(5, MVT::i32));
11569 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000011570
Lang Hames8b99c1e2011-12-17 01:08:46 +000011571 // Turn 'a' into a mask suitable for VSELECT
11572 SDValue VSelM = DAG.getConstant(0x80, VT);
11573 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000011574 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000011575
Lang Hames8b99c1e2011-12-17 01:08:46 +000011576 SDValue CM1 = DAG.getConstant(0x0f, VT);
11577 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000011578
Lang Hames8b99c1e2011-12-17 01:08:46 +000011579 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
11580 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Craig Toppered2e13d2012-01-22 19:15:14 +000011581 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
11582 DAG.getConstant(4, MVT::i32), DAG);
11583 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000011584 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
11585
Nate Begeman51409212010-07-28 00:21:48 +000011586 // a += a
11587 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000011588 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000011589 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000011590
Lang Hames8b99c1e2011-12-17 01:08:46 +000011591 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
11592 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Craig Toppered2e13d2012-01-22 19:15:14 +000011593 M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
11594 DAG.getConstant(2, MVT::i32), DAG);
11595 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000011596 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
11597
Nate Begeman51409212010-07-28 00:21:48 +000011598 // a += a
11599 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000011600 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000011601 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000011602
Lang Hames8b99c1e2011-12-17 01:08:46 +000011603 // return VSELECT(r, r+r, a);
11604 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000011605 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000011606 return R;
11607 }
Craig Topper46154eb2011-11-11 07:39:23 +000011608
11609 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000011610 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000011611 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000011612 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11613 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11614
11615 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000011616 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
11617 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000011618
11619 // Recreate the shift amount vectors
11620 SDValue Amt1, Amt2;
11621 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
11622 // Constant shift amount
11623 SmallVector<SDValue, 4> Amt1Csts;
11624 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000011625 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000011626 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000011627 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000011628 Amt2Csts.push_back(Amt->getOperand(i));
11629
11630 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
11631 &Amt1Csts[0], NumElems/2);
11632 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
11633 &Amt2Csts[0], NumElems/2);
11634 } else {
11635 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000011636 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
11637 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000011638 }
11639
11640 // Issue new vector shifts for the smaller types
11641 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
11642 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
11643
11644 // Concatenate the result back
11645 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
11646 }
11647
Nate Begeman51409212010-07-28 00:21:48 +000011648 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000011649}
Mon P Wangaf9b9522008-12-18 21:42:19 +000011650
Craig Topper55b24052012-09-11 06:15:32 +000011651static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000011652 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
11653 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000011654 // looks for this combo and may remove the "setcc" instruction if the "setcc"
11655 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000011656 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000011657 SDValue LHS = N->getOperand(0);
11658 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000011659 unsigned BaseOp = 0;
11660 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011661 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +000011662 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011663 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000011664 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000011665 // A subtract of one will be selected as a INC. Note that INC doesn't
11666 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000011667 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11668 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000011669 BaseOp = X86ISD::INC;
11670 Cond = X86::COND_O;
11671 break;
11672 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000011673 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000011674 Cond = X86::COND_O;
11675 break;
11676 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000011677 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000011678 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000011679 break;
11680 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000011681 // A subtract of one will be selected as a DEC. Note that DEC doesn't
11682 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000011683 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11684 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000011685 BaseOp = X86ISD::DEC;
11686 Cond = X86::COND_O;
11687 break;
11688 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000011689 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000011690 Cond = X86::COND_O;
11691 break;
11692 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000011693 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000011694 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000011695 break;
11696 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000011697 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000011698 Cond = X86::COND_O;
11699 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011700 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
11701 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
11702 MVT::i32);
11703 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011704
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011705 SDValue SetCC =
11706 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11707 DAG.getConstant(X86::COND_O, MVT::i32),
11708 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011709
Dan Gohman6e5fda22011-07-22 18:45:15 +000011710 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011711 }
Bill Wendling74c37652008-12-09 22:08:41 +000011712 }
Bill Wendling3fafd932008-11-26 22:37:40 +000011713
Bill Wendling61edeb52008-12-02 01:06:39 +000011714 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000011715 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011716 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000011717
Bill Wendling61edeb52008-12-02 01:06:39 +000011718 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000011719 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
11720 DAG.getConstant(Cond, MVT::i32),
11721 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000011722
Dan Gohman6e5fda22011-07-22 18:45:15 +000011723 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000011724}
11725
Chad Rosier30450e82011-12-22 22:35:21 +000011726SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
11727 SelectionDAG &DAG) const {
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011728 DebugLoc dl = Op.getDebugLoc();
Craig Toppera124f942011-11-21 01:12:36 +000011729 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
11730 EVT VT = Op.getValueType();
11731
Craig Toppered2e13d2012-01-22 19:15:14 +000011732 if (!Subtarget->hasSSE2() || !VT.isVector())
11733 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011734
Craig Toppered2e13d2012-01-22 19:15:14 +000011735 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
11736 ExtraVT.getScalarType().getSizeInBits();
11737 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
11738
11739 switch (VT.getSimpleVT().SimpleTy) {
11740 default: return SDValue();
11741 case MVT::v8i32:
11742 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011743 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011744 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000011745 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000011746 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000011747 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000011748
Craig Toppered2e13d2012-01-22 19:15:14 +000011749 // Extract the LHS vectors
11750 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000011751 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
11752 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000011753
Craig Toppered2e13d2012-01-22 19:15:14 +000011754 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11755 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000011756
Craig Toppered2e13d2012-01-22 19:15:14 +000011757 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000011758 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000011759 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
11760 ExtraNumElems/2);
11761 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000011762
Craig Toppered2e13d2012-01-22 19:15:14 +000011763 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
11764 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000011765
Dmitri Gribenko2de05722012-09-10 21:26:47 +000011766 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000011767 }
11768 // fall through
11769 case MVT::v4i32:
11770 case MVT::v8i16: {
11771 SDValue Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT,
11772 Op.getOperand(0), ShAmt, DAG);
11773 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011774 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011775 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000011776}
11777
Craig Topper55b24052012-09-11 06:15:32 +000011778static SDValue LowerMEMBARRIER(SDValue Op, const X86Subtarget *Subtarget,
11779 SelectionDAG &DAG) {
Eric Christopher9a9d2752010-07-22 02:48:34 +000011780 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011781
Eric Christopher77ed1352011-07-08 00:04:56 +000011782 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
11783 // There isn't any reason to disable it if the target processor supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000011784 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +000011785 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +000011786 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +000011787 SDValue Ops[] = {
11788 DAG.getRegister(X86::ESP, MVT::i32), // Base
11789 DAG.getTargetConstant(1, MVT::i8), // Scale
11790 DAG.getRegister(0, MVT::i32), // Index
11791 DAG.getTargetConstant(0, MVT::i32), // Disp
11792 DAG.getRegister(0, MVT::i32), // Segment.
11793 Zero,
11794 Chain
11795 };
Michael J. Spencerec38de22010-10-10 22:04:20 +000011796 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +000011797 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
11798 array_lengthof(Ops));
11799 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +000011800 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011801
Eric Christopher9a9d2752010-07-22 02:48:34 +000011802 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +000011803 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +000011804 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000011805
Chris Lattner132929a2010-08-14 17:26:09 +000011806 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11807 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
11808 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
11809 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011810
Chris Lattner132929a2010-08-14 17:26:09 +000011811 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
11812 if (!Op1 && !Op2 && !Op3 && Op4)
11813 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000011814
Chris Lattner132929a2010-08-14 17:26:09 +000011815 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
11816 if (Op1 && !Op2 && !Op3 && !Op4)
11817 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000011818
11819 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +000011820 // (MFENCE)>;
11821 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +000011822}
11823
Craig Topper55b24052012-09-11 06:15:32 +000011824static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
11825 SelectionDAG &DAG) {
Eli Friedman14648462011-07-27 22:21:52 +000011826 DebugLoc dl = Op.getDebugLoc();
11827 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
11828 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
11829 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
11830 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
11831
11832 // The only fence that needs an instruction is a sequentially-consistent
11833 // cross-thread fence.
11834 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
11835 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
11836 // no-sse2). There isn't any reason to disable it if the target processor
11837 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000011838 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000011839 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
11840
11841 SDValue Chain = Op.getOperand(0);
11842 SDValue Zero = DAG.getConstant(0, MVT::i32);
11843 SDValue Ops[] = {
11844 DAG.getRegister(X86::ESP, MVT::i32), // Base
11845 DAG.getTargetConstant(1, MVT::i8), // Scale
11846 DAG.getRegister(0, MVT::i32), // Index
11847 DAG.getTargetConstant(0, MVT::i32), // Disp
11848 DAG.getRegister(0, MVT::i32), // Segment.
11849 Zero,
11850 Chain
11851 };
11852 SDNode *Res =
11853 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
11854 array_lengthof(Ops));
11855 return SDValue(Res, 0);
11856 }
11857
11858 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
11859 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
11860}
11861
Craig Topper55b24052012-09-11 06:15:32 +000011862static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
11863 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000011864 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +000011865 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000011866 unsigned Reg = 0;
11867 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000011868 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000011869 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011870 case MVT::i8: Reg = X86::AL; size = 1; break;
11871 case MVT::i16: Reg = X86::AX; size = 2; break;
11872 case MVT::i32: Reg = X86::EAX; size = 4; break;
11873 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000011874 assert(Subtarget->is64Bit() && "Node not type legal!");
11875 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000011876 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000011877 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000011878 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000011879 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000011880 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000011881 Op.getOperand(1),
11882 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000011883 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000011884 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000011885 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000011886 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
11887 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
11888 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000011889 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000011890 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000011891 return cpOut;
11892}
11893
Craig Topper55b24052012-09-11 06:15:32 +000011894static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
11895 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000011896 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000011897 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000011898 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000011899 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +000011900 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000011901 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
11902 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000011903 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000011904 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
11905 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000011906 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000011907 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000011908 rdx.getValue(1)
11909 };
Dale Johannesene4d209d2009-02-03 20:21:25 +000011910 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011911}
11912
Craig Topper55b24052012-09-11 06:15:32 +000011913SDValue X86TargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen7d07b482010-05-21 00:52:33 +000011914 EVT SrcVT = Op.getOperand(0).getValueType();
11915 EVT DstVT = Op.getValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000011916 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000011917 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011918 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000011919 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011920 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000011921 // i64 <=> MMX conversions are Legal.
11922 if (SrcVT==MVT::i64 && DstVT.isVector())
11923 return Op;
11924 if (DstVT==MVT::i64 && SrcVT.isVector())
11925 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000011926 // MMX <=> MMX conversions are Legal.
11927 if (SrcVT.isVector() && DstVT.isVector())
11928 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000011929 // All other conversions need to be expanded.
11930 return SDValue();
11931}
Chris Lattner5b856542010-12-20 00:59:46 +000011932
Craig Topper55b24052012-09-11 06:15:32 +000011933static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000011934 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +000011935 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011936 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011937 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000011938 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000011939 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000011940 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000011941 Node->getOperand(0),
11942 Node->getOperand(1), negOp,
11943 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000011944 cast<AtomicSDNode>(Node)->getAlignment(),
11945 cast<AtomicSDNode>(Node)->getOrdering(),
11946 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000011947}
11948
Eli Friedman327236c2011-08-24 20:50:09 +000011949static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
11950 SDNode *Node = Op.getNode();
11951 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanf8f90f02011-08-24 22:33:28 +000011952 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000011953
11954 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000011955 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
11956 // FIXME: On 32-bit, store -> fist or movq would be more efficient
11957 // (The only way to get a 16-byte store is cmpxchg16b)
11958 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
11959 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
11960 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000011961 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
11962 cast<AtomicSDNode>(Node)->getMemoryVT(),
11963 Node->getOperand(0),
11964 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000011965 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000011966 cast<AtomicSDNode>(Node)->getOrdering(),
11967 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000011968 return Swap.getValue(1);
11969 }
11970 // Other atomic stores have a simple pattern.
11971 return Op;
11972}
11973
Chris Lattner5b856542010-12-20 00:59:46 +000011974static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
11975 EVT VT = Op.getNode()->getValueType(0);
11976
11977 // Let legalize expand this if it isn't a legal type yet.
11978 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
11979 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011980
Chris Lattner5b856542010-12-20 00:59:46 +000011981 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011982
Chris Lattner5b856542010-12-20 00:59:46 +000011983 unsigned Opc;
11984 bool ExtraOp = false;
11985 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000011986 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000011987 case ISD::ADDC: Opc = X86ISD::ADD; break;
11988 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
11989 case ISD::SUBC: Opc = X86ISD::SUB; break;
11990 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
11991 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011992
Chris Lattner5b856542010-12-20 00:59:46 +000011993 if (!ExtraOp)
11994 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11995 Op.getOperand(1));
11996 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11997 Op.getOperand(1), Op.getOperand(2));
11998}
11999
Evan Cheng0db9fe62006-04-25 20:13:52 +000012000/// LowerOperation - Provide custom lowering hooks for some operations.
12001///
Dan Gohmand858e902010-04-17 15:26:15 +000012002SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000012003 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012004 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012005 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012006 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, Subtarget, DAG);
12007 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
12008 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012009 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000012010 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012011 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000012012 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012013 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
12014 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
12015 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012016 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
12017 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012018 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
12019 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
12020 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000012021 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000012022 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000012023 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012024 case ISD::SHL_PARTS:
12025 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000012026 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012027 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000012028 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000012029 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Nadav Rotem0509db22012-12-28 05:45:24 +000012030 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, DAG);
12031 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
12032 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012033 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000012034 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000012035 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012036 case ISD::FABS: return LowerFABS(Op, DAG);
12037 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000012038 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000012039 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000012040 case ISD::SETCC: return LowerSETCC(Op, DAG);
12041 case ISD::SELECT: return LowerSELECT(Op, DAG);
12042 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012043 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012044 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000012045 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012046 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012047 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000012048 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000012049 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
12050 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012051 case ISD::FRAME_TO_ARGS_OFFSET:
12052 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000012053 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012054 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012055 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
12056 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000012057 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
12058 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000012059 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000012060 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012061 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000012062 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012063 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000012064 case ISD::SRA:
12065 case ISD::SRL:
12066 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000012067 case ISD::SADDO:
12068 case ISD::UADDO:
12069 case ISD::SSUBO:
12070 case ISD::USUBO:
12071 case ISD::SMULO:
12072 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000012073 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012074 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000012075 case ISD::ADDC:
12076 case ISD::ADDE:
12077 case ISD::SUBC:
12078 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000012079 case ISD::ADD: return LowerADD(Op, DAG);
12080 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012081 case ISD::SDIV: return LowerSDIV(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000012082 }
Chris Lattner27a6c732007-11-24 07:07:01 +000012083}
12084
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012085static void ReplaceATOMIC_LOAD(SDNode *Node,
12086 SmallVectorImpl<SDValue> &Results,
12087 SelectionDAG &DAG) {
12088 DebugLoc dl = Node->getDebugLoc();
12089 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
12090
12091 // Convert wide load -> cmpxchg8b/cmpxchg16b
12092 // FIXME: On 32-bit, load -> fild or movq would be more efficient
12093 // (The only way to get a 16-byte load is cmpxchg16b)
12094 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000012095 SDValue Zero = DAG.getConstant(0, VT);
12096 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012097 Node->getOperand(0),
12098 Node->getOperand(1), Zero, Zero,
12099 cast<AtomicSDNode>(Node)->getMemOperand(),
12100 cast<AtomicSDNode>(Node)->getOrdering(),
12101 cast<AtomicSDNode>(Node)->getSynchScope());
12102 Results.push_back(Swap.getValue(0));
12103 Results.push_back(Swap.getValue(1));
12104}
12105
Craig Topperc0878702012-08-17 06:55:11 +000012106static void
Duncan Sands1607f052008-12-01 11:39:25 +000012107ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000012108 SelectionDAG &DAG, unsigned NewOp) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012109 DebugLoc dl = Node->getDebugLoc();
Duncan Sands17001ce2011-10-18 12:44:00 +000012110 assert (Node->getValueType(0) == MVT::i64 &&
12111 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000012112
12113 SDValue Chain = Node->getOperand(0);
12114 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000012115 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012116 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000012117 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012118 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000012119 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000012120 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000012121 SDValue Result =
12122 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
12123 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000012124 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000012125 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000012126 Results.push_back(Result.getValue(2));
12127}
12128
Duncan Sands126d9072008-07-04 11:47:58 +000012129/// ReplaceNodeResults - Replace a node with an illegal result type
12130/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000012131void X86TargetLowering::ReplaceNodeResults(SDNode *N,
12132 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000012133 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012134 DebugLoc dl = N->getDebugLoc();
Nadav Rotem0a1e9142012-12-14 21:20:37 +000012135 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000012136 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000012137 default:
Craig Topperabb94d02012-02-05 03:43:23 +000012138 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000012139 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000012140 case ISD::ADDC:
12141 case ISD::ADDE:
12142 case ISD::SUBC:
12143 case ISD::SUBE:
12144 // We don't want to expand or promote these.
12145 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000012146 case ISD::FP_TO_SINT:
12147 case ISD::FP_TO_UINT: {
12148 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
12149
12150 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
12151 return;
12152
Eli Friedman948e95a2009-05-23 09:59:16 +000012153 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000012154 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000012155 SDValue FIST = Vals.first, StackSlot = Vals.second;
12156 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000012157 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000012158 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000012159 if (StackSlot.getNode() != 0)
12160 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
12161 MachinePointerInfo(),
12162 false, false, false, 0));
12163 else
12164 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000012165 }
12166 return;
12167 }
Michael Liao991b6a22012-10-24 04:09:32 +000012168 case ISD::UINT_TO_FP: {
12169 if (N->getOperand(0).getValueType() != MVT::v2i32 &&
12170 N->getValueType(0) != MVT::v2f32)
12171 return;
12172 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
12173 N->getOperand(0));
12174 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
12175 MVT::f64);
12176 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
12177 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
12178 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
12179 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
12180 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
12181 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
12182 return;
12183 }
Michael Liao44c2d612012-10-10 16:53:28 +000012184 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000012185 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
12186 return;
Michael Liao44c2d612012-10-10 16:53:28 +000012187 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
12188 Results.push_back(V);
12189 return;
12190 }
Duncan Sands1607f052008-12-01 11:39:25 +000012191 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000012192 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000012193 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012194 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000012195 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000012196 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000012197 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000012198 eax.getValue(2));
12199 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
12200 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000012201 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000012202 Results.push_back(edx.getValue(1));
12203 return;
12204 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012205 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000012206 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000012207 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000012208 bool Regs64bit = T == MVT::i128;
12209 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000012210 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000012211 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
12212 DAG.getConstant(0, HalfT));
12213 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
12214 DAG.getConstant(1, HalfT));
12215 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
12216 Regs64bit ? X86::RAX : X86::EAX,
12217 cpInL, SDValue());
12218 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
12219 Regs64bit ? X86::RDX : X86::EDX,
12220 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000012221 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000012222 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
12223 DAG.getConstant(0, HalfT));
12224 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
12225 DAG.getConstant(1, HalfT));
12226 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
12227 Regs64bit ? X86::RBX : X86::EBX,
12228 swapInL, cpInH.getValue(1));
12229 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000012230 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000012231 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000012232 SDValue Ops[] = { swapInH.getValue(0),
12233 N->getOperand(1),
12234 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000012235 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000012236 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000012237 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
12238 X86ISD::LCMPXCHG8_DAG;
12239 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000012240 Ops, 3, T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000012241 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
12242 Regs64bit ? X86::RAX : X86::EAX,
12243 HalfT, Result.getValue(1));
12244 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
12245 Regs64bit ? X86::RDX : X86::EDX,
12246 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000012247 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000012248 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000012249 Results.push_back(cpOutH.getValue(1));
12250 return;
12251 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012252 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012253 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012254 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012255 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012256 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000012257 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000012258 case ISD::ATOMIC_LOAD_MAX:
12259 case ISD::ATOMIC_LOAD_MIN:
12260 case ISD::ATOMIC_LOAD_UMAX:
12261 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000012262 case ISD::ATOMIC_SWAP: {
12263 unsigned Opc;
12264 switch (N->getOpcode()) {
12265 default: llvm_unreachable("Unexpected opcode");
12266 case ISD::ATOMIC_LOAD_ADD:
12267 Opc = X86ISD::ATOMADD64_DAG;
12268 break;
12269 case ISD::ATOMIC_LOAD_AND:
12270 Opc = X86ISD::ATOMAND64_DAG;
12271 break;
12272 case ISD::ATOMIC_LOAD_NAND:
12273 Opc = X86ISD::ATOMNAND64_DAG;
12274 break;
12275 case ISD::ATOMIC_LOAD_OR:
12276 Opc = X86ISD::ATOMOR64_DAG;
12277 break;
12278 case ISD::ATOMIC_LOAD_SUB:
12279 Opc = X86ISD::ATOMSUB64_DAG;
12280 break;
12281 case ISD::ATOMIC_LOAD_XOR:
12282 Opc = X86ISD::ATOMXOR64_DAG;
12283 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000012284 case ISD::ATOMIC_LOAD_MAX:
12285 Opc = X86ISD::ATOMMAX64_DAG;
12286 break;
12287 case ISD::ATOMIC_LOAD_MIN:
12288 Opc = X86ISD::ATOMMIN64_DAG;
12289 break;
12290 case ISD::ATOMIC_LOAD_UMAX:
12291 Opc = X86ISD::ATOMUMAX64_DAG;
12292 break;
12293 case ISD::ATOMIC_LOAD_UMIN:
12294 Opc = X86ISD::ATOMUMIN64_DAG;
12295 break;
Craig Topperc0878702012-08-17 06:55:11 +000012296 case ISD::ATOMIC_SWAP:
12297 Opc = X86ISD::ATOMSWAP64_DAG;
12298 break;
12299 }
12300 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000012301 return;
Craig Topperc0878702012-08-17 06:55:11 +000012302 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000012303 case ISD::ATOMIC_LOAD:
12304 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000012305 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000012306}
12307
Evan Cheng72261582005-12-20 06:22:03 +000012308const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
12309 switch (Opcode) {
12310 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000012311 case X86ISD::BSF: return "X86ISD::BSF";
12312 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000012313 case X86ISD::SHLD: return "X86ISD::SHLD";
12314 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000012315 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000012316 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000012317 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000012318 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000012319 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000012320 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000012321 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
12322 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
12323 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000012324 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000012325 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000012326 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000012327 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000012328 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000012329 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000012330 case X86ISD::COMI: return "X86ISD::COMI";
12331 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000012332 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000012333 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000012334 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
12335 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000012336 case X86ISD::CMOV: return "X86ISD::CMOV";
12337 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000012338 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000012339 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
12340 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000012341 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000012342 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000012343 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000012344 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000012345 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000012346 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
12347 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000012348 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000012349 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012350 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000012351 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000012352 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000012353 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000012354 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000012355 case X86ISD::HADD: return "X86ISD::HADD";
12356 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000012357 case X86ISD::FHADD: return "X86ISD::FHADD";
12358 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000012359 case X86ISD::UMAX: return "X86ISD::UMAX";
12360 case X86ISD::UMIN: return "X86ISD::UMIN";
12361 case X86ISD::SMAX: return "X86ISD::SMAX";
12362 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000012363 case X86ISD::FMAX: return "X86ISD::FMAX";
12364 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000012365 case X86ISD::FMAXC: return "X86ISD::FMAXC";
12366 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000012367 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
12368 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000012369 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000012370 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000012371 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000012372 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
12373 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012374 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000012375 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012376 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000012377 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000012378 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
12379 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012380 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
12381 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
12382 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
12383 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
12384 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
12385 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000012386 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000012387 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000012388 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000012389 case X86ISD::VZEXT: return "X86ISD::VZEXT";
12390 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Michael Liao7091b242012-08-14 21:24:47 +000012391 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000012392 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000012393 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
12394 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000012395 case X86ISD::VSHL: return "X86ISD::VSHL";
12396 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000012397 case X86ISD::VSRA: return "X86ISD::VSRA";
12398 case X86ISD::VSHLI: return "X86ISD::VSHLI";
12399 case X86ISD::VSRLI: return "X86ISD::VSRLI";
12400 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000012401 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000012402 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
12403 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012404 case X86ISD::ADD: return "X86ISD::ADD";
12405 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000012406 case X86ISD::ADC: return "X86ISD::ADC";
12407 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000012408 case X86ISD::SMUL: return "X86ISD::SMUL";
12409 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000012410 case X86ISD::INC: return "X86ISD::INC";
12411 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000012412 case X86ISD::OR: return "X86ISD::OR";
12413 case X86ISD::XOR: return "X86ISD::XOR";
12414 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000012415 case X86ISD::BLSI: return "X86ISD::BLSI";
12416 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
12417 case X86ISD::BLSR: return "X86ISD::BLSR";
Evan Cheng73f24c92009-03-30 21:36:47 +000012418 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000012419 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000012420 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012421 case X86ISD::PALIGN: return "X86ISD::PALIGN";
12422 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
12423 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012424 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000012425 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012426 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012427 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000012428 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000012429 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
12430 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012431 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
12432 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
12433 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000012434 case X86ISD::MOVSD: return "X86ISD::MOVSD";
12435 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000012436 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
12437 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000012438 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Craig Topper316cd2a2011-11-30 06:25:25 +000012439 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000012440 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000012441 case X86ISD::VPERMV: return "X86ISD::VPERMV";
12442 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000012443 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000012444 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000012445 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000012446 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000012447 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000012448 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000012449 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000012450 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000012451 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000012452 case X86ISD::FMADD: return "X86ISD::FMADD";
12453 case X86ISD::FMSUB: return "X86ISD::FMSUB";
12454 case X86ISD::FNMADD: return "X86ISD::FNMADD";
12455 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
12456 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
12457 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000012458 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
12459 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Evan Cheng72261582005-12-20 06:22:03 +000012460 }
12461}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012462
Chris Lattnerc9addb72007-03-30 23:15:24 +000012463// isLegalAddressingMode - Return true if the addressing mode represented
12464// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000012465bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012466 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000012467 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012468 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000012469 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000012470
Chris Lattnerc9addb72007-03-30 23:15:24 +000012471 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012472 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000012473 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000012474
Chris Lattnerc9addb72007-03-30 23:15:24 +000012475 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000012476 unsigned GVFlags =
12477 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012478
Chris Lattnerdfed4132009-07-10 07:38:24 +000012479 // If a reference to this global requires an extra load, we can't fold it.
12480 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000012481 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012482
Chris Lattnerdfed4132009-07-10 07:38:24 +000012483 // If BaseGV requires a register for the PIC base, we cannot also have a
12484 // BaseReg specified.
12485 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000012486 return false;
Evan Cheng52787842007-08-01 23:46:47 +000012487
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012488 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000012489 if ((M != CodeModel::Small || R != Reloc::Static) &&
12490 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000012491 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000012492 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012493
Chris Lattnerc9addb72007-03-30 23:15:24 +000012494 switch (AM.Scale) {
12495 case 0:
12496 case 1:
12497 case 2:
12498 case 4:
12499 case 8:
12500 // These scales always work.
12501 break;
12502 case 3:
12503 case 5:
12504 case 9:
12505 // These scales are formed with basereg+scalereg. Only accept if there is
12506 // no basereg yet.
12507 if (AM.HasBaseReg)
12508 return false;
12509 break;
12510 default: // Other stuff never works.
12511 return false;
12512 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012513
Chris Lattnerc9addb72007-03-30 23:15:24 +000012514 return true;
12515}
12516
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012517bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012518 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000012519 return false;
Evan Chenge127a732007-10-29 07:57:50 +000012520 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
12521 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000012522 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000012523}
12524
Evan Cheng70e10d32012-07-17 06:53:39 +000012525bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000012526 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000012527}
12528
12529bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000012530 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000012531 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000012532}
12533
Owen Andersone50ed302009-08-10 22:56:29 +000012534bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000012535 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000012536 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012537 unsigned NumBits1 = VT1.getSizeInBits();
12538 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000012539 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000012540}
Evan Cheng2bd122c2007-10-26 01:56:11 +000012541
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012542bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000012543 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012544 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000012545}
12546
Owen Andersone50ed302009-08-10 22:56:29 +000012547bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000012548 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000012549 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000012550}
12551
Evan Cheng2766a472012-12-06 19:13:27 +000012552bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
12553 EVT VT1 = Val.getValueType();
12554 if (isZExtFree(VT1, VT2))
12555 return true;
12556
12557 if (Val.getOpcode() != ISD::LOAD)
12558 return false;
12559
12560 if (!VT1.isSimple() || !VT1.isInteger() ||
12561 !VT2.isSimple() || !VT2.isInteger())
12562 return false;
12563
12564 switch (VT1.getSimpleVT().SimpleTy) {
12565 default: break;
12566 case MVT::i8:
12567 case MVT::i16:
12568 case MVT::i32:
12569 // X86 has 8, 16, and 32-bit zero-extending loads.
12570 return true;
12571 }
12572
12573 return false;
12574}
12575
Owen Andersone50ed302009-08-10 22:56:29 +000012576bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000012577 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000012578 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000012579}
12580
Evan Cheng60c07e12006-07-05 22:17:51 +000012581/// isShuffleMaskLegal - Targets can use this to indicate that they only
12582/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
12583/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
12584/// are assumed to be legal.
12585bool
Eric Christopherfd179292009-08-27 18:07:15 +000012586X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000012587 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000012588 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000012589 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000012590 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000012591
Nate Begemana09008b2009-10-19 02:17:23 +000012592 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000012593 return (VT.getVectorNumElements() == 2 ||
12594 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
12595 isMOVLMask(M, VT) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012596 isSHUFPMask(M, VT, Subtarget->hasFp256()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000012597 isPSHUFDMask(M, VT) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012598 isPSHUFHWMask(M, VT, Subtarget->hasInt256()) ||
12599 isPSHUFLWMask(M, VT, Subtarget->hasInt256()) ||
Craig Topper0e2037b2012-01-20 05:53:00 +000012600 isPALIGNRMask(M, VT, Subtarget) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012601 isUNPCKLMask(M, VT, Subtarget->hasInt256()) ||
12602 isUNPCKHMask(M, VT, Subtarget->hasInt256()) ||
12603 isUNPCKL_v_undef_Mask(M, VT, Subtarget->hasInt256()) ||
12604 isUNPCKH_v_undef_Mask(M, VT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000012605}
12606
Dan Gohman7d8143f2008-04-09 20:09:42 +000012607bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000012608X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000012609 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000012610 unsigned NumElts = VT.getVectorNumElements();
12611 // FIXME: This collection of masks seems suspect.
12612 if (NumElts == 2)
12613 return true;
Craig Topper7a9a28b2012-08-12 02:23:29 +000012614 if (NumElts == 4 && VT.is128BitVector()) {
Nate Begeman9008ca62009-04-27 18:41:29 +000012615 return (isMOVLMask(Mask, VT) ||
12616 isCommutedMOVLMask(Mask, VT, true) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012617 isSHUFPMask(Mask, VT, Subtarget->hasFp256()) ||
12618 isSHUFPMask(Mask, VT, Subtarget->hasFp256(), /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000012619 }
12620 return false;
12621}
12622
12623//===----------------------------------------------------------------------===//
12624// X86 Scheduler Hooks
12625//===----------------------------------------------------------------------===//
12626
Michael Liaobe02a902012-11-08 07:28:54 +000012627/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000012628static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
12629 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000012630 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000012631
12632 const BasicBlock *BB = MBB->getBasicBlock();
12633 MachineFunction::iterator I = MBB;
12634 ++I;
12635
12636 // For the v = xbegin(), we generate
12637 //
12638 // thisMBB:
12639 // xbegin sinkMBB
12640 //
12641 // mainMBB:
12642 // eax = -1
12643 //
12644 // sinkMBB:
12645 // v = eax
12646
12647 MachineBasicBlock *thisMBB = MBB;
12648 MachineFunction *MF = MBB->getParent();
12649 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
12650 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
12651 MF->insert(I, mainMBB);
12652 MF->insert(I, sinkMBB);
12653
12654 // Transfer the remainder of BB and its successor edges to sinkMBB.
12655 sinkMBB->splice(sinkMBB->begin(), MBB,
12656 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
12657 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
12658
12659 // thisMBB:
12660 // xbegin sinkMBB
12661 // # fallthrough to mainMBB
12662 // # abortion to sinkMBB
12663 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
12664 thisMBB->addSuccessor(mainMBB);
12665 thisMBB->addSuccessor(sinkMBB);
12666
12667 // mainMBB:
12668 // EAX = -1
12669 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
12670 mainMBB->addSuccessor(sinkMBB);
12671
12672 // sinkMBB:
12673 // EAX is live into the sinkMBB
12674 sinkMBB->addLiveIn(X86::EAX);
12675 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12676 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
12677 .addReg(X86::EAX);
12678
12679 MI->eraseFromParent();
12680 return sinkMBB;
12681}
12682
Michael Liaob118a072012-09-20 03:06:15 +000012683// Get CMPXCHG opcode for the specified data type.
12684static unsigned getCmpXChgOpcode(EVT VT) {
12685 switch (VT.getSimpleVT().SimpleTy) {
12686 case MVT::i8: return X86::LCMPXCHG8;
12687 case MVT::i16: return X86::LCMPXCHG16;
12688 case MVT::i32: return X86::LCMPXCHG32;
12689 case MVT::i64: return X86::LCMPXCHG64;
12690 default:
12691 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000012692 }
Michael Liaob118a072012-09-20 03:06:15 +000012693 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000012694}
12695
Michael Liaob118a072012-09-20 03:06:15 +000012696// Get LOAD opcode for the specified data type.
12697static unsigned getLoadOpcode(EVT VT) {
12698 switch (VT.getSimpleVT().SimpleTy) {
12699 case MVT::i8: return X86::MOV8rm;
12700 case MVT::i16: return X86::MOV16rm;
12701 case MVT::i32: return X86::MOV32rm;
12702 case MVT::i64: return X86::MOV64rm;
12703 default:
12704 break;
12705 }
12706 llvm_unreachable("Invalid operand size!");
12707}
12708
12709// Get opcode of the non-atomic one from the specified atomic instruction.
12710static unsigned getNonAtomicOpcode(unsigned Opc) {
12711 switch (Opc) {
12712 case X86::ATOMAND8: return X86::AND8rr;
12713 case X86::ATOMAND16: return X86::AND16rr;
12714 case X86::ATOMAND32: return X86::AND32rr;
12715 case X86::ATOMAND64: return X86::AND64rr;
12716 case X86::ATOMOR8: return X86::OR8rr;
12717 case X86::ATOMOR16: return X86::OR16rr;
12718 case X86::ATOMOR32: return X86::OR32rr;
12719 case X86::ATOMOR64: return X86::OR64rr;
12720 case X86::ATOMXOR8: return X86::XOR8rr;
12721 case X86::ATOMXOR16: return X86::XOR16rr;
12722 case X86::ATOMXOR32: return X86::XOR32rr;
12723 case X86::ATOMXOR64: return X86::XOR64rr;
12724 }
12725 llvm_unreachable("Unhandled atomic-load-op opcode!");
12726}
12727
12728// Get opcode of the non-atomic one from the specified atomic instruction with
12729// extra opcode.
12730static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
12731 unsigned &ExtraOpc) {
12732 switch (Opc) {
12733 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
12734 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
12735 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
12736 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000012737 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000012738 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
12739 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
12740 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000012741 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000012742 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
12743 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
12744 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000012745 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000012746 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
12747 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
12748 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000012749 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000012750 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
12751 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
12752 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
12753 }
12754 llvm_unreachable("Unhandled atomic-load-op opcode!");
12755}
12756
12757// Get opcode of the non-atomic one from the specified atomic instruction for
12758// 64-bit data type on 32-bit target.
12759static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
12760 switch (Opc) {
12761 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
12762 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
12763 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
12764 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
12765 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
12766 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000012767 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
12768 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
12769 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
12770 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000012771 }
12772 llvm_unreachable("Unhandled atomic-load-op opcode!");
12773}
12774
12775// Get opcode of the non-atomic one from the specified atomic instruction for
12776// 64-bit data type on 32-bit target with extra opcode.
12777static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
12778 unsigned &HiOpc,
12779 unsigned &ExtraOpc) {
12780 switch (Opc) {
12781 case X86::ATOMNAND6432:
12782 ExtraOpc = X86::NOT32r;
12783 HiOpc = X86::AND32rr;
12784 return X86::AND32rr;
12785 }
12786 llvm_unreachable("Unhandled atomic-load-op opcode!");
12787}
12788
12789// Get pseudo CMOV opcode from the specified data type.
12790static unsigned getPseudoCMOVOpc(EVT VT) {
12791 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000012792 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000012793 case MVT::i16: return X86::CMOV_GR16;
12794 case MVT::i32: return X86::CMOV_GR32;
12795 default:
12796 break;
12797 }
12798 llvm_unreachable("Unknown CMOV opcode!");
12799}
12800
12801// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
12802// They will be translated into a spin-loop or compare-exchange loop from
12803//
12804// ...
12805// dst = atomic-fetch-op MI.addr, MI.val
12806// ...
12807//
12808// to
12809//
12810// ...
12811// EAX = LOAD MI.addr
12812// loop:
12813// t1 = OP MI.val, EAX
12814// LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
12815// JNE loop
12816// sink:
12817// dst = EAX
12818// ...
Mon P Wang63307c32008-05-05 19:05:59 +000012819MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000012820X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
12821 MachineBasicBlock *MBB) const {
12822 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12823 DebugLoc DL = MI->getDebugLoc();
12824
12825 MachineFunction *MF = MBB->getParent();
12826 MachineRegisterInfo &MRI = MF->getRegInfo();
12827
12828 const BasicBlock *BB = MBB->getBasicBlock();
12829 MachineFunction::iterator I = MBB;
12830 ++I;
12831
12832 assert(MI->getNumOperands() <= X86::AddrNumOperands + 2 &&
12833 "Unexpected number of operands");
12834
12835 assert(MI->hasOneMemOperand() &&
12836 "Expected atomic-load-op to have one memoperand");
12837
12838 // Memory Reference
12839 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
12840 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
12841
12842 unsigned DstReg, SrcReg;
12843 unsigned MemOpndSlot;
12844
12845 unsigned CurOp = 0;
12846
12847 DstReg = MI->getOperand(CurOp++).getReg();
12848 MemOpndSlot = CurOp;
12849 CurOp += X86::AddrNumOperands;
12850 SrcReg = MI->getOperand(CurOp++).getReg();
12851
12852 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000012853 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaob118a072012-09-20 03:06:15 +000012854 unsigned AccPhyReg = getX86SubSuperRegister(X86::EAX, VT);
12855
12856 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
12857 unsigned LOADOpc = getLoadOpcode(VT);
12858
12859 // For the atomic load-arith operator, we generate
12860 //
12861 // thisMBB:
12862 // EAX = LOAD [MI.addr]
12863 // mainMBB:
12864 // t1 = OP MI.val, EAX
12865 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
12866 // JNE mainMBB
12867 // sinkMBB:
12868
12869 MachineBasicBlock *thisMBB = MBB;
12870 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
12871 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
12872 MF->insert(I, mainMBB);
12873 MF->insert(I, sinkMBB);
12874
12875 MachineInstrBuilder MIB;
12876
12877 // Transfer the remainder of BB and its successor edges to sinkMBB.
12878 sinkMBB->splice(sinkMBB->begin(), MBB,
12879 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
12880 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
12881
12882 // thisMBB:
12883 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), AccPhyReg);
12884 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
12885 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12886 MIB.setMemRefs(MMOBegin, MMOEnd);
12887
12888 thisMBB->addSuccessor(mainMBB);
12889
12890 // mainMBB:
12891 MachineBasicBlock *origMainMBB = mainMBB;
12892 mainMBB->addLiveIn(AccPhyReg);
12893
12894 // Copy AccPhyReg as it is used more than once.
12895 unsigned AccReg = MRI.createVirtualRegister(RC);
12896 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), AccReg)
12897 .addReg(AccPhyReg);
12898
12899 unsigned t1 = MRI.createVirtualRegister(RC);
12900 unsigned Opc = MI->getOpcode();
12901 switch (Opc) {
12902 default:
12903 llvm_unreachable("Unhandled atomic-load-op opcode!");
12904 case X86::ATOMAND8:
12905 case X86::ATOMAND16:
12906 case X86::ATOMAND32:
12907 case X86::ATOMAND64:
12908 case X86::ATOMOR8:
12909 case X86::ATOMOR16:
12910 case X86::ATOMOR32:
12911 case X86::ATOMOR64:
12912 case X86::ATOMXOR8:
12913 case X86::ATOMXOR16:
12914 case X86::ATOMXOR32:
12915 case X86::ATOMXOR64: {
12916 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
12917 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t1).addReg(SrcReg)
12918 .addReg(AccReg);
12919 break;
12920 }
12921 case X86::ATOMNAND8:
12922 case X86::ATOMNAND16:
12923 case X86::ATOMNAND32:
12924 case X86::ATOMNAND64: {
12925 unsigned t2 = MRI.createVirtualRegister(RC);
12926 unsigned NOTOpc;
12927 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
12928 BuildMI(mainMBB, DL, TII->get(ANDOpc), t2).addReg(SrcReg)
12929 .addReg(AccReg);
12930 BuildMI(mainMBB, DL, TII->get(NOTOpc), t1).addReg(t2);
12931 break;
12932 }
Michael Liao08382492012-09-21 03:00:17 +000012933 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000012934 case X86::ATOMMAX16:
12935 case X86::ATOMMAX32:
12936 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000012937 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000012938 case X86::ATOMMIN16:
12939 case X86::ATOMMIN32:
12940 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000012941 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000012942 case X86::ATOMUMAX16:
12943 case X86::ATOMUMAX32:
12944 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000012945 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000012946 case X86::ATOMUMIN16:
12947 case X86::ATOMUMIN32:
12948 case X86::ATOMUMIN64: {
12949 unsigned CMPOpc;
12950 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
12951
12952 BuildMI(mainMBB, DL, TII->get(CMPOpc))
12953 .addReg(SrcReg)
12954 .addReg(AccReg);
12955
12956 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000012957 if (VT != MVT::i8) {
12958 // Native support
12959 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t1)
12960 .addReg(SrcReg)
12961 .addReg(AccReg);
12962 } else {
12963 // Promote i8 to i32 to use CMOV32
12964 const TargetRegisterClass *RC32 = getRegClassFor(MVT::i32);
12965 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
12966 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
12967 unsigned t2 = MRI.createVirtualRegister(RC32);
12968
12969 unsigned Undef = MRI.createVirtualRegister(RC32);
12970 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
12971
12972 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
12973 .addReg(Undef)
12974 .addReg(SrcReg)
12975 .addImm(X86::sub_8bit);
12976 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
12977 .addReg(Undef)
12978 .addReg(AccReg)
12979 .addImm(X86::sub_8bit);
12980
12981 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
12982 .addReg(SrcReg32)
12983 .addReg(AccReg32);
12984
12985 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t1)
12986 .addReg(t2, 0, X86::sub_8bit);
12987 }
Michael Liaob118a072012-09-20 03:06:15 +000012988 } else {
12989 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000012990 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000012991 "Invalid atomic-load-op transformation!");
12992 unsigned SelOpc = getPseudoCMOVOpc(VT);
12993 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
12994 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
12995 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t1)
12996 .addReg(SrcReg).addReg(AccReg)
12997 .addImm(CC);
12998 mainMBB = EmitLoweredSelect(MIB, mainMBB);
12999 }
13000 break;
13001 }
13002 }
13003
13004 // Copy AccPhyReg back from virtual register.
13005 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), AccPhyReg)
13006 .addReg(AccReg);
13007
13008 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
13009 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
13010 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
13011 MIB.addReg(t1);
13012 MIB.setMemRefs(MMOBegin, MMOEnd);
13013
13014 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
13015
13016 mainMBB->addSuccessor(origMainMBB);
13017 mainMBB->addSuccessor(sinkMBB);
13018
13019 // sinkMBB:
13020 sinkMBB->addLiveIn(AccPhyReg);
13021
13022 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13023 TII->get(TargetOpcode::COPY), DstReg)
13024 .addReg(AccPhyReg);
13025
13026 MI->eraseFromParent();
13027 return sinkMBB;
13028}
13029
13030// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
13031// instructions. They will be translated into a spin-loop or compare-exchange
13032// loop from
13033//
13034// ...
13035// dst = atomic-fetch-op MI.addr, MI.val
13036// ...
13037//
13038// to
13039//
13040// ...
13041// EAX = LOAD [MI.addr + 0]
13042// EDX = LOAD [MI.addr + 4]
13043// loop:
13044// EBX = OP MI.val.lo, EAX
13045// ECX = OP MI.val.hi, EDX
13046// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
13047// JNE loop
13048// sink:
13049// dst = EDX:EAX
13050// ...
13051MachineBasicBlock *
13052X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
13053 MachineBasicBlock *MBB) const {
13054 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13055 DebugLoc DL = MI->getDebugLoc();
13056
13057 MachineFunction *MF = MBB->getParent();
13058 MachineRegisterInfo &MRI = MF->getRegInfo();
13059
13060 const BasicBlock *BB = MBB->getBasicBlock();
13061 MachineFunction::iterator I = MBB;
13062 ++I;
13063
13064 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
13065 "Unexpected number of operands");
13066
13067 assert(MI->hasOneMemOperand() &&
13068 "Expected atomic-load-op32 to have one memoperand");
13069
13070 // Memory Reference
13071 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13072 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13073
13074 unsigned DstLoReg, DstHiReg;
13075 unsigned SrcLoReg, SrcHiReg;
13076 unsigned MemOpndSlot;
13077
13078 unsigned CurOp = 0;
13079
13080 DstLoReg = MI->getOperand(CurOp++).getReg();
13081 DstHiReg = MI->getOperand(CurOp++).getReg();
13082 MemOpndSlot = CurOp;
13083 CurOp += X86::AddrNumOperands;
13084 SrcLoReg = MI->getOperand(CurOp++).getReg();
13085 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013086
Craig Topperc9099502012-04-20 06:31:50 +000013087 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013088 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000013089
Michael Liaob118a072012-09-20 03:06:15 +000013090 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
13091 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000013092
Michael Liaob118a072012-09-20 03:06:15 +000013093 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000013094 //
Michael Liaob118a072012-09-20 03:06:15 +000013095 // thisMBB:
13096 // EAX = LOAD [MI.addr + 0]
13097 // EDX = LOAD [MI.addr + 4]
13098 // mainMBB:
13099 // EBX = OP MI.vallo, EAX
13100 // ECX = OP MI.valhi, EDX
13101 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
13102 // JNE mainMBB
13103 // sinkMBB:
Scott Michelfdc40a02009-02-17 22:15:04 +000013104
Mon P Wang63307c32008-05-05 19:05:59 +000013105 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000013106 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13107 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13108 MF->insert(I, mainMBB);
13109 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000013110
Michael Liaob118a072012-09-20 03:06:15 +000013111 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000013112
Michael Liaob118a072012-09-20 03:06:15 +000013113 // Transfer the remainder of BB and its successor edges to sinkMBB.
13114 sinkMBB->splice(sinkMBB->begin(), MBB,
13115 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13116 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000013117
Michael Liaob118a072012-09-20 03:06:15 +000013118 // thisMBB:
13119 // Lo
13120 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), X86::EAX);
13121 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
13122 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
13123 MIB.setMemRefs(MMOBegin, MMOEnd);
13124 // Hi
13125 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), X86::EDX);
13126 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Evan Chenga395f4d2012-10-11 00:15:48 +000013127 if (i == X86::AddrDisp)
Michael Liaob118a072012-09-20 03:06:15 +000013128 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
Evan Chenga395f4d2012-10-11 00:15:48 +000013129 else
Michael Liaob118a072012-09-20 03:06:15 +000013130 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
13131 }
13132 MIB.setMemRefs(MMOBegin, MMOEnd);
Scott Michelfdc40a02009-02-17 22:15:04 +000013133
Michael Liaob118a072012-09-20 03:06:15 +000013134 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000013135
Michael Liaob118a072012-09-20 03:06:15 +000013136 // mainMBB:
13137 MachineBasicBlock *origMainMBB = mainMBB;
13138 mainMBB->addLiveIn(X86::EAX);
13139 mainMBB->addLiveIn(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000013140
Michael Liaob118a072012-09-20 03:06:15 +000013141 // Copy EDX:EAX as they are used more than once.
13142 unsigned LoReg = MRI.createVirtualRegister(RC);
13143 unsigned HiReg = MRI.createVirtualRegister(RC);
13144 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), LoReg).addReg(X86::EAX);
13145 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), HiReg).addReg(X86::EDX);
Mon P Wangab3e7472008-05-05 22:56:23 +000013146
Michael Liaob118a072012-09-20 03:06:15 +000013147 unsigned t1L = MRI.createVirtualRegister(RC);
13148 unsigned t1H = MRI.createVirtualRegister(RC);
Scott Michelfdc40a02009-02-17 22:15:04 +000013149
Michael Liaob118a072012-09-20 03:06:15 +000013150 unsigned Opc = MI->getOpcode();
13151 switch (Opc) {
13152 default:
13153 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
13154 case X86::ATOMAND6432:
13155 case X86::ATOMOR6432:
13156 case X86::ATOMXOR6432:
13157 case X86::ATOMADD6432:
13158 case X86::ATOMSUB6432: {
13159 unsigned HiOpc;
13160 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaodd3383f2012-11-12 06:49:17 +000013161 BuildMI(mainMBB, DL, TII->get(LoOpc), t1L).addReg(LoReg).addReg(SrcLoReg);
13162 BuildMI(mainMBB, DL, TII->get(HiOpc), t1H).addReg(HiReg).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000013163 break;
13164 }
13165 case X86::ATOMNAND6432: {
13166 unsigned HiOpc, NOTOpc;
13167 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
13168 unsigned t2L = MRI.createVirtualRegister(RC);
13169 unsigned t2H = MRI.createVirtualRegister(RC);
13170 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg).addReg(LoReg);
13171 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg).addReg(HiReg);
13172 BuildMI(mainMBB, DL, TII->get(NOTOpc), t1L).addReg(t2L);
13173 BuildMI(mainMBB, DL, TII->get(NOTOpc), t1H).addReg(t2H);
13174 break;
13175 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000013176 case X86::ATOMMAX6432:
13177 case X86::ATOMMIN6432:
13178 case X86::ATOMUMAX6432:
13179 case X86::ATOMUMIN6432: {
13180 unsigned HiOpc;
13181 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
13182 unsigned cL = MRI.createVirtualRegister(RC8);
13183 unsigned cH = MRI.createVirtualRegister(RC8);
13184 unsigned cL32 = MRI.createVirtualRegister(RC);
13185 unsigned cH32 = MRI.createVirtualRegister(RC);
13186 unsigned cc = MRI.createVirtualRegister(RC);
13187 // cl := cmp src_lo, lo
13188 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
13189 .addReg(SrcLoReg).addReg(LoReg);
13190 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
13191 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
13192 // ch := cmp src_hi, hi
13193 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
13194 .addReg(SrcHiReg).addReg(HiReg);
13195 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
13196 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
13197 // cc := if (src_hi == hi) ? cl : ch;
13198 if (Subtarget->hasCMov()) {
13199 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
13200 .addReg(cH32).addReg(cL32);
13201 } else {
13202 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
13203 .addReg(cH32).addReg(cL32)
13204 .addImm(X86::COND_E);
13205 mainMBB = EmitLoweredSelect(MIB, mainMBB);
13206 }
13207 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
13208 if (Subtarget->hasCMov()) {
13209 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t1L)
13210 .addReg(SrcLoReg).addReg(LoReg);
13211 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t1H)
13212 .addReg(SrcHiReg).addReg(HiReg);
13213 } else {
13214 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t1L)
13215 .addReg(SrcLoReg).addReg(LoReg)
13216 .addImm(X86::COND_NE);
13217 mainMBB = EmitLoweredSelect(MIB, mainMBB);
13218 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t1H)
13219 .addReg(SrcHiReg).addReg(HiReg)
13220 .addImm(X86::COND_NE);
13221 mainMBB = EmitLoweredSelect(MIB, mainMBB);
13222 }
13223 break;
13224 }
Michael Liaob118a072012-09-20 03:06:15 +000013225 case X86::ATOMSWAP6432: {
13226 unsigned HiOpc;
13227 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
13228 BuildMI(mainMBB, DL, TII->get(LoOpc), t1L).addReg(SrcLoReg);
13229 BuildMI(mainMBB, DL, TII->get(HiOpc), t1H).addReg(SrcHiReg);
13230 break;
13231 }
13232 }
Mon P Wang63307c32008-05-05 19:05:59 +000013233
Michael Liaob118a072012-09-20 03:06:15 +000013234 // Copy EDX:EAX back from HiReg:LoReg
13235 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(LoReg);
13236 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(HiReg);
13237 // Copy ECX:EBX from t1H:t1L
13238 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t1L);
13239 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t1H);
Mon P Wangab3e7472008-05-05 22:56:23 +000013240
Michael Liaob118a072012-09-20 03:06:15 +000013241 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
13242 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
13243 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
13244 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000013245
Michael Liaob118a072012-09-20 03:06:15 +000013246 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000013247
Michael Liaob118a072012-09-20 03:06:15 +000013248 mainMBB->addSuccessor(origMainMBB);
13249 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000013250
Michael Liaob118a072012-09-20 03:06:15 +000013251 // sinkMBB:
13252 sinkMBB->addLiveIn(X86::EAX);
13253 sinkMBB->addLiveIn(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000013254
Michael Liaob118a072012-09-20 03:06:15 +000013255 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13256 TII->get(TargetOpcode::COPY), DstLoReg)
13257 .addReg(X86::EAX);
13258 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13259 TII->get(TargetOpcode::COPY), DstHiReg)
13260 .addReg(X86::EDX);
Mon P Wang63307c32008-05-05 19:05:59 +000013261
Michael Liaob118a072012-09-20 03:06:15 +000013262 MI->eraseFromParent();
13263 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000013264}
13265
Eric Christopherf83a5de2009-08-27 18:08:16 +000013266// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000013267// or XMM0_V32I8 in AVX all of this code can be replaced with that
13268// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000013269static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
13270 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000013271 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000013272 switch (MI->getOpcode()) {
13273 default: llvm_unreachable("illegal opcode!");
13274 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
13275 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
13276 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
13277 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
13278 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
13279 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
13280 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
13281 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000013282 }
Eric Christopherb120ab42009-08-18 22:50:32 +000013283
Craig Topper8aae8dd2012-11-10 08:57:41 +000013284 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000013285 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000013286
Craig Topper52ea2452012-11-10 09:25:36 +000013287 unsigned NumArgs = MI->getNumOperands();
13288 for (unsigned i = 1; i < NumArgs; ++i) {
13289 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000013290 if (!(Op.isReg() && Op.isImplicit()))
13291 MIB.addOperand(Op);
13292 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000013293 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000013294 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
13295
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000013296 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000013297 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000013298 .addReg(X86::XMM0);
13299
Dan Gohman14152b42010-07-06 20:24:04 +000013300 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000013301 return BB;
13302}
13303
Craig Topper9c7ae012012-11-10 01:23:36 +000013304// FIXME: Custom handling because TableGen doesn't support multiple implicit
13305// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000013306static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
13307 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000013308 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000013309 switch (MI->getOpcode()) {
13310 default: llvm_unreachable("illegal opcode!");
13311 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
13312 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
13313 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
13314 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
13315 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
13316 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
13317 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
13318 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000013319 }
13320
Craig Topper8aae8dd2012-11-10 08:57:41 +000013321 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000013322 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000013323
Craig Topper52ea2452012-11-10 09:25:36 +000013324 unsigned NumArgs = MI->getNumOperands(); // remove the results
13325 for (unsigned i = 1; i < NumArgs; ++i) {
13326 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000013327 if (!(Op.isReg() && Op.isImplicit()))
13328 MIB.addOperand(Op);
13329 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000013330 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000013331 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
13332
13333 BuildMI(*BB, MI, dl,
13334 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
13335 .addReg(X86::ECX);
13336
13337 MI->eraseFromParent();
13338 return BB;
13339}
13340
Craig Topper2da36912012-11-11 22:45:02 +000013341static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
13342 const TargetInstrInfo *TII,
13343 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000013344 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013345
Eric Christopher228232b2010-11-30 07:20:12 +000013346 // Address into RAX/EAX, other two args into ECX, EDX.
13347 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
13348 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
13349 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
13350 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000013351 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013352
Eric Christopher228232b2010-11-30 07:20:12 +000013353 unsigned ValOps = X86::AddrNumOperands;
13354 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
13355 .addReg(MI->getOperand(ValOps).getReg());
13356 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
13357 .addReg(MI->getOperand(ValOps+1).getReg());
13358
13359 // The instruction doesn't actually take any operands though.
13360 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013361
Eric Christopher228232b2010-11-30 07:20:12 +000013362 MI->eraseFromParent(); // The pseudo is gone now.
13363 return BB;
13364}
13365
13366MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000013367X86TargetLowering::EmitVAARG64WithCustomInserter(
13368 MachineInstr *MI,
13369 MachineBasicBlock *MBB) const {
13370 // Emit va_arg instruction on X86-64.
13371
13372 // Operands to this pseudo-instruction:
13373 // 0 ) Output : destination address (reg)
13374 // 1-5) Input : va_list address (addr, i64mem)
13375 // 6 ) ArgSize : Size (in bytes) of vararg type
13376 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
13377 // 8 ) Align : Alignment of type
13378 // 9 ) EFLAGS (implicit-def)
13379
13380 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
13381 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
13382
13383 unsigned DestReg = MI->getOperand(0).getReg();
13384 MachineOperand &Base = MI->getOperand(1);
13385 MachineOperand &Scale = MI->getOperand(2);
13386 MachineOperand &Index = MI->getOperand(3);
13387 MachineOperand &Disp = MI->getOperand(4);
13388 MachineOperand &Segment = MI->getOperand(5);
13389 unsigned ArgSize = MI->getOperand(6).getImm();
13390 unsigned ArgMode = MI->getOperand(7).getImm();
13391 unsigned Align = MI->getOperand(8).getImm();
13392
13393 // Memory Reference
13394 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
13395 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13396 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13397
13398 // Machine Information
13399 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13400 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
13401 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
13402 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
13403 DebugLoc DL = MI->getDebugLoc();
13404
13405 // struct va_list {
13406 // i32 gp_offset
13407 // i32 fp_offset
13408 // i64 overflow_area (address)
13409 // i64 reg_save_area (address)
13410 // }
13411 // sizeof(va_list) = 24
13412 // alignment(va_list) = 8
13413
13414 unsigned TotalNumIntRegs = 6;
13415 unsigned TotalNumXMMRegs = 8;
13416 bool UseGPOffset = (ArgMode == 1);
13417 bool UseFPOffset = (ArgMode == 2);
13418 unsigned MaxOffset = TotalNumIntRegs * 8 +
13419 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
13420
13421 /* Align ArgSize to a multiple of 8 */
13422 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
13423 bool NeedsAlign = (Align > 8);
13424
13425 MachineBasicBlock *thisMBB = MBB;
13426 MachineBasicBlock *overflowMBB;
13427 MachineBasicBlock *offsetMBB;
13428 MachineBasicBlock *endMBB;
13429
13430 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
13431 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
13432 unsigned OffsetReg = 0;
13433
13434 if (!UseGPOffset && !UseFPOffset) {
13435 // If we only pull from the overflow region, we don't create a branch.
13436 // We don't need to alter control flow.
13437 OffsetDestReg = 0; // unused
13438 OverflowDestReg = DestReg;
13439
13440 offsetMBB = NULL;
13441 overflowMBB = thisMBB;
13442 endMBB = thisMBB;
13443 } else {
13444 // First emit code to check if gp_offset (or fp_offset) is below the bound.
13445 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
13446 // If not, pull from overflow_area. (branch to overflowMBB)
13447 //
13448 // thisMBB
13449 // | .
13450 // | .
13451 // offsetMBB overflowMBB
13452 // | .
13453 // | .
13454 // endMBB
13455
13456 // Registers for the PHI in endMBB
13457 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
13458 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
13459
13460 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
13461 MachineFunction *MF = MBB->getParent();
13462 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13463 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13464 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13465
13466 MachineFunction::iterator MBBIter = MBB;
13467 ++MBBIter;
13468
13469 // Insert the new basic blocks
13470 MF->insert(MBBIter, offsetMBB);
13471 MF->insert(MBBIter, overflowMBB);
13472 MF->insert(MBBIter, endMBB);
13473
13474 // Transfer the remainder of MBB and its successor edges to endMBB.
13475 endMBB->splice(endMBB->begin(), thisMBB,
13476 llvm::next(MachineBasicBlock::iterator(MI)),
13477 thisMBB->end());
13478 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
13479
13480 // Make offsetMBB and overflowMBB successors of thisMBB
13481 thisMBB->addSuccessor(offsetMBB);
13482 thisMBB->addSuccessor(overflowMBB);
13483
13484 // endMBB is a successor of both offsetMBB and overflowMBB
13485 offsetMBB->addSuccessor(endMBB);
13486 overflowMBB->addSuccessor(endMBB);
13487
13488 // Load the offset value into a register
13489 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
13490 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
13491 .addOperand(Base)
13492 .addOperand(Scale)
13493 .addOperand(Index)
13494 .addDisp(Disp, UseFPOffset ? 4 : 0)
13495 .addOperand(Segment)
13496 .setMemRefs(MMOBegin, MMOEnd);
13497
13498 // Check if there is enough room left to pull this argument.
13499 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
13500 .addReg(OffsetReg)
13501 .addImm(MaxOffset + 8 - ArgSizeA8);
13502
13503 // Branch to "overflowMBB" if offset >= max
13504 // Fall through to "offsetMBB" otherwise
13505 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
13506 .addMBB(overflowMBB);
13507 }
13508
13509 // In offsetMBB, emit code to use the reg_save_area.
13510 if (offsetMBB) {
13511 assert(OffsetReg != 0);
13512
13513 // Read the reg_save_area address.
13514 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
13515 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
13516 .addOperand(Base)
13517 .addOperand(Scale)
13518 .addOperand(Index)
13519 .addDisp(Disp, 16)
13520 .addOperand(Segment)
13521 .setMemRefs(MMOBegin, MMOEnd);
13522
13523 // Zero-extend the offset
13524 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
13525 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
13526 .addImm(0)
13527 .addReg(OffsetReg)
13528 .addImm(X86::sub_32bit);
13529
13530 // Add the offset to the reg_save_area to get the final address.
13531 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
13532 .addReg(OffsetReg64)
13533 .addReg(RegSaveReg);
13534
13535 // Compute the offset for the next argument
13536 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
13537 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
13538 .addReg(OffsetReg)
13539 .addImm(UseFPOffset ? 16 : 8);
13540
13541 // Store it back into the va_list.
13542 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
13543 .addOperand(Base)
13544 .addOperand(Scale)
13545 .addOperand(Index)
13546 .addDisp(Disp, UseFPOffset ? 4 : 0)
13547 .addOperand(Segment)
13548 .addReg(NextOffsetReg)
13549 .setMemRefs(MMOBegin, MMOEnd);
13550
13551 // Jump to endMBB
13552 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
13553 .addMBB(endMBB);
13554 }
13555
13556 //
13557 // Emit code to use overflow area
13558 //
13559
13560 // Load the overflow_area address into a register.
13561 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
13562 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
13563 .addOperand(Base)
13564 .addOperand(Scale)
13565 .addOperand(Index)
13566 .addDisp(Disp, 8)
13567 .addOperand(Segment)
13568 .setMemRefs(MMOBegin, MMOEnd);
13569
13570 // If we need to align it, do so. Otherwise, just copy the address
13571 // to OverflowDestReg.
13572 if (NeedsAlign) {
13573 // Align the overflow address
13574 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
13575 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
13576
13577 // aligned_addr = (addr + (align-1)) & ~(align-1)
13578 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
13579 .addReg(OverflowAddrReg)
13580 .addImm(Align-1);
13581
13582 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
13583 .addReg(TmpReg)
13584 .addImm(~(uint64_t)(Align-1));
13585 } else {
13586 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
13587 .addReg(OverflowAddrReg);
13588 }
13589
13590 // Compute the next overflow address after this argument.
13591 // (the overflow address should be kept 8-byte aligned)
13592 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
13593 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
13594 .addReg(OverflowDestReg)
13595 .addImm(ArgSizeA8);
13596
13597 // Store the new overflow address.
13598 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
13599 .addOperand(Base)
13600 .addOperand(Scale)
13601 .addOperand(Index)
13602 .addDisp(Disp, 8)
13603 .addOperand(Segment)
13604 .addReg(NextAddrReg)
13605 .setMemRefs(MMOBegin, MMOEnd);
13606
13607 // If we branched, emit the PHI to the front of endMBB.
13608 if (offsetMBB) {
13609 BuildMI(*endMBB, endMBB->begin(), DL,
13610 TII->get(X86::PHI), DestReg)
13611 .addReg(OffsetDestReg).addMBB(offsetMBB)
13612 .addReg(OverflowDestReg).addMBB(overflowMBB);
13613 }
13614
13615 // Erase the pseudo instruction
13616 MI->eraseFromParent();
13617
13618 return endMBB;
13619}
13620
13621MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000013622X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
13623 MachineInstr *MI,
13624 MachineBasicBlock *MBB) const {
13625 // Emit code to save XMM registers to the stack. The ABI says that the
13626 // number of registers to save is given in %al, so it's theoretically
13627 // possible to do an indirect jump trick to avoid saving all of them,
13628 // however this code takes a simpler approach and just executes all
13629 // of the stores if %al is non-zero. It's less code, and it's probably
13630 // easier on the hardware branch predictor, and stores aren't all that
13631 // expensive anyway.
13632
13633 // Create the new basic blocks. One block contains all the XMM stores,
13634 // and one block is the final destination regardless of whether any
13635 // stores were performed.
13636 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
13637 MachineFunction *F = MBB->getParent();
13638 MachineFunction::iterator MBBIter = MBB;
13639 ++MBBIter;
13640 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
13641 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
13642 F->insert(MBBIter, XMMSaveMBB);
13643 F->insert(MBBIter, EndMBB);
13644
Dan Gohman14152b42010-07-06 20:24:04 +000013645 // Transfer the remainder of MBB and its successor edges to EndMBB.
13646 EndMBB->splice(EndMBB->begin(), MBB,
13647 llvm::next(MachineBasicBlock::iterator(MI)),
13648 MBB->end());
13649 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
13650
Dan Gohmand6708ea2009-08-15 01:38:56 +000013651 // The original block will now fall through to the XMM save block.
13652 MBB->addSuccessor(XMMSaveMBB);
13653 // The XMMSaveMBB will fall through to the end block.
13654 XMMSaveMBB->addSuccessor(EndMBB);
13655
13656 // Now add the instructions.
13657 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13658 DebugLoc DL = MI->getDebugLoc();
13659
13660 unsigned CountReg = MI->getOperand(0).getReg();
13661 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
13662 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
13663
13664 if (!Subtarget->isTargetWin64()) {
13665 // If %al is 0, branch around the XMM save block.
13666 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000013667 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000013668 MBB->addSuccessor(EndMBB);
13669 }
13670
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013671 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000013672 // In the XMM save block, save all the XMM argument registers.
13673 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
13674 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000013675 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000013676 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000013677 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000013678 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000013679 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000013680 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000013681 .addFrameIndex(RegSaveFrameIndex)
13682 .addImm(/*Scale=*/1)
13683 .addReg(/*IndexReg=*/0)
13684 .addImm(/*Disp=*/Offset)
13685 .addReg(/*Segment=*/0)
13686 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000013687 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000013688 }
13689
Dan Gohman14152b42010-07-06 20:24:04 +000013690 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000013691
13692 return EndMBB;
13693}
Mon P Wang63307c32008-05-05 19:05:59 +000013694
Lang Hames6e3f7e42012-02-03 01:13:49 +000013695// The EFLAGS operand of SelectItr might be missing a kill marker
13696// because there were multiple uses of EFLAGS, and ISel didn't know
13697// which to mark. Figure out whether SelectItr should have had a
13698// kill marker, and set it if it should. Returns the correct kill
13699// marker value.
13700static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
13701 MachineBasicBlock* BB,
13702 const TargetRegisterInfo* TRI) {
13703 // Scan forward through BB for a use/def of EFLAGS.
13704 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
13705 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000013706 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000013707 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000013708 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000013709 if (mi.definesRegister(X86::EFLAGS))
13710 break; // Should have kill-flag - update below.
13711 }
13712
13713 // If we hit the end of the block, check whether EFLAGS is live into a
13714 // successor.
13715 if (miI == BB->end()) {
13716 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
13717 sEnd = BB->succ_end();
13718 sItr != sEnd; ++sItr) {
13719 MachineBasicBlock* succ = *sItr;
13720 if (succ->isLiveIn(X86::EFLAGS))
13721 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000013722 }
13723 }
13724
Lang Hames6e3f7e42012-02-03 01:13:49 +000013725 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
13726 // out. SelectMI should have a kill flag on EFLAGS.
13727 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000013728 return true;
13729}
13730
Evan Cheng60c07e12006-07-05 22:17:51 +000013731MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000013732X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000013733 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000013734 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13735 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000013736
Chris Lattner52600972009-09-02 05:57:00 +000013737 // To "insert" a SELECT_CC instruction, we actually have to insert the
13738 // diamond control-flow pattern. The incoming instruction knows the
13739 // destination vreg to set, the condition code register to branch on, the
13740 // true/false values to select between, and a branch opcode to use.
13741 const BasicBlock *LLVM_BB = BB->getBasicBlock();
13742 MachineFunction::iterator It = BB;
13743 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000013744
Chris Lattner52600972009-09-02 05:57:00 +000013745 // thisMBB:
13746 // ...
13747 // TrueVal = ...
13748 // cmpTY ccX, r1, r2
13749 // bCC copy1MBB
13750 // fallthrough --> copy0MBB
13751 MachineBasicBlock *thisMBB = BB;
13752 MachineFunction *F = BB->getParent();
13753 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
13754 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000013755 F->insert(It, copy0MBB);
13756 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000013757
Bill Wendling730c07e2010-06-25 20:48:10 +000013758 // If the EFLAGS register isn't dead in the terminator, then claim that it's
13759 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000013760 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
13761 if (!MI->killsRegister(X86::EFLAGS) &&
13762 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
13763 copy0MBB->addLiveIn(X86::EFLAGS);
13764 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000013765 }
13766
Dan Gohman14152b42010-07-06 20:24:04 +000013767 // Transfer the remainder of BB and its successor edges to sinkMBB.
13768 sinkMBB->splice(sinkMBB->begin(), BB,
13769 llvm::next(MachineBasicBlock::iterator(MI)),
13770 BB->end());
13771 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
13772
13773 // Add the true and fallthrough blocks as its successors.
13774 BB->addSuccessor(copy0MBB);
13775 BB->addSuccessor(sinkMBB);
13776
13777 // Create the conditional branch instruction.
13778 unsigned Opc =
13779 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
13780 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
13781
Chris Lattner52600972009-09-02 05:57:00 +000013782 // copy0MBB:
13783 // %FalseValue = ...
13784 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000013785 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000013786
Chris Lattner52600972009-09-02 05:57:00 +000013787 // sinkMBB:
13788 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
13789 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000013790 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13791 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000013792 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
13793 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
13794
Dan Gohman14152b42010-07-06 20:24:04 +000013795 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000013796 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000013797}
13798
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013799MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013800X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
13801 bool Is64Bit) const {
13802 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13803 DebugLoc DL = MI->getDebugLoc();
13804 MachineFunction *MF = BB->getParent();
13805 const BasicBlock *LLVM_BB = BB->getBasicBlock();
13806
Nick Lewycky8a8d4792011-12-02 22:16:29 +000013807 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013808
13809 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
13810 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
13811
13812 // BB:
13813 // ... [Till the alloca]
13814 // If stacklet is not large enough, jump to mallocMBB
13815 //
13816 // bumpMBB:
13817 // Allocate by subtracting from RSP
13818 // Jump to continueMBB
13819 //
13820 // mallocMBB:
13821 // Allocate by call to runtime
13822 //
13823 // continueMBB:
13824 // ...
13825 // [rest of original BB]
13826 //
13827
13828 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13829 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13830 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13831
13832 MachineRegisterInfo &MRI = MF->getRegInfo();
13833 const TargetRegisterClass *AddrRegClass =
13834 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
13835
13836 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
13837 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
13838 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000013839 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013840 sizeVReg = MI->getOperand(1).getReg(),
13841 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
13842
13843 MachineFunction::iterator MBBIter = BB;
13844 ++MBBIter;
13845
13846 MF->insert(MBBIter, bumpMBB);
13847 MF->insert(MBBIter, mallocMBB);
13848 MF->insert(MBBIter, continueMBB);
13849
13850 continueMBB->splice(continueMBB->begin(), BB, llvm::next
13851 (MachineBasicBlock::iterator(MI)), BB->end());
13852 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
13853
13854 // Add code to the main basic block to check if the stack limit has been hit,
13855 // and if so, jump to mallocMBB otherwise to bumpMBB.
13856 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000013857 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013858 .addReg(tmpSPVReg).addReg(sizeVReg);
13859 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000013860 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000013861 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013862 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
13863
13864 // bumpMBB simply decreases the stack pointer, since we know the current
13865 // stacklet has enough space.
13866 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000013867 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013868 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000013869 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013870 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
13871
13872 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000013873 const uint32_t *RegMask =
13874 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013875 if (Is64Bit) {
13876 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
13877 .addReg(sizeVReg);
13878 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000013879 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000013880 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000013881 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000013882 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013883 } else {
13884 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
13885 .addImm(12);
13886 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
13887 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000013888 .addExternalSymbol("__morestack_allocate_stack_space")
13889 .addRegMask(RegMask)
13890 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000013891 }
13892
13893 if (!Is64Bit)
13894 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
13895 .addImm(16);
13896
13897 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
13898 .addReg(Is64Bit ? X86::RAX : X86::EAX);
13899 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
13900
13901 // Set up the CFG correctly.
13902 BB->addSuccessor(bumpMBB);
13903 BB->addSuccessor(mallocMBB);
13904 mallocMBB->addSuccessor(continueMBB);
13905 bumpMBB->addSuccessor(continueMBB);
13906
13907 // Take care of the PHI nodes.
13908 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
13909 MI->getOperand(0).getReg())
13910 .addReg(mallocPtrVReg).addMBB(mallocMBB)
13911 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
13912
13913 // Delete the original pseudo instruction.
13914 MI->eraseFromParent();
13915
13916 // And we're done.
13917 return continueMBB;
13918}
13919
13920MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013921X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000013922 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013923 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13924 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013925
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000013926 assert(!Subtarget->isTargetEnvMacho());
13927
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013928 // The lowering is pretty easy: we're just emitting the call to _alloca. The
13929 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013930
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000013931 if (Subtarget->isTargetWin64()) {
13932 if (Subtarget->isTargetCygMing()) {
13933 // ___chkstk(Mingw64):
13934 // Clobbers R10, R11, RAX and EFLAGS.
13935 // Updates RSP.
13936 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
13937 .addExternalSymbol("___chkstk")
13938 .addReg(X86::RAX, RegState::Implicit)
13939 .addReg(X86::RSP, RegState::Implicit)
13940 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
13941 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
13942 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13943 } else {
13944 // __chkstk(MSVCRT): does not update stack pointer.
13945 // Clobbers R10, R11 and EFLAGS.
13946 // FIXME: RAX(allocated size) might be reused and not killed.
13947 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
13948 .addExternalSymbol("__chkstk")
13949 .addReg(X86::RAX, RegState::Implicit)
13950 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13951 // RAX has the offset to subtracted from RSP.
13952 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
13953 .addReg(X86::RSP)
13954 .addReg(X86::RAX);
13955 }
13956 } else {
13957 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013958 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
13959
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000013960 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
13961 .addExternalSymbol(StackProbeSymbol)
13962 .addReg(X86::EAX, RegState::Implicit)
13963 .addReg(X86::ESP, RegState::Implicit)
13964 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
13965 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
13966 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13967 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013968
Dan Gohman14152b42010-07-06 20:24:04 +000013969 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000013970 return BB;
13971}
Chris Lattner52600972009-09-02 05:57:00 +000013972
13973MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000013974X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
13975 MachineBasicBlock *BB) const {
13976 // This is pretty easy. We're taking the value that we received from
13977 // our load from the relocation, sticking it in either RDI (x86-64)
13978 // or EAX and doing an indirect call. The return value will then
13979 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000013980 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000013981 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000013982 DebugLoc DL = MI->getDebugLoc();
13983 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000013984
13985 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000013986 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013987
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000013988 // Get a register mask for the lowered call.
13989 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
13990 // proper register mask.
13991 const uint32_t *RegMask =
13992 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000013993 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000013994 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
13995 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000013996 .addReg(X86::RIP)
13997 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000013998 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000013999 MI->getOperand(3).getTargetFlags())
14000 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000014001 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000014002 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014003 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000014004 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000014005 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
14006 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000014007 .addReg(0)
14008 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000014009 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000014010 MI->getOperand(3).getTargetFlags())
14011 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000014012 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000014013 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014014 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014015 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000014016 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
14017 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000014018 .addReg(TII->getGlobalBaseReg(F))
14019 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000014020 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000014021 MI->getOperand(3).getTargetFlags())
14022 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000014023 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000014024 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000014025 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014026 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000014027
Dan Gohman14152b42010-07-06 20:24:04 +000014028 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000014029 return BB;
14030}
14031
14032MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000014033X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
14034 MachineBasicBlock *MBB) const {
14035 DebugLoc DL = MI->getDebugLoc();
14036 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14037
14038 MachineFunction *MF = MBB->getParent();
14039 MachineRegisterInfo &MRI = MF->getRegInfo();
14040
14041 const BasicBlock *BB = MBB->getBasicBlock();
14042 MachineFunction::iterator I = MBB;
14043 ++I;
14044
14045 // Memory Reference
14046 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14047 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14048
14049 unsigned DstReg;
14050 unsigned MemOpndSlot = 0;
14051
14052 unsigned CurOp = 0;
14053
14054 DstReg = MI->getOperand(CurOp++).getReg();
14055 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14056 assert(RC->hasType(MVT::i32) && "Invalid destination!");
14057 unsigned mainDstReg = MRI.createVirtualRegister(RC);
14058 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
14059
14060 MemOpndSlot = CurOp;
14061
14062 MVT PVT = getPointerTy();
14063 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
14064 "Invalid Pointer Size!");
14065
14066 // For v = setjmp(buf), we generate
14067 //
14068 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000014069 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000014070 // SjLjSetup restoreMBB
14071 //
14072 // mainMBB:
14073 // v_main = 0
14074 //
14075 // sinkMBB:
14076 // v = phi(main, restore)
14077 //
14078 // restoreMBB:
14079 // v_restore = 1
14080
14081 MachineBasicBlock *thisMBB = MBB;
14082 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14083 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14084 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
14085 MF->insert(I, mainMBB);
14086 MF->insert(I, sinkMBB);
14087 MF->push_back(restoreMBB);
14088
14089 MachineInstrBuilder MIB;
14090
14091 // Transfer the remainder of BB and its successor edges to sinkMBB.
14092 sinkMBB->splice(sinkMBB->begin(), MBB,
14093 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14094 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14095
14096 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000014097 unsigned PtrStoreOpc = 0;
14098 unsigned LabelReg = 0;
14099 const int64_t LabelOffset = 1 * PVT.getStoreSize();
14100 Reloc::Model RM = getTargetMachine().getRelocationModel();
14101 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
14102 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014103
Michael Liao281ae5a2012-10-17 02:22:27 +000014104 // Prepare IP either in reg or imm.
14105 if (!UseImmLabel) {
14106 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
14107 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
14108 LabelReg = MRI.createVirtualRegister(PtrRC);
14109 if (Subtarget->is64Bit()) {
14110 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
14111 .addReg(X86::RIP)
14112 .addImm(0)
14113 .addReg(0)
14114 .addMBB(restoreMBB)
14115 .addReg(0);
14116 } else {
14117 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
14118 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
14119 .addReg(XII->getGlobalBaseReg(MF))
14120 .addImm(0)
14121 .addReg(0)
14122 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
14123 .addReg(0);
14124 }
14125 } else
14126 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000014127 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000014128 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000014129 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14130 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000014131 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014132 else
14133 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
14134 }
Michael Liao281ae5a2012-10-17 02:22:27 +000014135 if (!UseImmLabel)
14136 MIB.addReg(LabelReg);
14137 else
14138 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014139 MIB.setMemRefs(MMOBegin, MMOEnd);
14140 // Setup
14141 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
14142 .addMBB(restoreMBB);
14143 MIB.addRegMask(RegInfo->getNoPreservedMask());
14144 thisMBB->addSuccessor(mainMBB);
14145 thisMBB->addSuccessor(restoreMBB);
14146
14147 // mainMBB:
14148 // EAX = 0
14149 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
14150 mainMBB->addSuccessor(sinkMBB);
14151
14152 // sinkMBB:
14153 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14154 TII->get(X86::PHI), DstReg)
14155 .addReg(mainDstReg).addMBB(mainMBB)
14156 .addReg(restoreDstReg).addMBB(restoreMBB);
14157
14158 // restoreMBB:
14159 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
14160 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
14161 restoreMBB->addSuccessor(sinkMBB);
14162
14163 MI->eraseFromParent();
14164 return sinkMBB;
14165}
14166
14167MachineBasicBlock *
14168X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
14169 MachineBasicBlock *MBB) const {
14170 DebugLoc DL = MI->getDebugLoc();
14171 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14172
14173 MachineFunction *MF = MBB->getParent();
14174 MachineRegisterInfo &MRI = MF->getRegInfo();
14175
14176 // Memory Reference
14177 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14178 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14179
14180 MVT PVT = getPointerTy();
14181 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
14182 "Invalid Pointer Size!");
14183
14184 const TargetRegisterClass *RC =
14185 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
14186 unsigned Tmp = MRI.createVirtualRegister(RC);
14187 // Since FP is only updated here but NOT referenced, it's treated as GPR.
14188 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
14189 unsigned SP = RegInfo->getStackRegister();
14190
14191 MachineInstrBuilder MIB;
14192
Michael Liao281ae5a2012-10-17 02:22:27 +000014193 const int64_t LabelOffset = 1 * PVT.getStoreSize();
14194 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000014195
14196 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
14197 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
14198
14199 // Reload FP
14200 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
14201 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
14202 MIB.addOperand(MI->getOperand(i));
14203 MIB.setMemRefs(MMOBegin, MMOEnd);
14204 // Reload IP
14205 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
14206 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14207 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000014208 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014209 else
14210 MIB.addOperand(MI->getOperand(i));
14211 }
14212 MIB.setMemRefs(MMOBegin, MMOEnd);
14213 // Reload SP
14214 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
14215 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14216 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000014217 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014218 else
14219 MIB.addOperand(MI->getOperand(i));
14220 }
14221 MIB.setMemRefs(MMOBegin, MMOEnd);
14222 // Jump
14223 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
14224
14225 MI->eraseFromParent();
14226 return MBB;
14227}
14228
14229MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000014230X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000014231 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000014232 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000014233 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000014234 case X86::TAILJMPd64:
14235 case X86::TAILJMPr64:
14236 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000014237 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000014238 case X86::TCRETURNdi64:
14239 case X86::TCRETURNri64:
14240 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000014241 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000014242 case X86::WIN_ALLOCA:
14243 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000014244 case X86::SEG_ALLOCA_32:
14245 return EmitLoweredSegAlloca(MI, BB, false);
14246 case X86::SEG_ALLOCA_64:
14247 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000014248 case X86::TLSCall_32:
14249 case X86::TLSCall_64:
14250 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000014251 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000014252 case X86::CMOV_FR32:
14253 case X86::CMOV_FR64:
14254 case X86::CMOV_V4F32:
14255 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000014256 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000014257 case X86::CMOV_V8F32:
14258 case X86::CMOV_V4F64:
14259 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000014260 case X86::CMOV_GR16:
14261 case X86::CMOV_GR32:
14262 case X86::CMOV_RFP32:
14263 case X86::CMOV_RFP64:
14264 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000014265 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000014266
Dale Johannesen849f2142007-07-03 00:53:03 +000014267 case X86::FP32_TO_INT16_IN_MEM:
14268 case X86::FP32_TO_INT32_IN_MEM:
14269 case X86::FP32_TO_INT64_IN_MEM:
14270 case X86::FP64_TO_INT16_IN_MEM:
14271 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000014272 case X86::FP64_TO_INT64_IN_MEM:
14273 case X86::FP80_TO_INT16_IN_MEM:
14274 case X86::FP80_TO_INT32_IN_MEM:
14275 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000014276 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14277 DebugLoc DL = MI->getDebugLoc();
14278
Evan Cheng60c07e12006-07-05 22:17:51 +000014279 // Change the floating point control register to use "round towards zero"
14280 // mode when truncating to an integer value.
14281 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000014282 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000014283 addFrameReference(BuildMI(*BB, MI, DL,
14284 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000014285
14286 // Load the old value of the high byte of the control word...
14287 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000014288 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000014289 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000014290 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000014291
14292 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000014293 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000014294 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000014295
14296 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000014297 addFrameReference(BuildMI(*BB, MI, DL,
14298 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000014299
14300 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000014301 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000014302 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000014303
14304 // Get the X86 opcode to use.
14305 unsigned Opc;
14306 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000014307 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000014308 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
14309 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
14310 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
14311 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
14312 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
14313 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000014314 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
14315 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
14316 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000014317 }
14318
14319 X86AddressMode AM;
14320 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000014321 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000014322 AM.BaseType = X86AddressMode::RegBase;
14323 AM.Base.Reg = Op.getReg();
14324 } else {
14325 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000014326 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000014327 }
14328 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000014329 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000014330 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000014331 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000014332 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000014333 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000014334 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000014335 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000014336 AM.GV = Op.getGlobal();
14337 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000014338 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000014339 }
Dan Gohman14152b42010-07-06 20:24:04 +000014340 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000014341 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000014342
14343 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000014344 addFrameReference(BuildMI(*BB, MI, DL,
14345 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000014346
Dan Gohman14152b42010-07-06 20:24:04 +000014347 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000014348 return BB;
14349 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014350 // String/text processing lowering.
14351 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014352 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000014353 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014354 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000014355 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014356 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000014357 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000014358 case X86::VPCMPESTRM128MEM:
14359 assert(Subtarget->hasSSE42() &&
14360 "Target must have SSE4.2 or AVX features enabled");
14361 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000014362
14363 // String/text processing lowering.
14364 case X86::PCMPISTRIREG:
14365 case X86::VPCMPISTRIREG:
14366 case X86::PCMPISTRIMEM:
14367 case X86::VPCMPISTRIMEM:
14368 case X86::PCMPESTRIREG:
14369 case X86::VPCMPESTRIREG:
14370 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000014371 case X86::VPCMPESTRIMEM:
14372 assert(Subtarget->hasSSE42() &&
14373 "Target must have SSE4.2 or AVX features enabled");
14374 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000014375
Craig Topper8aae8dd2012-11-10 08:57:41 +000014376 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000014377 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000014378 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000014379
Michael Liaobe02a902012-11-08 07:28:54 +000014380 // xbegin
14381 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000014382 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000014383
Craig Topper8aae8dd2012-11-10 08:57:41 +000014384 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000014385 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000014386 case X86::ATOMAND16:
14387 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000014388 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000014389 // Fall through
14390 case X86::ATOMOR8:
14391 case X86::ATOMOR16:
14392 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000014393 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000014394 // Fall through
14395 case X86::ATOMXOR16:
14396 case X86::ATOMXOR8:
14397 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000014398 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000014399 // Fall through
14400 case X86::ATOMNAND8:
14401 case X86::ATOMNAND16:
14402 case X86::ATOMNAND32:
14403 case X86::ATOMNAND64:
14404 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000014405 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014406 case X86::ATOMMAX16:
14407 case X86::ATOMMAX32:
14408 case X86::ATOMMAX64:
14409 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000014410 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014411 case X86::ATOMMIN16:
14412 case X86::ATOMMIN32:
14413 case X86::ATOMMIN64:
14414 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000014415 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014416 case X86::ATOMUMAX16:
14417 case X86::ATOMUMAX32:
14418 case X86::ATOMUMAX64:
14419 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000014420 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014421 case X86::ATOMUMIN16:
14422 case X86::ATOMUMIN32:
14423 case X86::ATOMUMIN64:
14424 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014425
14426 // This group does 64-bit operations on a 32-bit host.
14427 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014428 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014429 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014430 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014431 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014432 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000014433 case X86::ATOMMAX6432:
14434 case X86::ATOMMIN6432:
14435 case X86::ATOMUMAX6432:
14436 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000014437 case X86::ATOMSWAP6432:
14438 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000014439
Dan Gohmand6708ea2009-08-15 01:38:56 +000014440 case X86::VASTART_SAVE_XMM_REGS:
14441 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000014442
14443 case X86::VAARG_64:
14444 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000014445
14446 case X86::EH_SjLj_SetJmp32:
14447 case X86::EH_SjLj_SetJmp64:
14448 return emitEHSjLjSetJmp(MI, BB);
14449
14450 case X86::EH_SjLj_LongJmp32:
14451 case X86::EH_SjLj_LongJmp64:
14452 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000014453 }
14454}
14455
14456//===----------------------------------------------------------------------===//
14457// X86 Optimization Hooks
14458//===----------------------------------------------------------------------===//
14459
Dan Gohman475871a2008-07-27 21:46:04 +000014460void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000014461 APInt &KnownZero,
14462 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000014463 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000014464 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000014465 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000014466 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000014467 assert((Opc >= ISD::BUILTIN_OP_END ||
14468 Opc == ISD::INTRINSIC_WO_CHAIN ||
14469 Opc == ISD::INTRINSIC_W_CHAIN ||
14470 Opc == ISD::INTRINSIC_VOID) &&
14471 "Should use MaskedValueIsZero if you don't know whether Op"
14472 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000014473
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000014474 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000014475 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000014476 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000014477 case X86ISD::ADD:
14478 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000014479 case X86ISD::ADC:
14480 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000014481 case X86ISD::SMUL:
14482 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000014483 case X86ISD::INC:
14484 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000014485 case X86ISD::OR:
14486 case X86ISD::XOR:
14487 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000014488 // These nodes' second result is a boolean.
14489 if (Op.getResNo() == 0)
14490 break;
14491 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014492 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000014493 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000014494 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000014495 case ISD::INTRINSIC_WO_CHAIN: {
14496 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
14497 unsigned NumLoBits = 0;
14498 switch (IntId) {
14499 default: break;
14500 case Intrinsic::x86_sse_movmsk_ps:
14501 case Intrinsic::x86_avx_movmsk_ps_256:
14502 case Intrinsic::x86_sse2_movmsk_pd:
14503 case Intrinsic::x86_avx_movmsk_pd_256:
14504 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000014505 case Intrinsic::x86_sse2_pmovmskb_128:
14506 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000014507 // High bits of movmskp{s|d}, pmovmskb are known zero.
14508 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000014509 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000014510 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
14511 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
14512 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
14513 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
14514 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
14515 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000014516 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000014517 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000014518 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000014519 break;
14520 }
14521 }
14522 break;
14523 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000014524 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000014525}
Chris Lattner259e97c2006-01-31 19:43:35 +000014526
Owen Andersonbc146b02010-09-21 20:42:50 +000014527unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
14528 unsigned Depth) const {
14529 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
14530 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
14531 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000014532
Owen Andersonbc146b02010-09-21 20:42:50 +000014533 // Fallback case.
14534 return 1;
14535}
14536
Evan Cheng206ee9d2006-07-07 08:33:52 +000014537/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000014538/// node is a GlobalAddress + offset.
14539bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000014540 const GlobalValue* &GA,
14541 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000014542 if (N->getOpcode() == X86ISD::Wrapper) {
14543 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000014544 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000014545 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000014546 return true;
14547 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000014548 }
Evan Chengad4196b2008-05-12 19:56:52 +000014549 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000014550}
14551
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014552/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
14553/// same as extracting the high 128-bit part of 256-bit vector and then
14554/// inserting the result into the low part of a new 256-bit vector
14555static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
14556 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000014557 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014558
14559 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000014560 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014561 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
14562 SVOp->getMaskElt(j) >= 0)
14563 return false;
14564
14565 return true;
14566}
14567
14568/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
14569/// same as extracting the low 128-bit part of 256-bit vector and then
14570/// inserting the result into the high part of a new 256-bit vector
14571static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
14572 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000014573 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014574
14575 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000014576 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014577 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
14578 SVOp->getMaskElt(j) >= 0)
14579 return false;
14580
14581 return true;
14582}
14583
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014584/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
14585static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000014586 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000014587 const X86Subtarget* Subtarget) {
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014588 DebugLoc dl = N->getDebugLoc();
14589 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
14590 SDValue V1 = SVOp->getOperand(0);
14591 SDValue V2 = SVOp->getOperand(1);
14592 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000014593 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014594
14595 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
14596 V2.getOpcode() == ISD::CONCAT_VECTORS) {
14597 //
14598 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000014599 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014600 // V UNDEF BUILD_VECTOR UNDEF
14601 // \ / \ /
14602 // CONCAT_VECTOR CONCAT_VECTOR
14603 // \ /
14604 // \ /
14605 // RESULT: V + zero extended
14606 //
14607 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
14608 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
14609 V1.getOperand(1).getOpcode() != ISD::UNDEF)
14610 return SDValue();
14611
14612 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
14613 return SDValue();
14614
14615 // To match the shuffle mask, the first half of the mask should
14616 // be exactly the first vector, and all the rest a splat with the
14617 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000014618 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014619 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
14620 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
14621 return SDValue();
14622
Chad Rosier3d1161e2012-01-03 21:05:52 +000014623 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
14624 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000014625 if (Ld->hasNUsesOfValue(1, 0)) {
14626 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
14627 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
14628 SDValue ResNode =
14629 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2,
14630 Ld->getMemoryVT(),
14631 Ld->getPointerInfo(),
14632 Ld->getAlignment(),
14633 false/*isVolatile*/, true/*ReadMem*/,
14634 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000014635
14636 // Make sure the newly-created LOAD is in the same position as Ld in
14637 // terms of dependency. We create a TokenFactor for Ld and ResNode,
14638 // and update uses of Ld's output chain to use the TokenFactor.
14639 if (Ld->hasAnyUseOfValue(1)) {
14640 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
14641 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
14642 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
14643 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
14644 SDValue(ResNode.getNode(), 1));
14645 }
14646
Chad Rosier42726832012-05-07 18:47:44 +000014647 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
14648 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000014649 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000014650
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014651 // Emit a zeroed vector and insert the desired subvector on its
14652 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000014653 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000014654 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014655 return DCI.CombineTo(N, InsV);
14656 }
14657
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014658 //===--------------------------------------------------------------------===//
14659 // Combine some shuffles into subvector extracts and inserts:
14660 //
14661
14662 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
14663 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000014664 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
14665 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014666 return DCI.CombineTo(N, InsV);
14667 }
14668
14669 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
14670 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000014671 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
14672 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000014673 return DCI.CombineTo(N, InsV);
14674 }
14675
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014676 return SDValue();
14677}
14678
14679/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000014680static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000014681 TargetLowering::DAGCombinerInfo &DCI,
14682 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000014683 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000014684 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000014685
Mon P Wanga0fd0d52010-12-19 23:55:53 +000014686 // Don't create instructions with illegal types after legalize types has run.
14687 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14688 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
14689 return SDValue();
14690
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000014691 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000014692 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000014693 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000014694 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014695
14696 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000014697 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000014698 return SDValue();
14699
14700 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
14701 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
14702 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000014703 SmallVector<SDValue, 16> Elts;
14704 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000014705 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000014706
Nate Begemanfdea31a2010-03-24 20:49:50 +000014707 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000014708}
Evan Chengd880b972008-05-09 21:53:03 +000014709
Nadav Roteme12bf182013-01-04 17:35:21 +000014710/// PerformTruncateCombine - Converts truncate operation to
14711/// a sequence of vector shuffle operations.
14712/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000014713static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
14714 TargetLowering::DAGCombinerInfo &DCI,
14715 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000014716 return SDValue();
14717}
14718
Craig Topper89f4e662012-03-20 07:17:59 +000014719/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
14720/// specific shuffle of a load can be folded into a single element load.
14721/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
14722/// shuffles have been customed lowered so we need to handle those here.
14723static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
14724 TargetLowering::DAGCombinerInfo &DCI) {
14725 if (DCI.isBeforeLegalizeOps())
14726 return SDValue();
14727
14728 SDValue InVec = N->getOperand(0);
14729 SDValue EltNo = N->getOperand(1);
14730
14731 if (!isa<ConstantSDNode>(EltNo))
14732 return SDValue();
14733
14734 EVT VT = InVec.getValueType();
14735
14736 bool HasShuffleIntoBitcast = false;
14737 if (InVec.getOpcode() == ISD::BITCAST) {
14738 // Don't duplicate a load with other uses.
14739 if (!InVec.hasOneUse())
14740 return SDValue();
14741 EVT BCVT = InVec.getOperand(0).getValueType();
14742 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
14743 return SDValue();
14744 InVec = InVec.getOperand(0);
14745 HasShuffleIntoBitcast = true;
14746 }
14747
14748 if (!isTargetShuffle(InVec.getOpcode()))
14749 return SDValue();
14750
14751 // Don't duplicate a load with other uses.
14752 if (!InVec.hasOneUse())
14753 return SDValue();
14754
14755 SmallVector<int, 16> ShuffleMask;
14756 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000014757 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
14758 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000014759 return SDValue();
14760
14761 // Select the input vector, guarding against out of range extract vector.
14762 unsigned NumElems = VT.getVectorNumElements();
14763 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
14764 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
14765 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
14766 : InVec.getOperand(1);
14767
14768 // If inputs to shuffle are the same for both ops, then allow 2 uses
14769 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
14770
14771 if (LdNode.getOpcode() == ISD::BITCAST) {
14772 // Don't duplicate a load with other uses.
14773 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
14774 return SDValue();
14775
14776 AllowedUses = 1; // only allow 1 load use if we have a bitcast
14777 LdNode = LdNode.getOperand(0);
14778 }
14779
14780 if (!ISD::isNormalLoad(LdNode.getNode()))
14781 return SDValue();
14782
14783 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
14784
14785 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
14786 return SDValue();
14787
14788 if (HasShuffleIntoBitcast) {
14789 // If there's a bitcast before the shuffle, check if the load type and
14790 // alignment is valid.
14791 unsigned Align = LN0->getAlignment();
14792 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000014793 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000014794 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
14795
14796 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
14797 return SDValue();
14798 }
14799
14800 // All checks match so transform back to vector_shuffle so that DAG combiner
14801 // can finish the job
14802 DebugLoc dl = N->getDebugLoc();
14803
14804 // Create shuffle node taking into account the case that its a unary shuffle
14805 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
14806 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
14807 InVec.getOperand(0), Shuffle,
14808 &ShuffleMask[0]);
14809 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
14810 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
14811 EltNo);
14812}
14813
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000014814/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
14815/// generation and convert it from being a bunch of shuffles and extracts
14816/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014817static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000014818 TargetLowering::DAGCombinerInfo &DCI) {
14819 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
14820 if (NewOp.getNode())
14821 return NewOp;
14822
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014823 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000014824 // Detect whether we are trying to convert from mmx to i32 and the bitcast
14825 // from mmx to v2i32 has a single usage.
14826 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
14827 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
14828 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
14829 return DAG.getNode(X86ISD::MMX_MOVD2W, InputVector.getDebugLoc(),
14830 N->getValueType(0),
14831 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014832
14833 // Only operate on vectors of 4 elements, where the alternative shuffling
14834 // gets to be more expensive.
14835 if (InputVector.getValueType() != MVT::v4i32)
14836 return SDValue();
14837
14838 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
14839 // single use which is a sign-extend or zero-extend, and all elements are
14840 // used.
14841 SmallVector<SDNode *, 4> Uses;
14842 unsigned ExtractedElements = 0;
14843 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
14844 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
14845 if (UI.getUse().getResNo() != InputVector.getResNo())
14846 return SDValue();
14847
14848 SDNode *Extract = *UI;
14849 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
14850 return SDValue();
14851
14852 if (Extract->getValueType(0) != MVT::i32)
14853 return SDValue();
14854 if (!Extract->hasOneUse())
14855 return SDValue();
14856 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
14857 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
14858 return SDValue();
14859 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
14860 return SDValue();
14861
14862 // Record which element was extracted.
14863 ExtractedElements |=
14864 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
14865
14866 Uses.push_back(Extract);
14867 }
14868
14869 // If not all the elements were used, this may not be worthwhile.
14870 if (ExtractedElements != 15)
14871 return SDValue();
14872
14873 // Ok, we've now decided to do the transformation.
14874 DebugLoc dl = InputVector.getDebugLoc();
14875
14876 // Store the value to a temporary stack slot.
14877 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000014878 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
14879 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014880
14881 // Replace each use (extract) with a load of the appropriate element.
14882 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
14883 UE = Uses.end(); UI != UE; ++UI) {
14884 SDNode *Extract = *UI;
14885
Nadav Rotem86694292011-05-17 08:31:57 +000014886 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014887 SDValue Idx = Extract->getOperand(1);
14888 unsigned EltSize =
14889 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
14890 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000014891 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014892 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
14893
Nadav Rotem86694292011-05-17 08:31:57 +000014894 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000014895 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014896
14897 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000014898 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000014899 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000014900 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014901
14902 // Replace the exact with the load.
14903 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
14904 }
14905
14906 // The replacement was made in place; don't return anything.
14907 return SDValue();
14908}
14909
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000014910/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
14911static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
14912 SDValue RHS, SelectionDAG &DAG,
14913 const X86Subtarget *Subtarget) {
14914 if (!VT.isVector())
14915 return 0;
14916
14917 switch (VT.getSimpleVT().SimpleTy) {
14918 default: return 0;
14919 case MVT::v32i8:
14920 case MVT::v16i16:
14921 case MVT::v8i32:
14922 if (!Subtarget->hasAVX2())
14923 return 0;
14924 case MVT::v16i8:
14925 case MVT::v8i16:
14926 case MVT::v4i32:
14927 if (!Subtarget->hasSSE2())
14928 return 0;
14929 }
14930
14931 // SSE2 has only a small subset of the operations.
14932 bool hasUnsigned = Subtarget->hasSSE41() ||
14933 (Subtarget->hasSSE2() && VT == MVT::v16i8);
14934 bool hasSigned = Subtarget->hasSSE41() ||
14935 (Subtarget->hasSSE2() && VT == MVT::v8i16);
14936
14937 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
14938
14939 // Check for x CC y ? x : y.
14940 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
14941 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
14942 switch (CC) {
14943 default: break;
14944 case ISD::SETULT:
14945 case ISD::SETULE:
14946 return hasUnsigned ? X86ISD::UMIN : 0;
14947 case ISD::SETUGT:
14948 case ISD::SETUGE:
14949 return hasUnsigned ? X86ISD::UMAX : 0;
14950 case ISD::SETLT:
14951 case ISD::SETLE:
14952 return hasSigned ? X86ISD::SMIN : 0;
14953 case ISD::SETGT:
14954 case ISD::SETGE:
14955 return hasSigned ? X86ISD::SMAX : 0;
14956 }
14957 // Check for x CC y ? y : x -- a min/max with reversed arms.
14958 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
14959 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
14960 switch (CC) {
14961 default: break;
14962 case ISD::SETULT:
14963 case ISD::SETULE:
14964 return hasUnsigned ? X86ISD::UMAX : 0;
14965 case ISD::SETUGT:
14966 case ISD::SETUGE:
14967 return hasUnsigned ? X86ISD::UMIN : 0;
14968 case ISD::SETLT:
14969 case ISD::SETLE:
14970 return hasSigned ? X86ISD::SMAX : 0;
14971 case ISD::SETGT:
14972 case ISD::SETGE:
14973 return hasSigned ? X86ISD::SMIN : 0;
14974 }
14975 }
14976
14977 return 0;
14978}
14979
Duncan Sands6bcd2192011-09-17 16:49:39 +000014980/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
14981/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000014982static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000014983 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000014984 const X86Subtarget *Subtarget) {
14985 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000014986 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000014987 // Get the LHS/RHS of the select.
14988 SDValue LHS = N->getOperand(1);
14989 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000014990 EVT VT = LHS.getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +000014991
Dan Gohman670e5392009-09-21 18:03:22 +000014992 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000014993 // instructions match the semantics of the common C idiom x<y?x:y but not
14994 // x<=y?x:y, because of how they handle negative zero (which can be
14995 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000014996 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
14997 VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000014998 (Subtarget->hasSSE2() ||
14999 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000015000 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015001
Chris Lattner47b4ce82009-03-11 05:48:52 +000015002 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000015003 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000015004 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
15005 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000015006 switch (CC) {
15007 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000015008 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000015009 // Converting this to a min would handle NaNs incorrectly, and swapping
15010 // the operands would cause it to handle comparisons between positive
15011 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000015012 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015013 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015014 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
15015 break;
15016 std::swap(LHS, RHS);
15017 }
Dan Gohman670e5392009-09-21 18:03:22 +000015018 Opcode = X86ISD::FMIN;
15019 break;
15020 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000015021 // Converting this to a min would handle comparisons between positive
15022 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015023 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015024 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
15025 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015026 Opcode = X86ISD::FMIN;
15027 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000015028 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000015029 // Converting this to a min would handle both negative zeros and NaNs
15030 // incorrectly, but we can swap the operands to fix both.
15031 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015032 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015033 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000015034 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015035 Opcode = X86ISD::FMIN;
15036 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015037
Dan Gohman670e5392009-09-21 18:03:22 +000015038 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015039 // Converting this to a max would handle comparisons between positive
15040 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015041 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000015042 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000015043 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015044 Opcode = X86ISD::FMAX;
15045 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000015046 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000015047 // Converting this to a max would handle NaNs incorrectly, and swapping
15048 // the operands would cause it to handle comparisons between positive
15049 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000015050 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015051 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015052 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
15053 break;
15054 std::swap(LHS, RHS);
15055 }
Dan Gohman670e5392009-09-21 18:03:22 +000015056 Opcode = X86ISD::FMAX;
15057 break;
15058 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015059 // Converting this to a max would handle both negative zeros and NaNs
15060 // incorrectly, but we can swap the operands to fix both.
15061 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015062 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015063 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015064 case ISD::SETGE:
15065 Opcode = X86ISD::FMAX;
15066 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000015067 }
Dan Gohman670e5392009-09-21 18:03:22 +000015068 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000015069 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
15070 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000015071 switch (CC) {
15072 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000015073 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015074 // Converting this to a min would handle comparisons between positive
15075 // and negative zero incorrectly, and swapping the operands would
15076 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015077 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015078 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000015079 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000015080 break;
15081 std::swap(LHS, RHS);
15082 }
Dan Gohman670e5392009-09-21 18:03:22 +000015083 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000015084 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015085 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000015086 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015087 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015088 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
15089 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015090 Opcode = X86ISD::FMIN;
15091 break;
15092 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000015093 // Converting this to a min would handle both negative zeros and NaNs
15094 // incorrectly, but we can swap the operands to fix both.
15095 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015096 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015097 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015098 case ISD::SETGE:
15099 Opcode = X86ISD::FMIN;
15100 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015101
Dan Gohman670e5392009-09-21 18:03:22 +000015102 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000015103 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000015104 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000015105 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015106 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000015107 break;
Dan Gohman670e5392009-09-21 18:03:22 +000015108 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000015109 // Converting this to a max would handle comparisons between positive
15110 // and negative zero incorrectly, and swapping the operands would
15111 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015112 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000015113 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000015114 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000015115 break;
15116 std::swap(LHS, RHS);
15117 }
Dan Gohman670e5392009-09-21 18:03:22 +000015118 Opcode = X86ISD::FMAX;
15119 break;
15120 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000015121 // Converting this to a max would handle both negative zeros and NaNs
15122 // incorrectly, but we can swap the operands to fix both.
15123 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000015124 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015125 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000015126 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000015127 Opcode = X86ISD::FMAX;
15128 break;
15129 }
Chris Lattner83e6c992006-10-04 06:57:07 +000015130 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015131
Chris Lattner47b4ce82009-03-11 05:48:52 +000015132 if (Opcode)
15133 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000015134 }
Eric Christopherfd179292009-08-27 18:07:15 +000015135
Chris Lattnerd1980a52009-03-12 06:52:53 +000015136 // If this is a select between two integer constants, try to do some
15137 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000015138 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
15139 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000015140 // Don't do this for crazy integer types.
15141 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
15142 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000015143 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000015144 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000015145
Chris Lattnercee56e72009-03-13 05:53:31 +000015146 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000015147 // Efficiently invertible.
15148 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
15149 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
15150 isa<ConstantSDNode>(Cond.getOperand(1))))) {
15151 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000015152 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000015153 }
Eric Christopherfd179292009-08-27 18:07:15 +000015154
Chris Lattnerd1980a52009-03-12 06:52:53 +000015155 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000015156 if (FalseC->getAPIntValue() == 0 &&
15157 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000015158 if (NeedsCondInvert) // Invert the condition if needed.
15159 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
15160 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000015161
Chris Lattnerd1980a52009-03-12 06:52:53 +000015162 // Zero extend the condition if needed.
15163 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000015164
Chris Lattnercee56e72009-03-13 05:53:31 +000015165 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000015166 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000015167 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000015168 }
Eric Christopherfd179292009-08-27 18:07:15 +000015169
Chris Lattner97a29a52009-03-13 05:22:11 +000015170 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000015171 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000015172 if (NeedsCondInvert) // Invert the condition if needed.
15173 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
15174 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000015175
Chris Lattner97a29a52009-03-13 05:22:11 +000015176 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000015177 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
15178 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000015179 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000015180 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000015181 }
Eric Christopherfd179292009-08-27 18:07:15 +000015182
Chris Lattnercee56e72009-03-13 05:53:31 +000015183 // Optimize cases that will turn into an LEA instruction. This requires
15184 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000015185 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000015186 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000015187 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000015188
Chris Lattnercee56e72009-03-13 05:53:31 +000015189 bool isFastMultiplier = false;
15190 if (Diff < 10) {
15191 switch ((unsigned char)Diff) {
15192 default: break;
15193 case 1: // result = add base, cond
15194 case 2: // result = lea base( , cond*2)
15195 case 3: // result = lea base(cond, cond*2)
15196 case 4: // result = lea base( , cond*4)
15197 case 5: // result = lea base(cond, cond*4)
15198 case 8: // result = lea base( , cond*8)
15199 case 9: // result = lea base(cond, cond*8)
15200 isFastMultiplier = true;
15201 break;
15202 }
15203 }
Eric Christopherfd179292009-08-27 18:07:15 +000015204
Chris Lattnercee56e72009-03-13 05:53:31 +000015205 if (isFastMultiplier) {
15206 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
15207 if (NeedsCondInvert) // Invert the condition if needed.
15208 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
15209 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000015210
Chris Lattnercee56e72009-03-13 05:53:31 +000015211 // Zero extend the condition if needed.
15212 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
15213 Cond);
15214 // Scale the condition by the difference.
15215 if (Diff != 1)
15216 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
15217 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000015218
Chris Lattnercee56e72009-03-13 05:53:31 +000015219 // Add the base if non-zero.
15220 if (FalseC->getAPIntValue() != 0)
15221 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
15222 SDValue(FalseC, 0));
15223 return Cond;
15224 }
Eric Christopherfd179292009-08-27 18:07:15 +000015225 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000015226 }
15227 }
Eric Christopherfd179292009-08-27 18:07:15 +000015228
Evan Cheng56f582d2012-01-04 01:41:39 +000015229 // Canonicalize max and min:
15230 // (x > y) ? x : y -> (x >= y) ? x : y
15231 // (x < y) ? x : y -> (x <= y) ? x : y
15232 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
15233 // the need for an extra compare
15234 // against zero. e.g.
15235 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
15236 // subl %esi, %edi
15237 // testl %edi, %edi
15238 // movl $0, %eax
15239 // cmovgl %edi, %eax
15240 // =>
15241 // xorl %eax, %eax
15242 // subl %esi, $edi
15243 // cmovsl %eax, %edi
15244 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
15245 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
15246 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
15247 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
15248 switch (CC) {
15249 default: break;
15250 case ISD::SETLT:
15251 case ISD::SETGT: {
15252 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
15253 Cond = DAG.getSetCC(Cond.getDebugLoc(), Cond.getValueType(),
15254 Cond.getOperand(0), Cond.getOperand(1), NewCC);
15255 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
15256 }
15257 }
15258 }
15259
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000015260 // Match VSELECTs into subs with unsigned saturation.
15261 if (!DCI.isBeforeLegalize() &&
15262 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
15263 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
15264 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
15265 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
15266 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
15267
15268 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
15269 // left side invert the predicate to simplify logic below.
15270 SDValue Other;
15271 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
15272 Other = RHS;
15273 CC = ISD::getSetCCInverse(CC, true);
15274 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
15275 Other = LHS;
15276 }
15277
15278 if (Other.getNode() && Other->getNumOperands() == 2 &&
15279 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
15280 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
15281 SDValue CondRHS = Cond->getOperand(1);
15282
15283 // Look for a general sub with unsigned saturation first.
15284 // x >= y ? x-y : 0 --> subus x, y
15285 // x > y ? x-y : 0 --> subus x, y
15286 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
15287 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
15288 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
15289
15290 // If the RHS is a constant we have to reverse the const canonicalization.
15291 // x > C-1 ? x+-C : 0 --> subus x, C
15292 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
15293 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
15294 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
15295 if (CondRHS.getConstantOperandVal(0) == -A-1) {
15296 SmallVector<SDValue, 32> V(VT.getVectorNumElements(),
15297 DAG.getConstant(-A, VT.getScalarType()));
15298 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
15299 DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
15300 V.data(), V.size()));
15301 }
15302 }
15303
15304 // Another special case: If C was a sign bit, the sub has been
15305 // canonicalized into a xor.
15306 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
15307 // it's safe to decanonicalize the xor?
15308 // x s< 0 ? x^C : 0 --> subus x, C
15309 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
15310 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
15311 isSplatVector(OpRHS.getNode())) {
15312 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
15313 if (A.isSignBit())
15314 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
15315 }
15316 }
15317 }
15318
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000015319 // Try to match a min/max vector operation.
15320 if (!DCI.isBeforeLegalize() &&
15321 N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
15322 if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
15323 return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
15324
Nadav Rotemcc616562012-01-15 19:27:55 +000015325 // If we know that this node is legal then we know that it is going to be
15326 // matched by one of the SSE/AVX BLEND instructions. These instructions only
15327 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
15328 // to simplify previous instructions.
15329 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15330 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000015331 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000015332 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000015333
15334 // Don't optimize vector selects that map to mask-registers.
15335 if (BitWidth == 1)
15336 return SDValue();
15337
Nadav Rotemcc616562012-01-15 19:27:55 +000015338 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
15339 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
15340
15341 APInt KnownZero, KnownOne;
15342 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
15343 DCI.isBeforeLegalizeOps());
15344 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
15345 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
15346 DCI.CommitTargetLoweringOpt(TLO);
15347 }
15348
Dan Gohman475871a2008-07-27 21:46:04 +000015349 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000015350}
15351
Michael Liao2a33cec2012-08-10 19:58:13 +000015352// Check whether a boolean test is testing a boolean value generated by
15353// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
15354// code.
15355//
15356// Simplify the following patterns:
15357// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
15358// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
15359// to (Op EFLAGS Cond)
15360//
15361// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
15362// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
15363// to (Op EFLAGS !Cond)
15364//
15365// where Op could be BRCOND or CMOV.
15366//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000015367static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000015368 // Quit if not CMP and SUB with its value result used.
15369 if (Cmp.getOpcode() != X86ISD::CMP &&
15370 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
15371 return SDValue();
15372
15373 // Quit if not used as a boolean value.
15374 if (CC != X86::COND_E && CC != X86::COND_NE)
15375 return SDValue();
15376
15377 // Check CMP operands. One of them should be 0 or 1 and the other should be
15378 // an SetCC or extended from it.
15379 SDValue Op1 = Cmp.getOperand(0);
15380 SDValue Op2 = Cmp.getOperand(1);
15381
15382 SDValue SetCC;
15383 const ConstantSDNode* C = 0;
15384 bool needOppositeCond = (CC == X86::COND_E);
15385
15386 if ((C = dyn_cast<ConstantSDNode>(Op1)))
15387 SetCC = Op2;
15388 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
15389 SetCC = Op1;
15390 else // Quit if all operands are not constants.
15391 return SDValue();
15392
15393 if (C->getZExtValue() == 1)
15394 needOppositeCond = !needOppositeCond;
15395 else if (C->getZExtValue() != 0)
15396 // Quit if the constant is neither 0 or 1.
15397 return SDValue();
15398
15399 // Skip 'zext' node.
15400 if (SetCC.getOpcode() == ISD::ZERO_EXTEND)
15401 SetCC = SetCC.getOperand(0);
15402
Michael Liao7fdc66b2012-09-10 16:36:16 +000015403 switch (SetCC.getOpcode()) {
15404 case X86ISD::SETCC:
15405 // Set the condition code or opposite one if necessary.
15406 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
15407 if (needOppositeCond)
15408 CC = X86::GetOppositeBranchCondition(CC);
15409 return SetCC.getOperand(1);
15410 case X86ISD::CMOV: {
15411 // Check whether false/true value has canonical one, i.e. 0 or 1.
15412 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
15413 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
15414 // Quit if true value is not a constant.
15415 if (!TVal)
15416 return SDValue();
15417 // Quit if false value is not a constant.
15418 if (!FVal) {
15419 // A special case for rdrand, where 0 is set if false cond is found.
15420 SDValue Op = SetCC.getOperand(0);
15421 if (Op.getOpcode() != X86ISD::RDRAND)
15422 return SDValue();
15423 }
15424 // Quit if false value is not the constant 0 or 1.
15425 bool FValIsFalse = true;
15426 if (FVal && FVal->getZExtValue() != 0) {
15427 if (FVal->getZExtValue() != 1)
15428 return SDValue();
15429 // If FVal is 1, opposite cond is needed.
15430 needOppositeCond = !needOppositeCond;
15431 FValIsFalse = false;
15432 }
15433 // Quit if TVal is not the constant opposite of FVal.
15434 if (FValIsFalse && TVal->getZExtValue() != 1)
15435 return SDValue();
15436 if (!FValIsFalse && TVal->getZExtValue() != 0)
15437 return SDValue();
15438 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
15439 if (needOppositeCond)
15440 CC = X86::GetOppositeBranchCondition(CC);
15441 return SetCC.getOperand(3);
15442 }
15443 }
Michael Liao2a33cec2012-08-10 19:58:13 +000015444
Michael Liao7fdc66b2012-09-10 16:36:16 +000015445 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000015446}
15447
Chris Lattnerd1980a52009-03-12 06:52:53 +000015448/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
15449static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000015450 TargetLowering::DAGCombinerInfo &DCI,
15451 const X86Subtarget *Subtarget) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000015452 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000015453
Chris Lattnerd1980a52009-03-12 06:52:53 +000015454 // If the flag operand isn't dead, don't touch this CMOV.
15455 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
15456 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000015457
Evan Chengb5a55d92011-05-24 01:48:22 +000015458 SDValue FalseOp = N->getOperand(0);
15459 SDValue TrueOp = N->getOperand(1);
15460 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
15461 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000015462
Evan Chengb5a55d92011-05-24 01:48:22 +000015463 if (CC == X86::COND_E || CC == X86::COND_NE) {
15464 switch (Cond.getOpcode()) {
15465 default: break;
15466 case X86ISD::BSR:
15467 case X86ISD::BSF:
15468 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
15469 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
15470 return (CC == X86::COND_E) ? FalseOp : TrueOp;
15471 }
15472 }
15473
Michael Liao2a33cec2012-08-10 19:58:13 +000015474 SDValue Flags;
15475
Michael Liaodbf8b5b2012-08-28 03:34:40 +000015476 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000015477 if (Flags.getNode() &&
15478 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000015479 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000015480 SDValue Ops[] = { FalseOp, TrueOp,
15481 DAG.getConstant(CC, MVT::i8), Flags };
15482 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
15483 Ops, array_lengthof(Ops));
15484 }
15485
Chris Lattnerd1980a52009-03-12 06:52:53 +000015486 // If this is a select between two integer constants, try to do some
15487 // optimizations. Note that the operands are ordered the opposite of SELECT
15488 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000015489 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
15490 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000015491 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
15492 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000015493 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
15494 CC = X86::GetOppositeBranchCondition(CC);
15495 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000015496 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000015497 }
Eric Christopherfd179292009-08-27 18:07:15 +000015498
Chris Lattnerd1980a52009-03-12 06:52:53 +000015499 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000015500 // This is efficient for any integer data type (including i8/i16) and
15501 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000015502 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000015503 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15504 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000015505
Chris Lattnerd1980a52009-03-12 06:52:53 +000015506 // Zero extend the condition if needed.
15507 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000015508
Chris Lattnerd1980a52009-03-12 06:52:53 +000015509 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
15510 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000015511 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000015512 if (N->getNumValues() == 2) // Dead flag value?
15513 return DCI.CombineTo(N, Cond, SDValue());
15514 return Cond;
15515 }
Eric Christopherfd179292009-08-27 18:07:15 +000015516
Chris Lattnercee56e72009-03-13 05:53:31 +000015517 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
15518 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000015519 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000015520 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15521 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000015522
Chris Lattner97a29a52009-03-13 05:22:11 +000015523 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000015524 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
15525 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000015526 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
15527 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000015528
Chris Lattner97a29a52009-03-13 05:22:11 +000015529 if (N->getNumValues() == 2) // Dead flag value?
15530 return DCI.CombineTo(N, Cond, SDValue());
15531 return Cond;
15532 }
Eric Christopherfd179292009-08-27 18:07:15 +000015533
Chris Lattnercee56e72009-03-13 05:53:31 +000015534 // Optimize cases that will turn into an LEA instruction. This requires
15535 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000015536 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000015537 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000015538 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000015539
Chris Lattnercee56e72009-03-13 05:53:31 +000015540 bool isFastMultiplier = false;
15541 if (Diff < 10) {
15542 switch ((unsigned char)Diff) {
15543 default: break;
15544 case 1: // result = add base, cond
15545 case 2: // result = lea base( , cond*2)
15546 case 3: // result = lea base(cond, cond*2)
15547 case 4: // result = lea base( , cond*4)
15548 case 5: // result = lea base(cond, cond*4)
15549 case 8: // result = lea base( , cond*8)
15550 case 9: // result = lea base(cond, cond*8)
15551 isFastMultiplier = true;
15552 break;
15553 }
15554 }
Eric Christopherfd179292009-08-27 18:07:15 +000015555
Chris Lattnercee56e72009-03-13 05:53:31 +000015556 if (isFastMultiplier) {
15557 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000015558 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15559 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000015560 // Zero extend the condition if needed.
15561 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
15562 Cond);
15563 // Scale the condition by the difference.
15564 if (Diff != 1)
15565 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
15566 DAG.getConstant(Diff, Cond.getValueType()));
15567
15568 // Add the base if non-zero.
15569 if (FalseC->getAPIntValue() != 0)
15570 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
15571 SDValue(FalseC, 0));
15572 if (N->getNumValues() == 2) // Dead flag value?
15573 return DCI.CombineTo(N, Cond, SDValue());
15574 return Cond;
15575 }
Eric Christopherfd179292009-08-27 18:07:15 +000015576 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000015577 }
15578 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000015579
15580 // Handle these cases:
15581 // (select (x != c), e, c) -> select (x != c), e, x),
15582 // (select (x == c), c, e) -> select (x == c), x, e)
15583 // where the c is an integer constant, and the "select" is the combination
15584 // of CMOV and CMP.
15585 //
15586 // The rationale for this change is that the conditional-move from a constant
15587 // needs two instructions, however, conditional-move from a register needs
15588 // only one instruction.
15589 //
15590 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
15591 // some instruction-combining opportunities. This opt needs to be
15592 // postponed as late as possible.
15593 //
15594 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
15595 // the DCI.xxxx conditions are provided to postpone the optimization as
15596 // late as possible.
15597
15598 ConstantSDNode *CmpAgainst = 0;
15599 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
15600 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
15601 dyn_cast<ConstantSDNode>(Cond.getOperand(0)) == 0) {
15602
15603 if (CC == X86::COND_NE &&
15604 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
15605 CC = X86::GetOppositeBranchCondition(CC);
15606 std::swap(TrueOp, FalseOp);
15607 }
15608
15609 if (CC == X86::COND_E &&
15610 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
15611 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
15612 DAG.getConstant(CC, MVT::i8), Cond };
15613 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
15614 array_lengthof(Ops));
15615 }
15616 }
15617 }
15618
Chris Lattnerd1980a52009-03-12 06:52:53 +000015619 return SDValue();
15620}
15621
Evan Cheng0b0cd912009-03-28 05:57:29 +000015622/// PerformMulCombine - Optimize a single multiply with constant into two
15623/// in order to implement it with two cheaper instructions, e.g.
15624/// LEA + SHL, LEA + LEA.
15625static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
15626 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000015627 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
15628 return SDValue();
15629
Owen Andersone50ed302009-08-10 22:56:29 +000015630 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000015631 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000015632 return SDValue();
15633
15634 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
15635 if (!C)
15636 return SDValue();
15637 uint64_t MulAmt = C->getZExtValue();
15638 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
15639 return SDValue();
15640
15641 uint64_t MulAmt1 = 0;
15642 uint64_t MulAmt2 = 0;
15643 if ((MulAmt % 9) == 0) {
15644 MulAmt1 = 9;
15645 MulAmt2 = MulAmt / 9;
15646 } else if ((MulAmt % 5) == 0) {
15647 MulAmt1 = 5;
15648 MulAmt2 = MulAmt / 5;
15649 } else if ((MulAmt % 3) == 0) {
15650 MulAmt1 = 3;
15651 MulAmt2 = MulAmt / 3;
15652 }
15653 if (MulAmt2 &&
15654 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
15655 DebugLoc DL = N->getDebugLoc();
15656
15657 if (isPowerOf2_64(MulAmt2) &&
15658 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
15659 // If second multiplifer is pow2, issue it first. We want the multiply by
15660 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
15661 // is an add.
15662 std::swap(MulAmt1, MulAmt2);
15663
15664 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000015665 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000015666 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000015667 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000015668 else
Evan Cheng73f24c92009-03-30 21:36:47 +000015669 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000015670 DAG.getConstant(MulAmt1, VT));
15671
Eric Christopherfd179292009-08-27 18:07:15 +000015672 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000015673 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000015674 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000015675 else
Evan Cheng73f24c92009-03-30 21:36:47 +000015676 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000015677 DAG.getConstant(MulAmt2, VT));
15678
15679 // Do not add new nodes to DAG combiner worklist.
15680 DCI.CombineTo(N, NewMul, false);
15681 }
15682 return SDValue();
15683}
15684
Evan Chengad9c0a32009-12-15 00:53:42 +000015685static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
15686 SDValue N0 = N->getOperand(0);
15687 SDValue N1 = N->getOperand(1);
15688 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
15689 EVT VT = N0.getValueType();
15690
15691 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
15692 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000015693 if (VT.isInteger() && !VT.isVector() &&
15694 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000015695 N0.getOperand(1).getOpcode() == ISD::Constant) {
15696 SDValue N00 = N0.getOperand(0);
15697 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
15698 ((N00.getOpcode() == ISD::ANY_EXTEND ||
15699 N00.getOpcode() == ISD::ZERO_EXTEND) &&
15700 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
15701 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
15702 APInt ShAmt = N1C->getAPIntValue();
15703 Mask = Mask.shl(ShAmt);
15704 if (Mask != 0)
15705 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
15706 N00, DAG.getConstant(Mask, VT));
15707 }
15708 }
15709
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000015710 // Hardware support for vector shifts is sparse which makes us scalarize the
15711 // vector operations in many cases. Also, on sandybridge ADD is faster than
15712 // shl.
15713 // (shl V, 1) -> add V,V
15714 if (isSplatVector(N1.getNode())) {
15715 assert(N0.getValueType().isVector() && "Invalid vector shift type");
15716 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
15717 // We shift all of the values by one. In many cases we do not have
15718 // hardware support for this operation. This is better expressed as an ADD
15719 // of two values.
15720 if (N1C && (1 == N1C->getZExtValue())) {
15721 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N0);
15722 }
15723 }
15724
Evan Chengad9c0a32009-12-15 00:53:42 +000015725 return SDValue();
15726}
Evan Cheng0b0cd912009-03-28 05:57:29 +000015727
Nate Begeman740ab032009-01-26 00:52:55 +000015728/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
15729/// when possible.
15730static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000015731 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000015732 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000015733 EVT VT = N->getValueType(0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000015734 if (N->getOpcode() == ISD::SHL) {
15735 SDValue V = PerformSHLCombine(N, DAG);
15736 if (V.getNode()) return V;
15737 }
Evan Chengad9c0a32009-12-15 00:53:42 +000015738
Nate Begeman740ab032009-01-26 00:52:55 +000015739 // On X86 with SSE2 support, we can transform this to a vector shift if
15740 // all elements are shifted by the same amount. We can't do this in legalize
15741 // because the a constant vector is typically transformed to a constant pool
15742 // so we have no knowledge of the shift amount.
Craig Topper1accb7e2012-01-10 06:54:16 +000015743 if (!Subtarget->hasSSE2())
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015744 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000015745
Craig Topper7be5dfd2011-11-12 09:58:49 +000015746 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015747 (!Subtarget->hasInt256() ||
Craig Topper7be5dfd2011-11-12 09:58:49 +000015748 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015749 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000015750
Mon P Wang3becd092009-01-28 08:12:05 +000015751 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000015752 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000015753 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000015754 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000015755 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
15756 unsigned NumElts = VT.getVectorNumElements();
15757 unsigned i = 0;
15758 for (; i != NumElts; ++i) {
15759 SDValue Arg = ShAmtOp.getOperand(i);
15760 if (Arg.getOpcode() == ISD::UNDEF) continue;
15761 BaseShAmt = Arg;
15762 break;
15763 }
Craig Topper37c26772012-01-17 04:44:50 +000015764 // Handle the case where the build_vector is all undef
15765 // FIXME: Should DAG allow this?
15766 if (i == NumElts)
15767 return SDValue();
15768
Mon P Wang3becd092009-01-28 08:12:05 +000015769 for (; i != NumElts; ++i) {
15770 SDValue Arg = ShAmtOp.getOperand(i);
15771 if (Arg.getOpcode() == ISD::UNDEF) continue;
15772 if (Arg != BaseShAmt) {
15773 return SDValue();
15774 }
15775 }
15776 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000015777 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000015778 SDValue InVec = ShAmtOp.getOperand(0);
15779 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
15780 unsigned NumElts = InVec.getValueType().getVectorNumElements();
15781 unsigned i = 0;
15782 for (; i != NumElts; ++i) {
15783 SDValue Arg = InVec.getOperand(i);
15784 if (Arg.getOpcode() == ISD::UNDEF) continue;
15785 BaseShAmt = Arg;
15786 break;
15787 }
15788 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
15789 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000015790 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000015791 if (C->getZExtValue() == SplatIdx)
15792 BaseShAmt = InVec.getOperand(1);
15793 }
15794 }
Mon P Wang845b1892012-02-01 22:15:20 +000015795 if (BaseShAmt.getNode() == 0) {
15796 // Don't create instructions with illegal types after legalize
15797 // types has run.
15798 if (!DAG.getTargetLoweringInfo().isTypeLegal(EltVT) &&
15799 !DCI.isBeforeLegalize())
15800 return SDValue();
15801
Mon P Wangefa42202009-09-03 19:56:25 +000015802 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
15803 DAG.getIntPtrConstant(0));
Mon P Wang845b1892012-02-01 22:15:20 +000015804 }
Mon P Wang3becd092009-01-28 08:12:05 +000015805 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015806 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000015807
Mon P Wangefa42202009-09-03 19:56:25 +000015808 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000015809 if (EltVT.bitsGT(MVT::i32))
15810 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
15811 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000015812 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000015813
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015814 // The shift amount is identical so we can do a vector shift.
15815 SDValue ValOp = N->getOperand(0);
15816 switch (N->getOpcode()) {
15817 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000015818 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015819 case ISD::SHL:
Craig Toppered2e13d2012-01-22 19:15:14 +000015820 switch (VT.getSimpleVT().SimpleTy) {
15821 default: return SDValue();
15822 case MVT::v2i64:
15823 case MVT::v4i32:
15824 case MVT::v8i16:
15825 case MVT::v4i64:
15826 case MVT::v8i32:
15827 case MVT::v16i16:
15828 return getTargetVShiftNode(X86ISD::VSHLI, DL, VT, ValOp, BaseShAmt, DAG);
15829 }
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015830 case ISD::SRA:
Craig Toppered2e13d2012-01-22 19:15:14 +000015831 switch (VT.getSimpleVT().SimpleTy) {
15832 default: return SDValue();
15833 case MVT::v4i32:
15834 case MVT::v8i16:
15835 case MVT::v8i32:
15836 case MVT::v16i16:
15837 return getTargetVShiftNode(X86ISD::VSRAI, DL, VT, ValOp, BaseShAmt, DAG);
15838 }
Nate Begemanc2fd67f2009-01-26 03:15:31 +000015839 case ISD::SRL:
Craig Toppered2e13d2012-01-22 19:15:14 +000015840 switch (VT.getSimpleVT().SimpleTy) {
15841 default: return SDValue();
15842 case MVT::v2i64:
15843 case MVT::v4i32:
15844 case MVT::v8i16:
15845 case MVT::v4i64:
15846 case MVT::v8i32:
15847 case MVT::v16i16:
15848 return getTargetVShiftNode(X86ISD::VSRLI, DL, VT, ValOp, BaseShAmt, DAG);
15849 }
Nate Begeman740ab032009-01-26 00:52:55 +000015850 }
Nate Begeman740ab032009-01-26 00:52:55 +000015851}
15852
Stuart Hastings865f0932011-06-03 23:53:54 +000015853// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
15854// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
15855// and friends. Likewise for OR -> CMPNEQSS.
15856static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
15857 TargetLowering::DAGCombinerInfo &DCI,
15858 const X86Subtarget *Subtarget) {
15859 unsigned opcode;
15860
15861 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
15862 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000015863 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000015864 SDValue N0 = N->getOperand(0);
15865 SDValue N1 = N->getOperand(1);
15866 SDValue CMP0 = N0->getOperand(1);
15867 SDValue CMP1 = N1->getOperand(1);
15868 DebugLoc DL = N->getDebugLoc();
15869
15870 // The SETCCs should both refer to the same CMP.
15871 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
15872 return SDValue();
15873
15874 SDValue CMP00 = CMP0->getOperand(0);
15875 SDValue CMP01 = CMP0->getOperand(1);
15876 EVT VT = CMP00.getValueType();
15877
15878 if (VT == MVT::f32 || VT == MVT::f64) {
15879 bool ExpectingFlags = false;
15880 // Check for any users that want flags:
15881 for (SDNode::use_iterator UI = N->use_begin(),
15882 UE = N->use_end();
15883 !ExpectingFlags && UI != UE; ++UI)
15884 switch (UI->getOpcode()) {
15885 default:
15886 case ISD::BR_CC:
15887 case ISD::BRCOND:
15888 case ISD::SELECT:
15889 ExpectingFlags = true;
15890 break;
15891 case ISD::CopyToReg:
15892 case ISD::SIGN_EXTEND:
15893 case ISD::ZERO_EXTEND:
15894 case ISD::ANY_EXTEND:
15895 break;
15896 }
15897
15898 if (!ExpectingFlags) {
15899 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
15900 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
15901
15902 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
15903 X86::CondCode tmp = cc0;
15904 cc0 = cc1;
15905 cc1 = tmp;
15906 }
15907
15908 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
15909 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
15910 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
15911 X86ISD::NodeType NTOperator = is64BitFP ?
15912 X86ISD::FSETCCsd : X86ISD::FSETCCss;
15913 // FIXME: need symbolic constants for these magic numbers.
15914 // See X86ATTInstPrinter.cpp:printSSECC().
15915 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
15916 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
15917 DAG.getConstant(x86cc, MVT::i8));
15918 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
15919 OnesOrZeroesF);
15920 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
15921 DAG.getConstant(1, MVT::i32));
15922 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
15923 return OneBitOfTruth;
15924 }
15925 }
15926 }
15927 }
15928 return SDValue();
15929}
15930
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000015931/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
15932/// so it can be folded inside ANDNP.
15933static bool CanFoldXORWithAllOnes(const SDNode *N) {
15934 EVT VT = N->getValueType(0);
15935
15936 // Match direct AllOnes for 128 and 256-bit vectors
15937 if (ISD::isBuildVectorAllOnes(N))
15938 return true;
15939
15940 // Look through a bit convert.
15941 if (N->getOpcode() == ISD::BITCAST)
15942 N = N->getOperand(0).getNode();
15943
15944 // Sometimes the operand may come from a insert_subvector building a 256-bit
15945 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000015946 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000015947 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
15948 SDValue V1 = N->getOperand(0);
15949 SDValue V2 = N->getOperand(1);
15950
15951 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
15952 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
15953 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
15954 ISD::isBuildVectorAllOnes(V2.getNode()))
15955 return true;
15956 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000015957
15958 return false;
15959}
15960
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000015961// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
15962// register. In most cases we actually compare or select YMM-sized registers
15963// and mixing the two types creates horrible code. This method optimizes
15964// some of the transition sequences.
15965static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
15966 TargetLowering::DAGCombinerInfo &DCI,
15967 const X86Subtarget *Subtarget) {
15968 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000015969 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000015970 return SDValue();
15971
15972 assert((N->getOpcode() == ISD::ANY_EXTEND ||
15973 N->getOpcode() == ISD::ZERO_EXTEND ||
15974 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
15975
15976 SDValue Narrow = N->getOperand(0);
15977 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000015978 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000015979 return SDValue();
15980
15981 if (Narrow->getOpcode() != ISD::XOR &&
15982 Narrow->getOpcode() != ISD::AND &&
15983 Narrow->getOpcode() != ISD::OR)
15984 return SDValue();
15985
15986 SDValue N0 = Narrow->getOperand(0);
15987 SDValue N1 = Narrow->getOperand(1);
15988 DebugLoc DL = Narrow->getDebugLoc();
15989
15990 // The Left side has to be a trunc.
15991 if (N0.getOpcode() != ISD::TRUNCATE)
15992 return SDValue();
15993
15994 // The type of the truncated inputs.
15995 EVT WideVT = N0->getOperand(0)->getValueType(0);
15996 if (WideVT != VT)
15997 return SDValue();
15998
15999 // The right side has to be a 'trunc' or a constant vector.
16000 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
16001 bool RHSConst = (isSplatVector(N1.getNode()) &&
16002 isa<ConstantSDNode>(N1->getOperand(0)));
16003 if (!RHSTrunc && !RHSConst)
16004 return SDValue();
16005
16006 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16007
16008 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
16009 return SDValue();
16010
16011 // Set N0 and N1 to hold the inputs to the new wide operation.
16012 N0 = N0->getOperand(0);
16013 if (RHSConst) {
16014 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
16015 N1->getOperand(0));
16016 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
16017 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
16018 } else if (RHSTrunc) {
16019 N1 = N1->getOperand(0);
16020 }
16021
16022 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000016023 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016024 unsigned Opcode = N->getOpcode();
16025 switch (Opcode) {
16026 case ISD::ANY_EXTEND:
16027 return Op;
16028 case ISD::ZERO_EXTEND: {
16029 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
16030 APInt Mask = APInt::getAllOnesValue(InBits);
16031 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
16032 return DAG.getNode(ISD::AND, DL, VT,
16033 Op, DAG.getConstant(Mask, VT));
16034 }
16035 case ISD::SIGN_EXTEND:
16036 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
16037 Op, DAG.getValueType(NarrowVT));
16038 default:
16039 llvm_unreachable("Unexpected opcode");
16040 }
16041}
16042
Nate Begemanb65c1752010-12-17 22:55:37 +000016043static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
16044 TargetLowering::DAGCombinerInfo &DCI,
16045 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016046 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000016047 if (DCI.isBeforeLegalizeOps())
16048 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016049
Stuart Hastings865f0932011-06-03 23:53:54 +000016050 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
16051 if (R.getNode())
16052 return R;
16053
Craig Topperb926afc2012-12-17 05:12:30 +000016054 // Create BLSI, and BLSR instructions
Craig Topperb4c94572011-10-21 06:55:01 +000016055 // BLSI is X & (-X)
16056 // BLSR is X & (X-1)
Craig Topper54a11172011-10-14 07:06:56 +000016057 if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
16058 SDValue N0 = N->getOperand(0);
16059 SDValue N1 = N->getOperand(1);
16060 DebugLoc DL = N->getDebugLoc();
16061
Craig Topperb4c94572011-10-21 06:55:01 +000016062 // Check LHS for neg
16063 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
16064 isZero(N0.getOperand(0)))
16065 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
16066
16067 // Check RHS for neg
16068 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
16069 isZero(N1.getOperand(0)))
16070 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
16071
16072 // Check LHS for X-1
16073 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
16074 isAllOnes(N0.getOperand(1)))
16075 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
16076
16077 // Check RHS for X-1
16078 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
16079 isAllOnes(N1.getOperand(1)))
16080 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
16081
Craig Topper54a11172011-10-14 07:06:56 +000016082 return SDValue();
16083 }
16084
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000016085 // Want to form ANDNP nodes:
16086 // 1) In the hopes of then easily combining them with OR and AND nodes
16087 // to form PBLEND/PSIGN.
16088 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000016089 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000016090 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016091
Nate Begemanb65c1752010-12-17 22:55:37 +000016092 SDValue N0 = N->getOperand(0);
16093 SDValue N1 = N->getOperand(1);
16094 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016095
Nate Begemanb65c1752010-12-17 22:55:37 +000016096 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016097 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000016098 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
16099 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000016100 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000016101
16102 // Check RHS for vnot
16103 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000016104 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
16105 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000016106 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016107
Nate Begemanb65c1752010-12-17 22:55:37 +000016108 return SDValue();
16109}
16110
Evan Cheng760d1942010-01-04 21:22:48 +000016111static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000016112 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000016113 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016114 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000016115 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000016116 return SDValue();
16117
Stuart Hastings865f0932011-06-03 23:53:54 +000016118 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
16119 if (R.getNode())
16120 return R;
16121
Evan Cheng760d1942010-01-04 21:22:48 +000016122 SDValue N0 = N->getOperand(0);
16123 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016124
Nate Begemanb65c1752010-12-17 22:55:37 +000016125 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000016126 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000016127 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016128 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000016129 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016130
Craig Topper1666cb62011-11-19 07:07:26 +000016131 // Canonicalize pandn to RHS
16132 if (N0.getOpcode() == X86ISD::ANDNP)
16133 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000016134 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000016135 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
16136 SDValue Mask = N1.getOperand(0);
16137 SDValue X = N1.getOperand(1);
16138 SDValue Y;
16139 if (N0.getOperand(0) == Mask)
16140 Y = N0.getOperand(1);
16141 if (N0.getOperand(1) == Mask)
16142 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016143
Craig Topper1666cb62011-11-19 07:07:26 +000016144 // Check to see if the mask appeared in both the AND and ANDNP and
16145 if (!Y.getNode())
16146 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016147
Craig Topper1666cb62011-11-19 07:07:26 +000016148 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000016149 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000016150 if (Mask.getOpcode() == ISD::BITCAST)
16151 Mask = Mask.getOperand(0);
16152 if (X.getOpcode() == ISD::BITCAST)
16153 X = X.getOperand(0);
16154 if (Y.getOpcode() == ISD::BITCAST)
16155 Y = Y.getOperand(0);
16156
Craig Topper1666cb62011-11-19 07:07:26 +000016157 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016158
Craig Toppered2e13d2012-01-22 19:15:14 +000016159 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000016160 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
16161 // there is no psrai.b
Craig Topper7fb8b0c2012-01-23 06:46:22 +000016162 if (Mask.getOpcode() != X86ISD::VSRAI)
Craig Toppered2e13d2012-01-22 19:15:14 +000016163 return SDValue();
Craig Topper1666cb62011-11-19 07:07:26 +000016164
16165 // Check that the SRA is all signbits.
Craig Topper7fb8b0c2012-01-23 06:46:22 +000016166 SDValue SraC = Mask.getOperand(1);
Craig Topper1666cb62011-11-19 07:07:26 +000016167 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
16168 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
16169 if ((SraAmt + 1) != EltBits)
16170 return SDValue();
16171
16172 DebugLoc DL = N->getDebugLoc();
16173
Nadav Rotemaf59e9a2012-12-07 21:43:11 +000016174 // We are going to replace the AND, OR, NAND with either BLEND
16175 // or PSIGN, which only look at the MSB. The VSRAI instruction
16176 // does not affect the highest bit, so we can get rid of it.
16177 Mask = Mask.getOperand(0);
16178
Craig Topper1666cb62011-11-19 07:07:26 +000016179 // Now we know we at least have a plendvb with the mask val. See if
16180 // we can form a psignb/w/d.
16181 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000016182 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
16183 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000016184 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
16185 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
16186 "Unsupported VT for PSIGN");
Nadav Rotemaf59e9a2012-12-07 21:43:11 +000016187 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask);
Craig Toppered2e13d2012-01-22 19:15:14 +000016188 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000016189 }
16190 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000016191 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000016192 return SDValue();
16193
16194 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
16195
16196 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
16197 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
16198 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000016199 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000016200 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000016201 }
16202 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016203
Craig Topper1666cb62011-11-19 07:07:26 +000016204 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
16205 return SDValue();
16206
Nate Begemanb65c1752010-12-17 22:55:37 +000016207 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000016208 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
16209 std::swap(N0, N1);
16210 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
16211 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000016212 if (!N0.hasOneUse() || !N1.hasOneUse())
16213 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000016214
16215 SDValue ShAmt0 = N0.getOperand(1);
16216 if (ShAmt0.getValueType() != MVT::i8)
16217 return SDValue();
16218 SDValue ShAmt1 = N1.getOperand(1);
16219 if (ShAmt1.getValueType() != MVT::i8)
16220 return SDValue();
16221 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
16222 ShAmt0 = ShAmt0.getOperand(0);
16223 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
16224 ShAmt1 = ShAmt1.getOperand(0);
16225
16226 DebugLoc DL = N->getDebugLoc();
16227 unsigned Opc = X86ISD::SHLD;
16228 SDValue Op0 = N0.getOperand(0);
16229 SDValue Op1 = N1.getOperand(0);
16230 if (ShAmt0.getOpcode() == ISD::SUB) {
16231 Opc = X86ISD::SHRD;
16232 std::swap(Op0, Op1);
16233 std::swap(ShAmt0, ShAmt1);
16234 }
16235
Evan Cheng8b1190a2010-04-28 01:18:01 +000016236 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000016237 if (ShAmt1.getOpcode() == ISD::SUB) {
16238 SDValue Sum = ShAmt1.getOperand(0);
16239 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000016240 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
16241 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
16242 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
16243 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000016244 return DAG.getNode(Opc, DL, VT,
16245 Op0, Op1,
16246 DAG.getNode(ISD::TRUNCATE, DL,
16247 MVT::i8, ShAmt0));
16248 }
16249 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
16250 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
16251 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000016252 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000016253 return DAG.getNode(Opc, DL, VT,
16254 N0.getOperand(0), N1.getOperand(0),
16255 DAG.getNode(ISD::TRUNCATE, DL,
16256 MVT::i8, ShAmt0));
16257 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000016258
Evan Cheng760d1942010-01-04 21:22:48 +000016259 return SDValue();
16260}
16261
Manman Ren92363622012-06-07 22:39:10 +000016262// Generate NEG and CMOV for integer abs.
16263static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
16264 EVT VT = N->getValueType(0);
16265
16266 // Since X86 does not have CMOV for 8-bit integer, we don't convert
16267 // 8-bit integer abs to NEG and CMOV.
16268 if (VT.isInteger() && VT.getSizeInBits() == 8)
16269 return SDValue();
16270
16271 SDValue N0 = N->getOperand(0);
16272 SDValue N1 = N->getOperand(1);
16273 DebugLoc DL = N->getDebugLoc();
16274
16275 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
16276 // and change it to SUB and CMOV.
16277 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
16278 N0.getOpcode() == ISD::ADD &&
16279 N0.getOperand(1) == N1 &&
16280 N1.getOpcode() == ISD::SRA &&
16281 N1.getOperand(0) == N0.getOperand(0))
16282 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
16283 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
16284 // Generate SUB & CMOV.
16285 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
16286 DAG.getConstant(0, VT), N0.getOperand(0));
16287
16288 SDValue Ops[] = { N0.getOperand(0), Neg,
16289 DAG.getConstant(X86::COND_GE, MVT::i8),
16290 SDValue(Neg.getNode(), 1) };
16291 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
16292 Ops, array_lengthof(Ops));
16293 }
16294 return SDValue();
16295}
16296
Craig Topper3738ccd2011-12-27 06:27:23 +000016297// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000016298static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
16299 TargetLowering::DAGCombinerInfo &DCI,
16300 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000016301 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000016302 if (DCI.isBeforeLegalizeOps())
16303 return SDValue();
16304
Manman Ren45d53b82012-06-08 18:58:26 +000016305 if (Subtarget->hasCMov()) {
16306 SDValue RV = performIntegerAbsCombine(N, DAG);
16307 if (RV.getNode())
16308 return RV;
16309 }
Manman Ren92363622012-06-07 22:39:10 +000016310
16311 // Try forming BMI if it is available.
16312 if (!Subtarget->hasBMI())
16313 return SDValue();
16314
Craig Topperb4c94572011-10-21 06:55:01 +000016315 if (VT != MVT::i32 && VT != MVT::i64)
16316 return SDValue();
16317
Craig Topper3738ccd2011-12-27 06:27:23 +000016318 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
16319
Craig Topperb4c94572011-10-21 06:55:01 +000016320 // Create BLSMSK instructions by finding X ^ (X-1)
16321 SDValue N0 = N->getOperand(0);
16322 SDValue N1 = N->getOperand(1);
16323 DebugLoc DL = N->getDebugLoc();
16324
16325 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
16326 isAllOnes(N0.getOperand(1)))
16327 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
16328
16329 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
16330 isAllOnes(N1.getOperand(1)))
16331 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
16332
16333 return SDValue();
16334}
16335
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016336/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
16337static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016338 TargetLowering::DAGCombinerInfo &DCI,
16339 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016340 LoadSDNode *Ld = cast<LoadSDNode>(N);
16341 EVT RegVT = Ld->getValueType(0);
16342 EVT MemVT = Ld->getMemoryVT();
16343 DebugLoc dl = Ld->getDebugLoc();
16344 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000016345 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016346
16347 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000016348 unsigned Alignment = Ld->getAlignment();
Nadav Rotemba958652013-01-19 08:38:41 +000016349 bool IsAligned = Alignment == 0 || Alignment == MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000016350
16351 // On Sandybridge unaligned 256bit loads are inefficient.
16352 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000016353 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000016354 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000016355 if (NumElems < 2)
16356 return SDValue();
16357
Nadav Rotem48177ac2013-01-18 23:10:30 +000016358 SDValue Ptr = Ld->getBasePtr();
16359 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
16360
16361 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
16362 NumElems/2);
16363 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
16364 Ld->getPointerInfo(), Ld->isVolatile(),
16365 Ld->isNonTemporal(), Ld->isInvariant(),
16366 Alignment);
16367 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
16368 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
16369 Ld->getPointerInfo(), Ld->isVolatile(),
16370 Ld->isNonTemporal(), Ld->isInvariant(),
Nadav Rotemba958652013-01-19 08:38:41 +000016371 std::max(Alignment/2U, 1U));
Nadav Rotem48177ac2013-01-18 23:10:30 +000016372 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16373 Load1.getValue(1),
16374 Load2.getValue(1));
16375
16376 SDValue NewVec = DAG.getUNDEF(RegVT);
16377 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
16378 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
16379 return DCI.CombineTo(N, NewVec, TF, true);
16380 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016381
Nadav Rotemca6f2962011-09-18 19:00:23 +000016382 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000016383 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
16384 // expansion is still better than scalar code.
16385 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
16386 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016387 // TODO: It is possible to support ZExt by zeroing the undef values
16388 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000016389 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
16390 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016391 assert(MemVT != RegVT && "Cannot extend to the same type");
16392 assert(MemVT.isVector() && "Must load a vector from memory");
16393
16394 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016395 unsigned MemSz = MemVT.getSizeInBits();
16396 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016397
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016398 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
16399 return SDValue();
16400
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016401 // All sizes must be a power of two.
16402 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
16403 return SDValue();
16404
16405 // Attempt to load the original value using scalar loads.
16406 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016407 MVT SclrLoadTy = MVT::i8;
16408 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
16409 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
16410 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016411 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016412 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016413 }
16414 }
16415
Nadav Rotem5cd95e12012-07-11 13:27:05 +000016416 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
16417 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
16418 (64 <= MemSz))
16419 SclrLoadTy = MVT::f64;
16420
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016421 // Calculate the number of scalar loads that we need to perform
16422 // in order to load our vector from memory.
16423 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016424 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
16425 return SDValue();
16426
16427 unsigned loadRegZize = RegSz;
16428 if (Ext == ISD::SEXTLOAD && RegSz == 256)
16429 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016430
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016431 // Represent our vector as a sequence of elements which are the
16432 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016433 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016434 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016435
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016436 // Represent the data using the same element type that is stored in
16437 // memory. In practice, we ''widen'' MemVT.
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016438 EVT WideVecVT =
16439 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
16440 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016441
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016442 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
16443 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016444
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016445 // We can't shuffle using an illegal type.
16446 if (!TLI.isTypeLegal(WideVecVT))
16447 return SDValue();
16448
16449 SmallVector<SDValue, 8> Chains;
16450 SDValue Ptr = Ld->getBasePtr();
16451 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
16452 TLI.getPointerTy());
16453 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
16454
16455 for (unsigned i = 0; i < NumLoads; ++i) {
16456 // Perform a single load.
16457 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
16458 Ptr, Ld->getPointerInfo(),
16459 Ld->isVolatile(), Ld->isNonTemporal(),
16460 Ld->isInvariant(), Ld->getAlignment());
16461 Chains.push_back(ScalarLoad.getValue(1));
16462 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
16463 // another round of DAGCombining.
16464 if (i == 0)
16465 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
16466 else
16467 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
16468 ScalarLoad, DAG.getIntPtrConstant(i));
16469
16470 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
16471 }
16472
16473 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
16474 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016475
16476 // Bitcast the loaded value to a vector of the original element type, in
16477 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016478 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016479 unsigned SizeRatio = RegSz/MemSz;
16480
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016481 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000016482 // If we have SSE4.1 we can directly emit a VSEXT node.
16483 if (Subtarget->hasSSE41()) {
16484 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
16485 return DCI.CombineTo(N, Sext, TF, true);
16486 }
16487
16488 // Otherwise we'll shuffle the small elements in the high bits of the
16489 // larger type and perform an arithmetic shift. If the shift is not legal
16490 // it's better to scalarize.
16491 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
16492 return SDValue();
16493
16494 // Redistribute the loaded elements into the different locations.
16495 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
16496 for (unsigned i = 0; i != NumElems; ++i)
16497 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
16498
16499 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
16500 DAG.getUNDEF(WideVecVT),
16501 &ShuffleVec[0]);
16502
16503 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
16504
16505 // Build the arithmetic shift.
16506 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
16507 MemVT.getVectorElementType().getSizeInBits();
16508 SmallVector<SDValue, 8> C(NumElems,
16509 DAG.getConstant(Amt, RegVT.getScalarType()));
16510 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, RegVT, &C[0], C.size());
16511 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff, BV);
16512
16513 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000016514 }
Benjamin Kramer17347912012-12-22 11:34:28 +000016515
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016516 // Redistribute the loaded elements into the different locations.
16517 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000016518 for (unsigned i = 0; i != NumElems; ++i)
16519 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016520
16521 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000016522 DAG.getUNDEF(WideVecVT),
16523 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016524
16525 // Bitcast to the requested type.
16526 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
16527 // Replace the original load with the new sequence
16528 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016529 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016530 }
16531
16532 return SDValue();
16533}
16534
Chris Lattner149a4e52008-02-22 02:09:43 +000016535/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016536static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000016537 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000016538 StoreSDNode *St = cast<StoreSDNode>(N);
16539 EVT VT = St->getValue().getValueType();
16540 EVT StVT = St->getMemoryVT();
16541 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000016542 SDValue StoredVal = St->getOperand(1);
16543 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotemba958652013-01-19 08:38:41 +000016544 unsigned Alignment = St->getAlignment();
16545 bool IsAligned = Alignment == 0 || Alignment == VT.getSizeInBits()/8;
Nadav Rotem5e742a32011-08-11 16:41:21 +000016546
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016547 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000016548 // On Sandy Bridge, 256-bit memory operations are executed by two
16549 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
16550 // memory operation.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016551 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000016552 StVT == VT && !IsAligned) {
16553 unsigned NumElems = VT.getVectorNumElements();
16554 if (NumElems < 2)
16555 return SDValue();
16556
16557 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
16558 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000016559
16560 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
16561 SDValue Ptr0 = St->getBasePtr();
16562 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
16563
16564 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
16565 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000016566 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000016567 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
16568 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000016569 St->isNonTemporal(),
16570 std::max(Alignment/2U, 1U));
Nadav Rotem5e742a32011-08-11 16:41:21 +000016571 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
16572 }
Nadav Rotem614061b2011-08-10 19:30:14 +000016573
16574 // Optimize trunc store (of multiple scalars) to shuffle and store.
16575 // First, pack all of the elements in one place. Next, store to memory
16576 // in fewer chunks.
16577 if (St->isTruncatingStore() && VT.isVector()) {
16578 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16579 unsigned NumElems = VT.getVectorNumElements();
16580 assert(StVT != VT && "Cannot truncate to the same type");
16581 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
16582 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
16583
16584 // From, To sizes and ElemCount must be pow of two
16585 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000016586 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000016587 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000016588 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000016589
Nadav Rotem614061b2011-08-10 19:30:14 +000016590 unsigned SizeRatio = FromSz / ToSz;
16591
16592 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
16593
16594 // Create a type on which we perform the shuffle
16595 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
16596 StVT.getScalarType(), NumElems*SizeRatio);
16597
16598 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
16599
16600 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
16601 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000016602 for (unsigned i = 0; i != NumElems; ++i)
16603 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000016604
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000016605 // Can't shuffle using an illegal type.
16606 if (!TLI.isTypeLegal(WideVecVT))
16607 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000016608
16609 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000016610 DAG.getUNDEF(WideVecVT),
16611 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000016612 // At this point all of the data is stored at the bottom of the
16613 // register. We now need to save it to mem.
16614
16615 // Find the largest store unit
16616 MVT StoreType = MVT::i8;
16617 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
16618 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
16619 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000016620 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000016621 StoreType = Tp;
16622 }
16623
Nadav Rotem5cd95e12012-07-11 13:27:05 +000016624 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
16625 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
16626 (64 <= NumElems * ToSz))
16627 StoreType = MVT::f64;
16628
Nadav Rotem614061b2011-08-10 19:30:14 +000016629 // Bitcast the original vector into a vector of store-size units
16630 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000016631 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000016632 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
16633 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
16634 SmallVector<SDValue, 8> Chains;
16635 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
16636 TLI.getPointerTy());
16637 SDValue Ptr = St->getBasePtr();
16638
16639 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000016640 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000016641 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
16642 StoreType, ShuffWide,
16643 DAG.getIntPtrConstant(i));
16644 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
16645 St->getPointerInfo(), St->isVolatile(),
16646 St->isNonTemporal(), St->getAlignment());
16647 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
16648 Chains.push_back(Ch);
16649 }
16650
16651 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
16652 Chains.size());
16653 }
16654
Chris Lattner149a4e52008-02-22 02:09:43 +000016655 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
16656 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000016657 // A preferable solution to the general problem is to figure out the right
16658 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000016659
16660 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000016661 if (VT.getSizeInBits() != 64)
16662 return SDValue();
16663
Devang Patel578efa92009-06-05 21:57:13 +000016664 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000016665 bool NoImplicitFloatOps = F->getAttributes().
16666 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016667 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000016668 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000016669 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000016670 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000016671 isa<LoadSDNode>(St->getValue()) &&
16672 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
16673 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000016674 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000016675 LoadSDNode *Ld = 0;
16676 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000016677 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000016678 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000016679 // Must be a store of a load. We currently handle two cases: the load
16680 // is a direct child, and it's under an intervening TokenFactor. It is
16681 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000016682 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000016683 Ld = cast<LoadSDNode>(St->getChain());
16684 else if (St->getValue().hasOneUse() &&
16685 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000016686 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000016687 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000016688 TokenFactorIndex = i;
16689 Ld = cast<LoadSDNode>(St->getValue());
16690 } else
16691 Ops.push_back(ChainVal->getOperand(i));
16692 }
16693 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000016694
Evan Cheng536e6672009-03-12 05:59:15 +000016695 if (!Ld || !ISD::isNormalLoad(Ld))
16696 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000016697
Evan Cheng536e6672009-03-12 05:59:15 +000016698 // If this is not the MMX case, i.e. we are just turning i64 load/store
16699 // into f64 load/store, avoid the transformation if there are multiple
16700 // uses of the loaded value.
16701 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
16702 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000016703
Evan Cheng536e6672009-03-12 05:59:15 +000016704 DebugLoc LdDL = Ld->getDebugLoc();
16705 DebugLoc StDL = N->getDebugLoc();
16706 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
16707 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
16708 // pair instead.
16709 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000016710 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000016711 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
16712 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016713 Ld->isNonTemporal(), Ld->isInvariant(),
16714 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000016715 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000016716 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000016717 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000016718 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000016719 Ops.size());
16720 }
Evan Cheng536e6672009-03-12 05:59:15 +000016721 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016722 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000016723 St->isVolatile(), St->isNonTemporal(),
16724 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000016725 }
Evan Cheng536e6672009-03-12 05:59:15 +000016726
16727 // Otherwise, lower to two pairs of 32-bit loads / stores.
16728 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000016729 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
16730 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000016731
Owen Anderson825b72b2009-08-11 20:47:22 +000016732 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000016733 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000016734 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016735 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000016736 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000016737 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000016738 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016739 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000016740 MinAlign(Ld->getAlignment(), 4));
16741
16742 SDValue NewChain = LoLd.getValue(1);
16743 if (TokenFactorIndex != -1) {
16744 Ops.push_back(LoLd);
16745 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000016746 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000016747 Ops.size());
16748 }
16749
16750 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000016751 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
16752 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000016753
16754 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000016755 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000016756 St->isVolatile(), St->isNonTemporal(),
16757 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000016758 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000016759 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000016760 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000016761 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000016762 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000016763 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000016764 }
Dan Gohman475871a2008-07-27 21:46:04 +000016765 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000016766}
16767
Duncan Sands17470be2011-09-22 20:15:48 +000016768/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
16769/// and return the operands for the horizontal operation in LHS and RHS. A
16770/// horizontal operation performs the binary operation on successive elements
16771/// of its first operand, then on successive elements of its second operand,
16772/// returning the resulting values in a vector. For example, if
16773/// A = < float a0, float a1, float a2, float a3 >
16774/// and
16775/// B = < float b0, float b1, float b2, float b3 >
16776/// then the result of doing a horizontal operation on A and B is
16777/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
16778/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
16779/// A horizontal-op B, for some already available A and B, and if so then LHS is
16780/// set to A, RHS to B, and the routine returns 'true'.
16781/// Note that the binary operation should have the property that if one of the
16782/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000016783static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000016784 // Look for the following pattern: if
16785 // A = < float a0, float a1, float a2, float a3 >
16786 // B = < float b0, float b1, float b2, float b3 >
16787 // and
16788 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
16789 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
16790 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
16791 // which is A horizontal-op B.
16792
16793 // At least one of the operands should be a vector shuffle.
16794 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
16795 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
16796 return false;
16797
16798 EVT VT = LHS.getValueType();
Craig Topperf8363302011-12-02 08:18:41 +000016799
16800 assert((VT.is128BitVector() || VT.is256BitVector()) &&
16801 "Unsupported vector type for horizontal add/sub");
16802
16803 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
16804 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000016805 unsigned NumElts = VT.getVectorNumElements();
16806 unsigned NumLanes = VT.getSizeInBits()/128;
16807 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000016808 assert((NumLaneElts % 2 == 0) &&
16809 "Vector type should have an even number of elements in each lane");
16810 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000016811
16812 // View LHS in the form
16813 // LHS = VECTOR_SHUFFLE A, B, LMask
16814 // If LHS is not a shuffle then pretend it is the shuffle
16815 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
16816 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
16817 // type VT.
16818 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000016819 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000016820 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
16821 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
16822 A = LHS.getOperand(0);
16823 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
16824 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000016825 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
16826 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000016827 } else {
16828 if (LHS.getOpcode() != ISD::UNDEF)
16829 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000016830 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000016831 LMask[i] = i;
16832 }
16833
16834 // Likewise, view RHS in the form
16835 // RHS = VECTOR_SHUFFLE C, D, RMask
16836 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000016837 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000016838 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
16839 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
16840 C = RHS.getOperand(0);
16841 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
16842 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000016843 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
16844 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000016845 } else {
16846 if (RHS.getOpcode() != ISD::UNDEF)
16847 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000016848 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000016849 RMask[i] = i;
16850 }
16851
16852 // Check that the shuffles are both shuffling the same vectors.
16853 if (!(A == C && B == D) && !(A == D && B == C))
16854 return false;
16855
16856 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
16857 if (!A.getNode() && !B.getNode())
16858 return false;
16859
16860 // If A and B occur in reverse order in RHS, then "swap" them (which means
16861 // rewriting the mask).
16862 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000016863 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000016864
16865 // At this point LHS and RHS are equivalent to
16866 // LHS = VECTOR_SHUFFLE A, B, LMask
16867 // RHS = VECTOR_SHUFFLE A, B, RMask
16868 // Check that the masks correspond to performing a horizontal operation.
Craig Topperf8363302011-12-02 08:18:41 +000016869 for (unsigned i = 0; i != NumElts; ++i) {
Craig Topperbeabc6c2011-12-05 06:56:46 +000016870 int LIdx = LMask[i], RIdx = RMask[i];
Duncan Sands17470be2011-09-22 20:15:48 +000016871
Craig Topperf8363302011-12-02 08:18:41 +000016872 // Ignore any UNDEF components.
Craig Topperbeabc6c2011-12-05 06:56:46 +000016873 if (LIdx < 0 || RIdx < 0 ||
16874 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
16875 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
Craig Topperf8363302011-12-02 08:18:41 +000016876 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000016877
Craig Topperf8363302011-12-02 08:18:41 +000016878 // Check that successive elements are being operated on. If not, this is
16879 // not a horizontal operation.
16880 unsigned Src = (i/HalfLaneElts) % 2; // each lane is split between srcs
16881 unsigned LaneStart = (i/NumLaneElts) * NumLaneElts;
Craig Topperbeabc6c2011-12-05 06:56:46 +000016882 int Index = 2*(i%HalfLaneElts) + NumElts*Src + LaneStart;
Craig Topperf8363302011-12-02 08:18:41 +000016883 if (!(LIdx == Index && RIdx == Index + 1) &&
Craig Topperbeabc6c2011-12-05 06:56:46 +000016884 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
Craig Topperf8363302011-12-02 08:18:41 +000016885 return false;
Duncan Sands17470be2011-09-22 20:15:48 +000016886 }
16887
16888 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
16889 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
16890 return true;
16891}
16892
16893/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
16894static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
16895 const X86Subtarget *Subtarget) {
16896 EVT VT = N->getValueType(0);
16897 SDValue LHS = N->getOperand(0);
16898 SDValue RHS = N->getOperand(1);
16899
16900 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000016901 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016902 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000016903 isHorizontalBinOp(LHS, RHS, true))
16904 return DAG.getNode(X86ISD::FHADD, N->getDebugLoc(), VT, LHS, RHS);
16905 return SDValue();
16906}
16907
16908/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
16909static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
16910 const X86Subtarget *Subtarget) {
16911 EVT VT = N->getValueType(0);
16912 SDValue LHS = N->getOperand(0);
16913 SDValue RHS = N->getOperand(1);
16914
16915 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000016916 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016917 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000016918 isHorizontalBinOp(LHS, RHS, false))
16919 return DAG.getNode(X86ISD::FHSUB, N->getDebugLoc(), VT, LHS, RHS);
16920 return SDValue();
16921}
16922
Chris Lattner6cf73262008-01-25 06:14:17 +000016923/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
16924/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016925static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000016926 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
16927 // F[X]OR(0.0, x) -> x
16928 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000016929 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
16930 if (C->getValueAPF().isPosZero())
16931 return N->getOperand(1);
16932 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
16933 if (C->getValueAPF().isPosZero())
16934 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000016935 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000016936}
16937
Nadav Rotemd60cb112012-08-19 13:06:16 +000016938/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
16939/// X86ISD::FMAX nodes.
16940static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
16941 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
16942
16943 // Only perform optimizations if UnsafeMath is used.
16944 if (!DAG.getTarget().Options.UnsafeFPMath)
16945 return SDValue();
16946
16947 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000016948 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000016949 unsigned NewOp = 0;
16950 switch (N->getOpcode()) {
16951 default: llvm_unreachable("unknown opcode");
16952 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
16953 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
16954 }
16955
16956 return DAG.getNode(NewOp, N->getDebugLoc(), N->getValueType(0),
16957 N->getOperand(0), N->getOperand(1));
16958}
16959
Chris Lattneraf723b92008-01-25 05:46:26 +000016960/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016961static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000016962 // FAND(0.0, x) -> 0.0
16963 // FAND(x, 0.0) -> 0.0
16964 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
16965 if (C->getValueAPF().isPosZero())
16966 return N->getOperand(0);
16967 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
16968 if (C->getValueAPF().isPosZero())
16969 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000016970 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000016971}
16972
Dan Gohmane5af2d32009-01-29 01:59:02 +000016973static SDValue PerformBTCombine(SDNode *N,
16974 SelectionDAG &DAG,
16975 TargetLowering::DAGCombinerInfo &DCI) {
16976 // BT ignores high bits in the bit index operand.
16977 SDValue Op1 = N->getOperand(1);
16978 if (Op1.hasOneUse()) {
16979 unsigned BitWidth = Op1.getValueSizeInBits();
16980 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
16981 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000016982 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
16983 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000016984 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000016985 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
16986 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
16987 DCI.CommitTargetLoweringOpt(TLO);
16988 }
16989 return SDValue();
16990}
Chris Lattner83e6c992006-10-04 06:57:07 +000016991
Eli Friedman7a5e5552009-06-07 06:52:44 +000016992static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
16993 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000016994 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000016995 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000016996 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000016997 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000016998 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000016999 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000017000 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000017001 }
17002 return SDValue();
17003}
17004
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017005static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
17006 TargetLowering::DAGCombinerInfo &DCI,
17007 const X86Subtarget *Subtarget) {
17008 if (!DCI.isBeforeLegalizeOps())
17009 return SDValue();
17010
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017011 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000017012 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017013
Nadav Rotem0c8607b2013-01-20 08:35:56 +000017014 EVT VT = N->getValueType(0);
17015 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017016 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
17017 if (R.getNode())
17018 return R;
17019 }
17020
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017021 return SDValue();
17022}
17023
Michael Liaof6c24ee2012-08-10 14:39:24 +000017024static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017025 const X86Subtarget* Subtarget) {
17026 DebugLoc dl = N->getDebugLoc();
17027 EVT VT = N->getValueType(0);
17028
Craig Topperb1bdd7d2012-08-30 06:56:15 +000017029 // Let legalize expand this if it isn't a legal type yet.
17030 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
17031 return SDValue();
17032
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017033 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000017034 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
17035 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017036 return SDValue();
17037
17038 SDValue A = N->getOperand(0);
17039 SDValue B = N->getOperand(1);
17040 SDValue C = N->getOperand(2);
17041
17042 bool NegA = (A.getOpcode() == ISD::FNEG);
17043 bool NegB = (B.getOpcode() == ISD::FNEG);
17044 bool NegC = (C.getOpcode() == ISD::FNEG);
17045
Michael Liaof6c24ee2012-08-10 14:39:24 +000017046 // Negative multiplication when NegA xor NegB
17047 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017048 if (NegA)
17049 A = A.getOperand(0);
17050 if (NegB)
17051 B = B.getOperand(0);
17052 if (NegC)
17053 C = C.getOperand(0);
17054
17055 unsigned Opcode;
17056 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000017057 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017058 else
Craig Topperbf404372012-08-31 15:40:30 +000017059 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
17060
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017061 return DAG.getNode(Opcode, dl, VT, A, B, C);
17062}
17063
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000017064static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000017065 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000017066 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000017067 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
17068 // (and (i32 x86isd::setcc_carry), 1)
17069 // This eliminates the zext. This transformation is necessary because
17070 // ISD::SETCC is always legalized to i8.
17071 DebugLoc dl = N->getDebugLoc();
17072 SDValue N0 = N->getOperand(0);
17073 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000017074
Evan Cheng2e489c42009-12-16 00:53:11 +000017075 if (N0.getOpcode() == ISD::AND &&
17076 N0.hasOneUse() &&
17077 N0.getOperand(0).hasOneUse()) {
17078 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017079 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
17080 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17081 if (!C || C->getZExtValue() != 1)
17082 return SDValue();
17083 return DAG.getNode(ISD::AND, dl, VT,
17084 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
17085 N00.getOperand(0), N00.getOperand(1)),
17086 DAG.getConstant(1, VT));
17087 }
17088 }
17089
Craig Topper5a529e42013-01-18 06:44:29 +000017090 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017091 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
17092 if (R.getNode())
17093 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000017094 }
Craig Topperd0cf5652012-04-21 18:13:35 +000017095
Evan Cheng2e489c42009-12-16 00:53:11 +000017096 return SDValue();
17097}
17098
Chad Rosiera73b6fc2012-04-27 22:33:25 +000017099// Optimize x == -y --> x+y == 0
17100// x != -y --> x+y != 0
17101static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
17102 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
17103 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000017104 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000017105
17106 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
17107 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
17108 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
17109 SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
17110 LHS.getValueType(), RHS, LHS.getOperand(1));
17111 return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
17112 addV, DAG.getConstant(0, addV.getValueType()), CC);
17113 }
17114 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
17115 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
17116 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
17117 SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
17118 RHS.getValueType(), LHS, RHS.getOperand(1));
17119 return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
17120 addV, DAG.getConstant(0, addV.getValueType()), CC);
17121 }
17122 return SDValue();
17123}
17124
Shuxin Yanga5526a92012-10-31 23:11:48 +000017125// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
17126// as "sbb reg,reg", since it can be extended without zext and produces
17127// an all-ones bit which is more useful than 0/1 in some cases.
17128static SDValue MaterializeSETB(DebugLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
17129 return DAG.getNode(ISD::AND, DL, MVT::i8,
17130 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
17131 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
17132 DAG.getConstant(1, MVT::i8));
17133}
17134
Chris Lattnerc19d1c32010-12-19 22:08:31 +000017135// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017136static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
17137 TargetLowering::DAGCombinerInfo &DCI,
17138 const X86Subtarget *Subtarget) {
Chris Lattnerc19d1c32010-12-19 22:08:31 +000017139 DebugLoc DL = N->getDebugLoc();
Michael Liao2a33cec2012-08-10 19:58:13 +000017140 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
17141 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017142
Shuxin Yanga5526a92012-10-31 23:11:48 +000017143 if (CC == X86::COND_A) {
17144 // Try to convert COND_A into COND_B in an attempt to facilitate
17145 // materializing "setb reg".
17146 //
17147 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
17148 // cannot take an immediate as its first operand.
17149 //
17150 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
17151 EFLAGS.getValueType().isInteger() &&
17152 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
17153 SDValue NewSub = DAG.getNode(X86ISD::SUB, EFLAGS.getDebugLoc(),
17154 EFLAGS.getNode()->getVTList(),
17155 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
17156 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
17157 return MaterializeSETB(DL, NewEFLAGS, DAG);
17158 }
17159 }
17160
Chris Lattnerc19d1c32010-12-19 22:08:31 +000017161 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
17162 // a zext and produces an all-ones bit which is more useful than 0/1 in some
17163 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000017164 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000017165 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017166
Michael Liao2a33cec2012-08-10 19:58:13 +000017167 SDValue Flags;
17168
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017169 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
17170 if (Flags.getNode()) {
17171 SDValue Cond = DAG.getConstant(CC, MVT::i8);
17172 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
17173 }
17174
Michael Liao2a33cec2012-08-10 19:58:13 +000017175 return SDValue();
17176}
17177
17178// Optimize branch condition evaluation.
17179//
17180static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
17181 TargetLowering::DAGCombinerInfo &DCI,
17182 const X86Subtarget *Subtarget) {
17183 DebugLoc DL = N->getDebugLoc();
17184 SDValue Chain = N->getOperand(0);
17185 SDValue Dest = N->getOperand(1);
17186 SDValue EFLAGS = N->getOperand(3);
17187 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
17188
17189 SDValue Flags;
17190
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017191 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
17192 if (Flags.getNode()) {
17193 SDValue Cond = DAG.getConstant(CC, MVT::i8);
17194 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
17195 Flags);
17196 }
17197
Chris Lattnerc19d1c32010-12-19 22:08:31 +000017198 return SDValue();
17199}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017200
Benjamin Kramer1396c402011-06-18 11:09:41 +000017201static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
17202 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000017203 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000017204 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000017205
17206 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000017207 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Nadav Rotema3540772012-04-23 21:53:37 +000017208 DebugLoc dl = N->getDebugLoc();
Craig Topper7fd5e162012-04-24 06:02:29 +000017209 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000017210 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
17211 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
17212 }
17213
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000017214 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
17215 // a 32-bit target where SSE doesn't support i64->FP operations.
17216 if (Op0.getOpcode() == ISD::LOAD) {
17217 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
17218 EVT VT = Ld->getValueType(0);
17219 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
17220 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
17221 !XTLI->getSubtarget()->is64Bit() &&
17222 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000017223 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
17224 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000017225 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
17226 return FILDChain;
17227 }
17228 }
17229 return SDValue();
17230}
17231
Chris Lattner23a01992010-12-20 01:37:09 +000017232// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
17233static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
17234 X86TargetLowering::DAGCombinerInfo &DCI) {
17235 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
17236 // the result is either zero or one (depending on the input carry bit).
17237 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
17238 if (X86::isZeroNode(N->getOperand(0)) &&
17239 X86::isZeroNode(N->getOperand(1)) &&
17240 // We don't have a good way to replace an EFLAGS use, so only do this when
17241 // dead right now.
17242 SDValue(N, 1).use_empty()) {
17243 DebugLoc DL = N->getDebugLoc();
17244 EVT VT = N->getValueType(0);
17245 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
17246 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
17247 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
17248 DAG.getConstant(X86::COND_B,MVT::i8),
17249 N->getOperand(2)),
17250 DAG.getConstant(1, VT));
17251 return DCI.CombineTo(N, Res1, CarryOut);
17252 }
17253
17254 return SDValue();
17255}
17256
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000017257// fold (add Y, (sete X, 0)) -> adc 0, Y
17258// (add Y, (setne X, 0)) -> sbb -1, Y
17259// (sub (sete X, 0), Y) -> sbb 0, Y
17260// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017261static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000017262 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017263
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000017264 // Look through ZExts.
17265 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
17266 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
17267 return SDValue();
17268
17269 SDValue SetCC = Ext.getOperand(0);
17270 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
17271 return SDValue();
17272
17273 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
17274 if (CC != X86::COND_E && CC != X86::COND_NE)
17275 return SDValue();
17276
17277 SDValue Cmp = SetCC.getOperand(1);
17278 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000017279 !X86::isZeroNode(Cmp.getOperand(1)) ||
17280 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000017281 return SDValue();
17282
17283 SDValue CmpOp0 = Cmp.getOperand(0);
17284 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
17285 DAG.getConstant(1, CmpOp0.getValueType()));
17286
17287 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
17288 if (CC == X86::COND_NE)
17289 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
17290 DL, OtherVal.getValueType(), OtherVal,
17291 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
17292 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
17293 DL, OtherVal.getValueType(), OtherVal,
17294 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
17295}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000017296
Craig Topper54f952a2011-11-19 09:02:40 +000017297/// PerformADDCombine - Do target-specific dag combines on integer adds.
17298static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
17299 const X86Subtarget *Subtarget) {
17300 EVT VT = N->getValueType(0);
17301 SDValue Op0 = N->getOperand(0);
17302 SDValue Op1 = N->getOperand(1);
17303
17304 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000017305 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017306 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000017307 isHorizontalBinOp(Op0, Op1, true))
17308 return DAG.getNode(X86ISD::HADD, N->getDebugLoc(), VT, Op0, Op1);
17309
17310 return OptimizeConditionalInDecrement(N, DAG);
17311}
17312
17313static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
17314 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017315 SDValue Op0 = N->getOperand(0);
17316 SDValue Op1 = N->getOperand(1);
17317
17318 // X86 can't encode an immediate LHS of a sub. See if we can push the
17319 // negation into a preceding instruction.
17320 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017321 // If the RHS of the sub is a XOR with one use and a constant, invert the
17322 // immediate. Then add one to the LHS of the sub so we can turn
17323 // X-Y -> X+~Y+1, saving one register.
17324 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
17325 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000017326 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017327 EVT VT = Op0.getValueType();
17328 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
17329 Op1.getOperand(0),
17330 DAG.getConstant(~XorC, VT));
17331 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000017332 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017333 }
17334 }
17335
Craig Topper54f952a2011-11-19 09:02:40 +000017336 // Try to synthesize horizontal adds from adds of shuffles.
17337 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000017338 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017339 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000017340 isHorizontalBinOp(Op0, Op1, true))
Craig Topper54f952a2011-11-19 09:02:40 +000017341 return DAG.getNode(X86ISD::HSUB, N->getDebugLoc(), VT, Op0, Op1);
17342
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000017343 return OptimizeConditionalInDecrement(N, DAG);
17344}
17345
Michael Liaod9d09602012-10-23 17:34:00 +000017346/// performVZEXTCombine - Performs build vector combines
17347static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
17348 TargetLowering::DAGCombinerInfo &DCI,
17349 const X86Subtarget *Subtarget) {
17350 // (vzext (bitcast (vzext (x)) -> (vzext x)
17351 SDValue In = N->getOperand(0);
17352 while (In.getOpcode() == ISD::BITCAST)
17353 In = In.getOperand(0);
17354
17355 if (In.getOpcode() != X86ISD::VZEXT)
17356 return SDValue();
17357
17358 return DAG.getNode(X86ISD::VZEXT, N->getDebugLoc(), N->getValueType(0), In.getOperand(0));
17359}
17360
Dan Gohman475871a2008-07-27 21:46:04 +000017361SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000017362 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000017363 SelectionDAG &DAG = DCI.DAG;
17364 switch (N->getOpcode()) {
17365 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000017366 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000017367 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000017368 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000017369 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017370 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000017371 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
17372 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000017373 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017374 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000017375 case ISD::SHL:
17376 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000017377 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000017378 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000017379 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000017380 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017381 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000017382 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000017383 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000017384 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
17385 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000017386 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000017387 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000017388 case X86ISD::FMIN:
17389 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000017390 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000017391 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000017392 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000017393 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000017394 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000017395 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000017396 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000017397 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017398 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000017399 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000017400 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000017401 case X86ISD::SHUFP: // Handle all target specific shuffles
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000017402 case X86ISD::PALIGN:
Craig Topper34671b82011-12-06 08:21:25 +000017403 case X86ISD::UNPCKH:
17404 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000017405 case X86ISD::MOVHLPS:
17406 case X86ISD::MOVLHPS:
17407 case X86ISD::PSHUFD:
17408 case X86ISD::PSHUFHW:
17409 case X86ISD::PSHUFLW:
17410 case X86ISD::MOVSS:
17411 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000017412 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000017413 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000017414 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000017415 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000017416 }
17417
Dan Gohman475871a2008-07-27 21:46:04 +000017418 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000017419}
17420
Evan Chenge5b51ac2010-04-17 06:13:15 +000017421/// isTypeDesirableForOp - Return true if the target has native support for
17422/// the specified value type and it is 'desirable' to use the type for the
17423/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
17424/// instruction encodings are longer and some i16 instructions are slow.
17425bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
17426 if (!isTypeLegal(VT))
17427 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000017428 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000017429 return true;
17430
17431 switch (Opc) {
17432 default:
17433 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000017434 case ISD::LOAD:
17435 case ISD::SIGN_EXTEND:
17436 case ISD::ZERO_EXTEND:
17437 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000017438 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000017439 case ISD::SRL:
17440 case ISD::SUB:
17441 case ISD::ADD:
17442 case ISD::MUL:
17443 case ISD::AND:
17444 case ISD::OR:
17445 case ISD::XOR:
17446 return false;
17447 }
17448}
17449
17450/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000017451/// beneficial for dag combiner to promote the specified node. If true, it
17452/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000017453bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000017454 EVT VT = Op.getValueType();
17455 if (VT != MVT::i16)
17456 return false;
17457
Evan Cheng4c26e932010-04-19 19:29:22 +000017458 bool Promote = false;
17459 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000017460 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000017461 default: break;
17462 case ISD::LOAD: {
17463 LoadSDNode *LD = cast<LoadSDNode>(Op);
17464 // If the non-extending load has a single use and it's not live out, then it
17465 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000017466 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
17467 Op.hasOneUse()*/) {
17468 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
17469 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
17470 // The only case where we'd want to promote LOAD (rather then it being
17471 // promoted as an operand is when it's only use is liveout.
17472 if (UI->getOpcode() != ISD::CopyToReg)
17473 return false;
17474 }
17475 }
Evan Cheng4c26e932010-04-19 19:29:22 +000017476 Promote = true;
17477 break;
17478 }
17479 case ISD::SIGN_EXTEND:
17480 case ISD::ZERO_EXTEND:
17481 case ISD::ANY_EXTEND:
17482 Promote = true;
17483 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000017484 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000017485 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000017486 SDValue N0 = Op.getOperand(0);
17487 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000017488 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000017489 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000017490 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000017491 break;
17492 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000017493 case ISD::ADD:
17494 case ISD::MUL:
17495 case ISD::AND:
17496 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000017497 case ISD::XOR:
17498 Commute = true;
17499 // fallthrough
17500 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000017501 SDValue N0 = Op.getOperand(0);
17502 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000017503 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000017504 return false;
17505 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000017506 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000017507 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000017508 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000017509 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000017510 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000017511 }
17512 }
17513
17514 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000017515 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000017516}
17517
Evan Cheng60c07e12006-07-05 22:17:51 +000017518//===----------------------------------------------------------------------===//
17519// X86 Inline Assembly Support
17520//===----------------------------------------------------------------------===//
17521
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017522namespace {
17523 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000017524 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017525 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017526
Benjamin Kramer0581ed72011-12-18 20:51:31 +000017527 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017528 StringRef piece(*args[i]);
17529 if (!s.startswith(piece)) // Check if the piece matches.
17530 return false;
17531
17532 s = s.substr(piece.size());
17533 StringRef::size_type pos = s.find_first_not_of(" \t");
17534 if (pos == 0) // We matched a prefix.
17535 return false;
17536
17537 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017538 }
17539
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017540 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017541 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000017542 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017543}
17544
Chris Lattnerb8105652009-07-20 17:51:36 +000017545bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
17546 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000017547
17548 std::string AsmStr = IA->getAsmString();
17549
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017550 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
17551 if (!Ty || Ty->getBitWidth() % 16 != 0)
17552 return false;
17553
Chris Lattnerb8105652009-07-20 17:51:36 +000017554 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000017555 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000017556 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000017557
17558 switch (AsmPieces.size()) {
17559 default: return false;
17560 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000017561 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017562 // we will turn this bswap into something that will be lowered to logical
17563 // ops instead of emitting the bswap asm. For now, we don't support 486 or
17564 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000017565 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017566 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
17567 matchAsm(AsmPieces[0], "bswapl", "$0") ||
17568 matchAsm(AsmPieces[0], "bswapq", "$0") ||
17569 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
17570 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
17571 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000017572 // No need to check constraints, nothing other than the equivalent of
17573 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000017574 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000017575 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017576
Chris Lattnerb8105652009-07-20 17:51:36 +000017577 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000017578 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017579 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017580 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
17581 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000017582 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000017583 const std::string &ConstraintsStr = IA->getConstraintString();
17584 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000017585 std::sort(AsmPieces.begin(), AsmPieces.end());
17586 if (AsmPieces.size() == 4 &&
17587 AsmPieces[0] == "~{cc}" &&
17588 AsmPieces[1] == "~{dirflag}" &&
17589 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017590 AsmPieces[3] == "~{fpsr}")
17591 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000017592 }
17593 break;
17594 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000017595 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017596 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017597 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
17598 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
17599 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017600 AsmPieces.clear();
17601 const std::string &ConstraintsStr = IA->getConstraintString();
17602 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
17603 std::sort(AsmPieces.begin(), AsmPieces.end());
17604 if (AsmPieces.size() == 4 &&
17605 AsmPieces[0] == "~{cc}" &&
17606 AsmPieces[1] == "~{dirflag}" &&
17607 AsmPieces[2] == "~{flags}" &&
17608 AsmPieces[3] == "~{fpsr}")
17609 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000017610 }
Evan Cheng55d42002011-01-08 01:24:27 +000017611
17612 if (CI->getType()->isIntegerTy(64)) {
17613 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
17614 if (Constraints.size() >= 2 &&
17615 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
17616 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
17617 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000017618 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
17619 matchAsm(AsmPieces[1], "bswap", "%edx") &&
17620 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000017621 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000017622 }
17623 }
17624 break;
17625 }
17626 return false;
17627}
17628
Chris Lattnerf4dff842006-07-11 02:54:03 +000017629/// getConstraintType - Given a constraint letter, return the type of
17630/// constraint it is for this target.
17631X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000017632X86TargetLowering::getConstraintType(const std::string &Constraint) const {
17633 if (Constraint.size() == 1) {
17634 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000017635 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000017636 case 'q':
17637 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000017638 case 'f':
17639 case 't':
17640 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000017641 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000017642 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000017643 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000017644 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000017645 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000017646 case 'a':
17647 case 'b':
17648 case 'c':
17649 case 'd':
17650 case 'S':
17651 case 'D':
17652 case 'A':
17653 return C_Register;
17654 case 'I':
17655 case 'J':
17656 case 'K':
17657 case 'L':
17658 case 'M':
17659 case 'N':
17660 case 'G':
17661 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000017662 case 'e':
17663 case 'Z':
17664 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000017665 default:
17666 break;
17667 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000017668 }
Chris Lattner4234f572007-03-25 02:14:49 +000017669 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000017670}
17671
John Thompson44ab89e2010-10-29 17:29:13 +000017672/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000017673/// This object must already have been set up with the operand type
17674/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000017675TargetLowering::ConstraintWeight
17676 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000017677 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000017678 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000017679 Value *CallOperandVal = info.CallOperandVal;
17680 // If we don't have a value, we can't do a match,
17681 // but allow it at the lowest weight.
17682 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000017683 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000017684 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000017685 // Look at the constraint type.
17686 switch (*constraint) {
17687 default:
John Thompson44ab89e2010-10-29 17:29:13 +000017688 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
17689 case 'R':
17690 case 'q':
17691 case 'Q':
17692 case 'a':
17693 case 'b':
17694 case 'c':
17695 case 'd':
17696 case 'S':
17697 case 'D':
17698 case 'A':
17699 if (CallOperandVal->getType()->isIntegerTy())
17700 weight = CW_SpecificReg;
17701 break;
17702 case 'f':
17703 case 't':
17704 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000017705 if (type->isFloatingPointTy())
17706 weight = CW_SpecificReg;
17707 break;
John Thompson44ab89e2010-10-29 17:29:13 +000017708 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000017709 if (type->isX86_MMXTy() && Subtarget->hasMMX())
17710 weight = CW_SpecificReg;
17711 break;
John Thompson44ab89e2010-10-29 17:29:13 +000017712 case 'x':
17713 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000017714 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017715 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000017716 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000017717 break;
17718 case 'I':
17719 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
17720 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000017721 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000017722 }
17723 break;
John Thompson44ab89e2010-10-29 17:29:13 +000017724 case 'J':
17725 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17726 if (C->getZExtValue() <= 63)
17727 weight = CW_Constant;
17728 }
17729 break;
17730 case 'K':
17731 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17732 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
17733 weight = CW_Constant;
17734 }
17735 break;
17736 case 'L':
17737 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17738 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
17739 weight = CW_Constant;
17740 }
17741 break;
17742 case 'M':
17743 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17744 if (C->getZExtValue() <= 3)
17745 weight = CW_Constant;
17746 }
17747 break;
17748 case 'N':
17749 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17750 if (C->getZExtValue() <= 0xff)
17751 weight = CW_Constant;
17752 }
17753 break;
17754 case 'G':
17755 case 'C':
17756 if (dyn_cast<ConstantFP>(CallOperandVal)) {
17757 weight = CW_Constant;
17758 }
17759 break;
17760 case 'e':
17761 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17762 if ((C->getSExtValue() >= -0x80000000LL) &&
17763 (C->getSExtValue() <= 0x7fffffffLL))
17764 weight = CW_Constant;
17765 }
17766 break;
17767 case 'Z':
17768 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17769 if (C->getZExtValue() <= 0xffffffff)
17770 weight = CW_Constant;
17771 }
17772 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000017773 }
17774 return weight;
17775}
17776
Dale Johannesenba2a0b92008-01-29 02:21:21 +000017777/// LowerXConstraint - try to replace an X constraint, which matches anything,
17778/// with another that has more specific requirements based on the type of the
17779/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000017780const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000017781LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000017782 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
17783 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000017784 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000017785 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000017786 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000017787 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000017788 return "x";
17789 }
Scott Michelfdc40a02009-02-17 22:15:04 +000017790
Chris Lattner5e764232008-04-26 23:02:14 +000017791 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000017792}
17793
Chris Lattner48884cd2007-08-25 00:47:38 +000017794/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
17795/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000017796void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000017797 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000017798 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000017799 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000017800 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000017801
Eric Christopher100c8332011-06-02 23:16:42 +000017802 // Only support length 1 constraints for now.
17803 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000017804
Eric Christopher100c8332011-06-02 23:16:42 +000017805 char ConstraintLetter = Constraint[0];
17806 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000017807 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000017808 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000017809 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000017810 if (C->getZExtValue() <= 31) {
17811 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000017812 break;
17813 }
Devang Patel84f7fd22007-03-17 00:13:28 +000017814 }
Chris Lattner48884cd2007-08-25 00:47:38 +000017815 return;
Evan Cheng364091e2008-09-22 23:57:37 +000017816 case 'J':
17817 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000017818 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000017819 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17820 break;
17821 }
17822 }
17823 return;
17824 case 'K':
17825 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000017826 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000017827 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17828 break;
17829 }
17830 }
17831 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000017832 case 'N':
17833 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000017834 if (C->getZExtValue() <= 255) {
17835 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000017836 break;
17837 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000017838 }
Chris Lattner48884cd2007-08-25 00:47:38 +000017839 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000017840 case 'e': {
17841 // 32-bit signed value
17842 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000017843 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
17844 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000017845 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000017846 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000017847 break;
17848 }
17849 // FIXME gcc accepts some relocatable values here too, but only in certain
17850 // memory models; it's complicated.
17851 }
17852 return;
17853 }
17854 case 'Z': {
17855 // 32-bit unsigned value
17856 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000017857 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
17858 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000017859 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17860 break;
17861 }
17862 }
17863 // FIXME gcc accepts some relocatable values here too, but only in certain
17864 // memory models; it's complicated.
17865 return;
17866 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000017867 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000017868 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000017869 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000017870 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000017871 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000017872 break;
17873 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000017874
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000017875 // In any sort of PIC mode addresses need to be computed at runtime by
17876 // adding in a register or some sort of table lookup. These can't
17877 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000017878 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000017879 return;
17880
Chris Lattnerdc43a882007-05-03 16:52:29 +000017881 // If we are in non-pic codegen mode, we allow the address of a global (with
17882 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000017883 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000017884 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000017885
Chris Lattner49921962009-05-08 18:23:14 +000017886 // Match either (GA), (GA+C), (GA+C1+C2), etc.
17887 while (1) {
17888 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
17889 Offset += GA->getOffset();
17890 break;
17891 } else if (Op.getOpcode() == ISD::ADD) {
17892 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
17893 Offset += C->getZExtValue();
17894 Op = Op.getOperand(0);
17895 continue;
17896 }
17897 } else if (Op.getOpcode() == ISD::SUB) {
17898 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
17899 Offset += -C->getZExtValue();
17900 Op = Op.getOperand(0);
17901 continue;
17902 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000017903 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000017904
Chris Lattner49921962009-05-08 18:23:14 +000017905 // Otherwise, this isn't something we can handle, reject it.
17906 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000017907 }
Eric Christopherfd179292009-08-27 18:07:15 +000017908
Dan Gohman46510a72010-04-15 01:51:59 +000017909 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000017910 // If we require an extra load to get this address, as in PIC mode, we
17911 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000017912 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
17913 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000017914 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000017915
Devang Patel0d881da2010-07-06 22:08:15 +000017916 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
17917 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000017918 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000017919 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000017920 }
Scott Michelfdc40a02009-02-17 22:15:04 +000017921
Gabor Greifba36cb52008-08-28 21:40:38 +000017922 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000017923 Ops.push_back(Result);
17924 return;
17925 }
Dale Johannesen1784d162010-06-25 21:55:36 +000017926 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000017927}
17928
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000017929std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000017930X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000017931 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000017932 // First, see if this is a constraint that directly corresponds to an LLVM
17933 // register class.
17934 if (Constraint.size() == 1) {
17935 // GCC Constraint Letters
17936 switch (Constraint[0]) {
17937 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000017938 // TODO: Slight differences here in allocation order and leaving
17939 // RIP in the class. Do they matter any more here than they do
17940 // in the normal allocation?
17941 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
17942 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000017943 if (VT == MVT::i32 || VT == MVT::f32)
17944 return std::make_pair(0U, &X86::GR32RegClass);
17945 if (VT == MVT::i16)
17946 return std::make_pair(0U, &X86::GR16RegClass);
17947 if (VT == MVT::i8 || VT == MVT::i1)
17948 return std::make_pair(0U, &X86::GR8RegClass);
17949 if (VT == MVT::i64 || VT == MVT::f64)
17950 return std::make_pair(0U, &X86::GR64RegClass);
17951 break;
Eric Christopherd176af82011-06-29 17:23:50 +000017952 }
17953 // 32-bit fallthrough
17954 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000017955 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000017956 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
17957 if (VT == MVT::i16)
17958 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
17959 if (VT == MVT::i8 || VT == MVT::i1)
17960 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
17961 if (VT == MVT::i64)
17962 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000017963 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000017964 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000017965 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000017966 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000017967 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000017968 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000017969 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000017970 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000017971 return std::make_pair(0U, &X86::GR32RegClass);
17972 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000017973 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000017974 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000017975 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000017976 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000017977 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000017978 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000017979 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
17980 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000017981 case 'f': // FP Stack registers.
17982 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
17983 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000017984 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000017985 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000017986 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000017987 return std::make_pair(0U, &X86::RFP64RegClass);
17988 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000017989 case 'y': // MMX_REGS if MMX allowed.
17990 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000017991 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000017992 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000017993 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000017994 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000017995 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000017996 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000017997
Owen Anderson825b72b2009-08-11 20:47:22 +000017998 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000017999 default: break;
18000 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000018001 case MVT::f32:
18002 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000018003 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000018004 case MVT::f64:
18005 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000018006 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000018007 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000018008 case MVT::v16i8:
18009 case MVT::v8i16:
18010 case MVT::v4i32:
18011 case MVT::v2i64:
18012 case MVT::v4f32:
18013 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000018014 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000018015 // AVX types.
18016 case MVT::v32i8:
18017 case MVT::v16i16:
18018 case MVT::v8i32:
18019 case MVT::v4i64:
18020 case MVT::v8f32:
18021 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000018022 return std::make_pair(0U, &X86::VR256RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000018023 }
Chris Lattnerad043e82007-04-09 05:11:28 +000018024 break;
18025 }
18026 }
Scott Michelfdc40a02009-02-17 22:15:04 +000018027
Chris Lattnerf76d1802006-07-31 23:26:50 +000018028 // Use the default implementation in TargetLowering to convert the register
18029 // constraint into a member of a register class.
18030 std::pair<unsigned, const TargetRegisterClass*> Res;
18031 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000018032
18033 // Not found as a standard register?
18034 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000018035 // Map st(0) -> st(7) -> ST0
18036 if (Constraint.size() == 7 && Constraint[0] == '{' &&
18037 tolower(Constraint[1]) == 's' &&
18038 tolower(Constraint[2]) == 't' &&
18039 Constraint[3] == '(' &&
18040 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
18041 Constraint[5] == ')' &&
18042 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000018043
Chris Lattner56d77c72009-09-13 22:41:48 +000018044 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000018045 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000018046 return Res;
18047 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000018048
Chris Lattner56d77c72009-09-13 22:41:48 +000018049 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000018050 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000018051 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000018052 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000018053 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000018054 }
Chris Lattner56d77c72009-09-13 22:41:48 +000018055
18056 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000018057 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000018058 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000018059 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000018060 return Res;
18061 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000018062
Dale Johannesen330169f2008-11-13 21:52:36 +000018063 // 'A' means EAX + EDX.
18064 if (Constraint == "A") {
18065 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000018066 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000018067 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000018068 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000018069 return Res;
18070 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000018071
Chris Lattnerf76d1802006-07-31 23:26:50 +000018072 // Otherwise, check to see if this is a register class of the wrong value
18073 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
18074 // turn into {ax},{dx}.
18075 if (Res.second->hasType(VT))
18076 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000018077
Chris Lattnerf76d1802006-07-31 23:26:50 +000018078 // All of the single-register GCC register classes map their values onto
18079 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
18080 // really want an 8-bit or 32-bit register, map to the appropriate register
18081 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000018082 if (Res.second == &X86::GR16RegClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018083 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000018084 unsigned DestReg = 0;
18085 switch (Res.first) {
18086 default: break;
18087 case X86::AX: DestReg = X86::AL; break;
18088 case X86::DX: DestReg = X86::DL; break;
18089 case X86::CX: DestReg = X86::CL; break;
18090 case X86::BX: DestReg = X86::BL; break;
18091 }
18092 if (DestReg) {
18093 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000018094 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000018095 }
Owen Anderson825b72b2009-08-11 20:47:22 +000018096 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000018097 unsigned DestReg = 0;
18098 switch (Res.first) {
18099 default: break;
18100 case X86::AX: DestReg = X86::EAX; break;
18101 case X86::DX: DestReg = X86::EDX; break;
18102 case X86::CX: DestReg = X86::ECX; break;
18103 case X86::BX: DestReg = X86::EBX; break;
18104 case X86::SI: DestReg = X86::ESI; break;
18105 case X86::DI: DestReg = X86::EDI; break;
18106 case X86::BP: DestReg = X86::EBP; break;
18107 case X86::SP: DestReg = X86::ESP; break;
18108 }
18109 if (DestReg) {
18110 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000018111 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000018112 }
Owen Anderson825b72b2009-08-11 20:47:22 +000018113 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000018114 unsigned DestReg = 0;
18115 switch (Res.first) {
18116 default: break;
18117 case X86::AX: DestReg = X86::RAX; break;
18118 case X86::DX: DestReg = X86::RDX; break;
18119 case X86::CX: DestReg = X86::RCX; break;
18120 case X86::BX: DestReg = X86::RBX; break;
18121 case X86::SI: DestReg = X86::RSI; break;
18122 case X86::DI: DestReg = X86::RDI; break;
18123 case X86::BP: DestReg = X86::RBP; break;
18124 case X86::SP: DestReg = X86::RSP; break;
18125 }
18126 if (DestReg) {
18127 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000018128 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000018129 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000018130 }
Craig Topperc9099502012-04-20 06:31:50 +000018131 } else if (Res.second == &X86::FR32RegClass ||
18132 Res.second == &X86::FR64RegClass ||
18133 Res.second == &X86::VR128RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000018134 // Handle references to XMM physical registers that got mapped into the
18135 // wrong class. This can happen with constraints like {xmm0} where the
18136 // target independent register mapper will just pick the first match it can
18137 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000018138
18139 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000018140 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000018141 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000018142 Res.second = &X86::FR64RegClass;
18143 else if (X86::VR128RegClass.hasType(VT))
18144 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000018145 else if (X86::VR256RegClass.hasType(VT))
18146 Res.second = &X86::VR256RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000018147 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000018148
Chris Lattnerf76d1802006-07-31 23:26:50 +000018149 return Res;
18150}